diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 000000000..5b999efa4 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,10 @@ +module.exports = { + root: true, + // This tells ESLint to load the config from the package `eslint-config-custom` + extends: ["custom"], + settings: { + next: { + rootDir: ["apps/*/"], + }, + }, +}; diff --git a/.gitignore b/.gitignore index ec48acdbc..849425fe8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,23 +1,33 @@ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies -/node_modules -/.pnp +node_modules +.pnp .pnp.js # testing -/coverage +coverage -# production -/build +# next.js +.next/ +out/ +build # misc .DS_Store -.env +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# local env files .env.local .env.development.local .env.test.local .env.production.local -npm-debug.log* -yarn-debug.log* +# turbo +.turbo diff --git a/README.md b/README.md index 54ef09430..04b876d1a 100644 --- a/README.md +++ b/README.md @@ -1,68 +1,73 @@ -This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). +# Turborepo starter -## Available Scripts +This is an official npm starter turborepo. -In the project directory, you can run: +## What's inside? -### `npm start` +This turborepo uses [npm](https://www.npmjs.com/) as a package manager. It includes the following packages/apps: -Runs the app in the development mode.
-Open [http://localhost:3000](http://localhost:3000) to view it in the browser. +### Apps and Packages -The page will reload if you make edits.
-You will also see any lint errors in the console. +- `docs`: a [Next.js](https://nextjs.org/) app +- `web`: another [Next.js](https://nextjs.org/) app +- `ui`: a stub React component library shared by both `web` and `docs` applications +- `eslint-config-custom`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`) +- `tsconfig`: `tsconfig.json`s used throughout the monorepo -### `npm test` +Each package/app is 100% [TypeScript](https://www.typescriptlang.org/). -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. +### Utilities -### `npm run build` +This turborepo has some additional tools already setup for you: -Builds the app for production to the `build` folder.
-It correctly bundles React in production mode and optimizes the build for the best performance. +- [TypeScript](https://www.typescriptlang.org/) for static type checking +- [ESLint](https://eslint.org/) for code linting +- [Prettier](https://prettier.io) for code formatting -The build is minified and the filenames include the hashes.
-Your app is ready to be deployed! +### Build -See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. +To build all apps and packages, run the following command: -### `npm run eject` +``` +cd my-turborepo +npm run build +``` -**Note: this is a one-way operation. Once you `eject`, you can’t go back!** +### Develop -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. +To develop all apps and packages, run the following command: -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. +``` +cd my-turborepo +npm run dev +``` -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. +### Remote Caching -## Learn More +Turborepo can use a technique known as [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching) to share cache artifacts across machines, enabling you to share build caches with your team and CI/CD pipelines. -You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). +By default, Turborepo will cache locally. To enable Remote Caching you will need an account with Vercel. If you don't have an account you can [create one](https://vercel.com/signup), then enter the following commands: -To learn React, check out the [React documentation](https://reactjs.org/). +``` +cd my-turborepo +npx turbo login +``` -### Code Splitting +This will authenticate the Turborepo CLI with your [Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview). -This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting +Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your turborepo: -### Analyzing the Bundle Size +``` +npx turbo link +``` -This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size +## Useful Links -### Making a Progressive Web App +Learn more about the power of Turborepo: -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 +- [Tasks](https://turbo.build/repo/docs/core-concepts/monorepos/running-tasks) +- [Caching](https://turbo.build/repo/docs/core-concepts/caching) +- [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching) +- [Filtering](https://turbo.build/repo/docs/core-concepts/monorepos/filtering) +- [Configuration Options](https://turbo.build/repo/docs/reference/configuration) +- [CLI Usage](https://turbo.build/repo/docs/reference/command-line-reference) diff --git a/.env.example b/apps/client/.env.example similarity index 100% rename from .env.example rename to apps/client/.env.example diff --git a/.github/workflows/docker-build.yml b/apps/client/.github/workflows/docker-build.yml similarity index 100% rename from .github/workflows/docker-build.yml rename to apps/client/.github/workflows/docker-build.yml diff --git a/apps/client/.gitignore b/apps/client/.gitignore new file mode 100644 index 000000000..ec48acdbc --- /dev/null +++ b/apps/client/.gitignore @@ -0,0 +1,23 @@ +# 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 +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* diff --git a/.npmrc b/apps/client/.npmrc similarity index 100% rename from .npmrc rename to apps/client/.npmrc diff --git a/.prettierrc b/apps/client/.prettierrc similarity index 100% rename from .prettierrc rename to apps/client/.prettierrc diff --git a/.storybook/main.js b/apps/client/.storybook/main.js similarity index 100% rename from .storybook/main.js rename to apps/client/.storybook/main.js diff --git a/.storybook/preview.js b/apps/client/.storybook/preview.js similarity index 100% rename from .storybook/preview.js rename to apps/client/.storybook/preview.js diff --git a/.vscode/FastField.code-snippets b/apps/client/.vscode/FastField.code-snippets similarity index 100% rename from .vscode/FastField.code-snippets rename to apps/client/.vscode/FastField.code-snippets diff --git a/.vscode/settings.json b/apps/client/.vscode/settings.json similarity index 100% rename from .vscode/settings.json rename to apps/client/.vscode/settings.json diff --git a/CHANGELOG.md b/apps/client/CHANGELOG.md similarity index 100% rename from CHANGELOG.md rename to apps/client/CHANGELOG.md diff --git a/Dockerfile b/apps/client/Dockerfile similarity index 100% rename from Dockerfile rename to apps/client/Dockerfile diff --git a/apps/client/README.md b/apps/client/README.md new file mode 100644 index 000000000..54ef09430 --- /dev/null +++ b/apps/client/README.md @@ -0,0 +1,68 @@ +This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). + +## 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/craco.config.js b/apps/client/craco.config.js similarity index 100% rename from craco.config.js rename to apps/client/craco.config.js diff --git a/nginx/sites/default.conf b/apps/client/nginx/sites/default.conf similarity index 100% rename from nginx/sites/default.conf rename to apps/client/nginx/sites/default.conf diff --git a/apps/client/package.json b/apps/client/package.json new file mode 100644 index 000000000..0812cb380 --- /dev/null +++ b/apps/client/package.json @@ -0,0 +1,127 @@ +{ + "name": "client", + "version": "1.7.1", + "private": true, + "dependencies": { + "@blueprintjs-formik/core": "^0.2.1", + "@blueprintjs-formik/datetime": "^0.3.4", + "@blueprintjs-formik/select": "^0.1.4", + "@blueprintjs/core": "^3.50.2", + "@blueprintjs/datetime": "^3.23.12", + "@blueprintjs/popover2": "^0.11.1", + "@blueprintjs/select": "^3.11.2", + "@blueprintjs/table": "^3.8.3", + "@blueprintjs/timezone": "^3.6.2", + "@casl/ability": "^5.4.3", + "@casl/react": "^2.3.0", + "@craco/craco": "^5.9.0", + "@reduxjs/toolkit": "^1.2.5", + "@sentry/react": "^6.13.2", + "@sentry/tracing": "^6.13.2", + "@testing-library/jest-dom": "^4.2.4", + "@testing-library/react": "^9.4.0", + "@testing-library/user-event": "^7.2.1", + "@types/jest": "^26.0.15", + "@types/js-money": "^0.6.1", + "@types/lodash": "^4.14.172", + "@types/node": "^14.14.9", + "@types/ramda": "^0.28.14", + "@types/react": "^16.14.28", + "@types/react-body-classname": "^1.1.7", + "@types/react-redux": "^7.1.24", + "@types/react-router-dom": "^5.3.3", + "@types/react-transition-group": "^4.4.5", + "@types/styled-components": "^5.1.25", + "@types/yup": "^0.29.13", + "@typescript-eslint/eslint-plugin": "^2.10.0", + "@typescript-eslint/parser": "^2.10.0", + "@welldone-software/why-did-you-render": "^6.0.0-rc.1", + "accounting": "^0.4.1", + "axios": "^0.21.2", + "basscss": "^8.0.2", + "camelcase": "^5.3.1", + "cross-env": "^7.0.2", + "deep-map-keys": "^2.0.1", + "deepdash": "^5.3.9", + "dependency-graph": "^0.11.0", + "fast-deep-equal": "^3.1.3", + "formik": "^2.2.5", + "http-proxy-middleware": "^1.0.0", + "jest": "24.9.0", + "jest-environment-jsdom-fourteen": "1.0.1", + "jest-resolve": "24.9.0", + "jest-watch-typeahead": "0.4.2", + "js-money": "^0.6.3", + "lodash": "^4.17.15", + "moment": "^2.24.0", + "moment-timezone": "^0.5.33", + "node-sass": "^4.14.1", + "path-browserify": "^1.0.1", + "query-string": "^7.1.1", + "ramda": "^0.27.1", + "react": "^16.14.0", + "react-app-polyfill": "^1.0.6", + "react-body-classname": "^1.3.1", + "react-content-loader": "^6.0.1", + "react-dev-utils": "^11.0.4", + "react-dom": "^16.12.0", + "react-dropzone": "^11.0.1", + "react-error-boundary": "^3.0.2", + "react-hotkeys-hook": "^3.0.3", + "react-intl-universal": "^2.4.7", + "react-loadable": "^5.5.0", + "react-query": "^3.6.0", + "react-query-devtools": "^2.1.1", + "react-redux": "^7.1.3", + "react-router-breadcrumbs-hoc": "^3.2.10", + "react-router-dom": "^5.3.3", + "react-scripts": "^3.4.4", + "react-scroll-sync": "^0.7.1", + "react-scrollbars-custom": "^4.0.21", + "react-sortablejs": "^2.0.11", + "react-split-pane": "^0.1.91", + "react-table": "^7.6.3", + "react-table-sticky": "^1.1.3", + "react-transition-group": "^4.4.1", + "react-use": "^13.26.1", + "react-use-context-menu": "^0.1.4", + "react-virtualized": "^9.22.3", + "redux": "^4.0.5", + "redux-devtools": "^3.5.0", + "redux-persist": "^6.0.0", + "redux-thunk": "^2.3.0", + "rtl-detect": "^1.0.3", + "semver": "6.3.0", + "style-loader": "0.23.1", + "styled-components": "^5.3.1", + "stylis-rtlcss": "^2.1.1", + "typescript": "^4.8.3", + "yup": "^0.28.1" + }, + "scripts": { + "dev": "craco start", + "build": "craco build", + "test": "node scripts/test.js", + "storybook": "start-storybook -p 6006" + }, + "proxy": "http://localhost:3000/", + "devDependencies": { + "@types/react-dom": "^16.9.16", + "react-error-overlay": "^6.0.9" + }, + "resolutions": { + "react-error-overlay": "6.0.9" + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + } +} diff --git a/public/favicons/favicon-32.ico b/apps/client/public/favicons/favicon-32.ico similarity index 100% rename from public/favicons/favicon-32.ico rename to apps/client/public/favicons/favicon-32.ico diff --git a/public/icons/flags/AD.svg b/apps/client/public/icons/flags/AD.svg similarity index 100% rename from public/icons/flags/AD.svg rename to apps/client/public/icons/flags/AD.svg diff --git a/public/icons/flags/AED.svg b/apps/client/public/icons/flags/AED.svg similarity index 100% rename from public/icons/flags/AED.svg rename to apps/client/public/icons/flags/AED.svg diff --git a/public/icons/flags/AFN.svg b/apps/client/public/icons/flags/AFN.svg similarity index 100% rename from public/icons/flags/AFN.svg rename to apps/client/public/icons/flags/AFN.svg diff --git a/public/icons/flags/AG.svg b/apps/client/public/icons/flags/AG.svg similarity index 100% rename from public/icons/flags/AG.svg rename to apps/client/public/icons/flags/AG.svg diff --git a/public/icons/flags/AI.svg b/apps/client/public/icons/flags/AI.svg similarity index 100% rename from public/icons/flags/AI.svg rename to apps/client/public/icons/flags/AI.svg diff --git a/public/icons/flags/AL.svg b/apps/client/public/icons/flags/AL.svg similarity index 100% rename from public/icons/flags/AL.svg rename to apps/client/public/icons/flags/AL.svg diff --git a/public/icons/flags/AMD.svg b/apps/client/public/icons/flags/AMD.svg similarity index 100% rename from public/icons/flags/AMD.svg rename to apps/client/public/icons/flags/AMD.svg diff --git a/public/icons/flags/AO.svg b/apps/client/public/icons/flags/AO.svg similarity index 100% rename from public/icons/flags/AO.svg rename to apps/client/public/icons/flags/AO.svg diff --git a/public/icons/flags/AR.svg b/apps/client/public/icons/flags/AR.svg similarity index 100% rename from public/icons/flags/AR.svg rename to apps/client/public/icons/flags/AR.svg diff --git a/public/icons/flags/AS.svg b/apps/client/public/icons/flags/AS.svg similarity index 100% rename from public/icons/flags/AS.svg rename to apps/client/public/icons/flags/AS.svg diff --git a/public/icons/flags/AT.svg b/apps/client/public/icons/flags/AT.svg similarity index 100% rename from public/icons/flags/AT.svg rename to apps/client/public/icons/flags/AT.svg diff --git a/public/icons/flags/AU.svg b/apps/client/public/icons/flags/AU.svg similarity index 100% rename from public/icons/flags/AU.svg rename to apps/client/public/icons/flags/AU.svg diff --git a/public/icons/flags/AW.svg b/apps/client/public/icons/flags/AW.svg similarity index 100% rename from public/icons/flags/AW.svg rename to apps/client/public/icons/flags/AW.svg diff --git a/public/icons/flags/AX.svg b/apps/client/public/icons/flags/AX.svg similarity index 100% rename from public/icons/flags/AX.svg rename to apps/client/public/icons/flags/AX.svg diff --git a/public/icons/flags/AZ.svg b/apps/client/public/icons/flags/AZ.svg similarity index 100% rename from public/icons/flags/AZ.svg rename to apps/client/public/icons/flags/AZ.svg diff --git a/public/icons/flags/BA.svg b/apps/client/public/icons/flags/BA.svg similarity index 100% rename from public/icons/flags/BA.svg rename to apps/client/public/icons/flags/BA.svg diff --git a/public/icons/flags/BB.svg b/apps/client/public/icons/flags/BB.svg similarity index 100% rename from public/icons/flags/BB.svg rename to apps/client/public/icons/flags/BB.svg diff --git a/public/icons/flags/BD.svg b/apps/client/public/icons/flags/BD.svg similarity index 100% rename from public/icons/flags/BD.svg rename to apps/client/public/icons/flags/BD.svg diff --git a/public/icons/flags/BE.svg b/apps/client/public/icons/flags/BE.svg similarity index 100% rename from public/icons/flags/BE.svg rename to apps/client/public/icons/flags/BE.svg diff --git a/public/icons/flags/BF.svg b/apps/client/public/icons/flags/BF.svg similarity index 100% rename from public/icons/flags/BF.svg rename to apps/client/public/icons/flags/BF.svg diff --git a/public/icons/flags/BG.svg b/apps/client/public/icons/flags/BG.svg similarity index 100% rename from public/icons/flags/BG.svg rename to apps/client/public/icons/flags/BG.svg diff --git a/public/icons/flags/BH.svg b/apps/client/public/icons/flags/BH.svg similarity index 100% rename from public/icons/flags/BH.svg rename to apps/client/public/icons/flags/BH.svg diff --git a/public/icons/flags/BI.svg b/apps/client/public/icons/flags/BI.svg similarity index 100% rename from public/icons/flags/BI.svg rename to apps/client/public/icons/flags/BI.svg diff --git a/public/icons/flags/BJ.svg b/apps/client/public/icons/flags/BJ.svg similarity index 100% rename from public/icons/flags/BJ.svg rename to apps/client/public/icons/flags/BJ.svg diff --git a/public/icons/flags/BL.svg b/apps/client/public/icons/flags/BL.svg similarity index 100% rename from public/icons/flags/BL.svg rename to apps/client/public/icons/flags/BL.svg diff --git a/public/icons/flags/BM.svg b/apps/client/public/icons/flags/BM.svg similarity index 100% rename from public/icons/flags/BM.svg rename to apps/client/public/icons/flags/BM.svg diff --git a/public/icons/flags/BN.svg b/apps/client/public/icons/flags/BN.svg similarity index 100% rename from public/icons/flags/BN.svg rename to apps/client/public/icons/flags/BN.svg diff --git a/public/icons/flags/BO.svg b/apps/client/public/icons/flags/BO.svg similarity index 100% rename from public/icons/flags/BO.svg rename to apps/client/public/icons/flags/BO.svg diff --git a/public/icons/flags/BR.svg b/apps/client/public/icons/flags/BR.svg similarity index 100% rename from public/icons/flags/BR.svg rename to apps/client/public/icons/flags/BR.svg diff --git a/public/icons/flags/BS.svg b/apps/client/public/icons/flags/BS.svg similarity index 100% rename from public/icons/flags/BS.svg rename to apps/client/public/icons/flags/BS.svg diff --git a/public/icons/flags/BT.svg b/apps/client/public/icons/flags/BT.svg similarity index 100% rename from public/icons/flags/BT.svg rename to apps/client/public/icons/flags/BT.svg diff --git a/public/icons/flags/BV.svg b/apps/client/public/icons/flags/BV.svg similarity index 100% rename from public/icons/flags/BV.svg rename to apps/client/public/icons/flags/BV.svg diff --git a/public/icons/flags/BW.svg b/apps/client/public/icons/flags/BW.svg similarity index 100% rename from public/icons/flags/BW.svg rename to apps/client/public/icons/flags/BW.svg diff --git a/public/icons/flags/BY.svg b/apps/client/public/icons/flags/BY.svg similarity index 100% rename from public/icons/flags/BY.svg rename to apps/client/public/icons/flags/BY.svg diff --git a/public/icons/flags/BZ.svg b/apps/client/public/icons/flags/BZ.svg similarity index 100% rename from public/icons/flags/BZ.svg rename to apps/client/public/icons/flags/BZ.svg diff --git a/public/icons/flags/CA.svg b/apps/client/public/icons/flags/CA.svg similarity index 100% rename from public/icons/flags/CA.svg rename to apps/client/public/icons/flags/CA.svg diff --git a/public/icons/flags/CC.svg b/apps/client/public/icons/flags/CC.svg similarity index 100% rename from public/icons/flags/CC.svg rename to apps/client/public/icons/flags/CC.svg diff --git a/public/icons/flags/CD.svg b/apps/client/public/icons/flags/CD.svg similarity index 100% rename from public/icons/flags/CD.svg rename to apps/client/public/icons/flags/CD.svg diff --git a/public/icons/flags/CF.svg b/apps/client/public/icons/flags/CF.svg similarity index 100% rename from public/icons/flags/CF.svg rename to apps/client/public/icons/flags/CF.svg diff --git a/public/icons/flags/CG.svg b/apps/client/public/icons/flags/CG.svg similarity index 100% rename from public/icons/flags/CG.svg rename to apps/client/public/icons/flags/CG.svg diff --git a/public/icons/flags/CH.svg b/apps/client/public/icons/flags/CH.svg similarity index 100% rename from public/icons/flags/CH.svg rename to apps/client/public/icons/flags/CH.svg diff --git a/public/icons/flags/CI.svg b/apps/client/public/icons/flags/CI.svg similarity index 100% rename from public/icons/flags/CI.svg rename to apps/client/public/icons/flags/CI.svg diff --git a/public/icons/flags/CK.svg b/apps/client/public/icons/flags/CK.svg similarity index 100% rename from public/icons/flags/CK.svg rename to apps/client/public/icons/flags/CK.svg diff --git a/public/icons/flags/CL.svg b/apps/client/public/icons/flags/CL.svg similarity index 100% rename from public/icons/flags/CL.svg rename to apps/client/public/icons/flags/CL.svg diff --git a/public/icons/flags/CM.svg b/apps/client/public/icons/flags/CM.svg similarity index 100% rename from public/icons/flags/CM.svg rename to apps/client/public/icons/flags/CM.svg diff --git a/public/icons/flags/CN.svg b/apps/client/public/icons/flags/CN.svg similarity index 100% rename from public/icons/flags/CN.svg rename to apps/client/public/icons/flags/CN.svg diff --git a/public/icons/flags/CO.svg b/apps/client/public/icons/flags/CO.svg similarity index 100% rename from public/icons/flags/CO.svg rename to apps/client/public/icons/flags/CO.svg diff --git a/public/icons/flags/CR.svg b/apps/client/public/icons/flags/CR.svg similarity index 100% rename from public/icons/flags/CR.svg rename to apps/client/public/icons/flags/CR.svg diff --git a/public/icons/flags/CU.svg b/apps/client/public/icons/flags/CU.svg similarity index 100% rename from public/icons/flags/CU.svg rename to apps/client/public/icons/flags/CU.svg diff --git a/public/icons/flags/CV.svg b/apps/client/public/icons/flags/CV.svg similarity index 100% rename from public/icons/flags/CV.svg rename to apps/client/public/icons/flags/CV.svg diff --git a/public/icons/flags/CW.svg b/apps/client/public/icons/flags/CW.svg similarity index 100% rename from public/icons/flags/CW.svg rename to apps/client/public/icons/flags/CW.svg diff --git a/public/icons/flags/CX.svg b/apps/client/public/icons/flags/CX.svg similarity index 100% rename from public/icons/flags/CX.svg rename to apps/client/public/icons/flags/CX.svg diff --git a/public/icons/flags/CY.svg b/apps/client/public/icons/flags/CY.svg similarity index 100% rename from public/icons/flags/CY.svg rename to apps/client/public/icons/flags/CY.svg diff --git a/public/icons/flags/CZ.svg b/apps/client/public/icons/flags/CZ.svg similarity index 100% rename from public/icons/flags/CZ.svg rename to apps/client/public/icons/flags/CZ.svg diff --git a/public/icons/flags/DE.svg b/apps/client/public/icons/flags/DE.svg similarity index 100% rename from public/icons/flags/DE.svg rename to apps/client/public/icons/flags/DE.svg diff --git a/public/icons/flags/DJ.svg b/apps/client/public/icons/flags/DJ.svg similarity index 100% rename from public/icons/flags/DJ.svg rename to apps/client/public/icons/flags/DJ.svg diff --git a/public/icons/flags/DK.svg b/apps/client/public/icons/flags/DK.svg similarity index 100% rename from public/icons/flags/DK.svg rename to apps/client/public/icons/flags/DK.svg diff --git a/public/icons/flags/DM.svg b/apps/client/public/icons/flags/DM.svg similarity index 100% rename from public/icons/flags/DM.svg rename to apps/client/public/icons/flags/DM.svg diff --git a/public/icons/flags/DO.svg b/apps/client/public/icons/flags/DO.svg similarity index 100% rename from public/icons/flags/DO.svg rename to apps/client/public/icons/flags/DO.svg diff --git a/public/icons/flags/DZ.svg b/apps/client/public/icons/flags/DZ.svg similarity index 100% rename from public/icons/flags/DZ.svg rename to apps/client/public/icons/flags/DZ.svg diff --git a/public/icons/flags/EC.svg b/apps/client/public/icons/flags/EC.svg similarity index 100% rename from public/icons/flags/EC.svg rename to apps/client/public/icons/flags/EC.svg diff --git a/public/icons/flags/EE.svg b/apps/client/public/icons/flags/EE.svg similarity index 100% rename from public/icons/flags/EE.svg rename to apps/client/public/icons/flags/EE.svg diff --git a/public/icons/flags/EGP.svg b/apps/client/public/icons/flags/EGP.svg similarity index 100% rename from public/icons/flags/EGP.svg rename to apps/client/public/icons/flags/EGP.svg diff --git a/public/icons/flags/ER.svg b/apps/client/public/icons/flags/ER.svg similarity index 100% rename from public/icons/flags/ER.svg rename to apps/client/public/icons/flags/ER.svg diff --git a/public/icons/flags/ES.svg b/apps/client/public/icons/flags/ES.svg similarity index 100% rename from public/icons/flags/ES.svg rename to apps/client/public/icons/flags/ES.svg diff --git a/public/icons/flags/ET.svg b/apps/client/public/icons/flags/ET.svg similarity index 100% rename from public/icons/flags/ET.svg rename to apps/client/public/icons/flags/ET.svg diff --git a/public/icons/flags/EUR.svg b/apps/client/public/icons/flags/EUR.svg similarity index 100% rename from public/icons/flags/EUR.svg rename to apps/client/public/icons/flags/EUR.svg diff --git a/public/icons/flags/FI.svg b/apps/client/public/icons/flags/FI.svg similarity index 100% rename from public/icons/flags/FI.svg rename to apps/client/public/icons/flags/FI.svg diff --git a/public/icons/flags/FJ.svg b/apps/client/public/icons/flags/FJ.svg similarity index 100% rename from public/icons/flags/FJ.svg rename to apps/client/public/icons/flags/FJ.svg diff --git a/public/icons/flags/FK.svg b/apps/client/public/icons/flags/FK.svg similarity index 100% rename from public/icons/flags/FK.svg rename to apps/client/public/icons/flags/FK.svg diff --git a/public/icons/flags/FM.svg b/apps/client/public/icons/flags/FM.svg similarity index 100% rename from public/icons/flags/FM.svg rename to apps/client/public/icons/flags/FM.svg diff --git a/public/icons/flags/FO.svg b/apps/client/public/icons/flags/FO.svg similarity index 100% rename from public/icons/flags/FO.svg rename to apps/client/public/icons/flags/FO.svg diff --git a/public/icons/flags/FR.svg b/apps/client/public/icons/flags/FR.svg similarity index 100% rename from public/icons/flags/FR.svg rename to apps/client/public/icons/flags/FR.svg diff --git a/public/icons/flags/GA.svg b/apps/client/public/icons/flags/GA.svg similarity index 100% rename from public/icons/flags/GA.svg rename to apps/client/public/icons/flags/GA.svg diff --git a/public/icons/flags/GB-ENG.svg b/apps/client/public/icons/flags/GB-ENG.svg similarity index 100% rename from public/icons/flags/GB-ENG.svg rename to apps/client/public/icons/flags/GB-ENG.svg diff --git a/public/icons/flags/GB-NIR.svg b/apps/client/public/icons/flags/GB-NIR.svg similarity index 100% rename from public/icons/flags/GB-NIR.svg rename to apps/client/public/icons/flags/GB-NIR.svg diff --git a/public/icons/flags/GB-SCT.svg b/apps/client/public/icons/flags/GB-SCT.svg similarity index 100% rename from public/icons/flags/GB-SCT.svg rename to apps/client/public/icons/flags/GB-SCT.svg diff --git a/public/icons/flags/GB-WLS.svg b/apps/client/public/icons/flags/GB-WLS.svg similarity index 100% rename from public/icons/flags/GB-WLS.svg rename to apps/client/public/icons/flags/GB-WLS.svg diff --git a/public/icons/flags/GB-ZET.svg b/apps/client/public/icons/flags/GB-ZET.svg similarity index 100% rename from public/icons/flags/GB-ZET.svg rename to apps/client/public/icons/flags/GB-ZET.svg diff --git a/public/icons/flags/GB.svg b/apps/client/public/icons/flags/GB.svg similarity index 100% rename from public/icons/flags/GB.svg rename to apps/client/public/icons/flags/GB.svg diff --git a/public/icons/flags/GD.svg b/apps/client/public/icons/flags/GD.svg similarity index 100% rename from public/icons/flags/GD.svg rename to apps/client/public/icons/flags/GD.svg diff --git a/public/icons/flags/GE.svg b/apps/client/public/icons/flags/GE.svg similarity index 100% rename from public/icons/flags/GE.svg rename to apps/client/public/icons/flags/GE.svg diff --git a/public/icons/flags/GF.svg b/apps/client/public/icons/flags/GF.svg similarity index 100% rename from public/icons/flags/GF.svg rename to apps/client/public/icons/flags/GF.svg diff --git a/public/icons/flags/GG.svg b/apps/client/public/icons/flags/GG.svg similarity index 100% rename from public/icons/flags/GG.svg rename to apps/client/public/icons/flags/GG.svg diff --git a/public/icons/flags/GH.svg b/apps/client/public/icons/flags/GH.svg similarity index 100% rename from public/icons/flags/GH.svg rename to apps/client/public/icons/flags/GH.svg diff --git a/public/icons/flags/GI.svg b/apps/client/public/icons/flags/GI.svg similarity index 100% rename from public/icons/flags/GI.svg rename to apps/client/public/icons/flags/GI.svg diff --git a/public/icons/flags/GL.svg b/apps/client/public/icons/flags/GL.svg similarity index 100% rename from public/icons/flags/GL.svg rename to apps/client/public/icons/flags/GL.svg diff --git a/public/icons/flags/GM.svg b/apps/client/public/icons/flags/GM.svg similarity index 100% rename from public/icons/flags/GM.svg rename to apps/client/public/icons/flags/GM.svg diff --git a/public/icons/flags/GN.svg b/apps/client/public/icons/flags/GN.svg similarity index 100% rename from public/icons/flags/GN.svg rename to apps/client/public/icons/flags/GN.svg diff --git a/public/icons/flags/GP.svg b/apps/client/public/icons/flags/GP.svg similarity index 100% rename from public/icons/flags/GP.svg rename to apps/client/public/icons/flags/GP.svg diff --git a/public/icons/flags/GQ.svg b/apps/client/public/icons/flags/GQ.svg similarity index 100% rename from public/icons/flags/GQ.svg rename to apps/client/public/icons/flags/GQ.svg diff --git a/public/icons/flags/GR.svg b/apps/client/public/icons/flags/GR.svg similarity index 100% rename from public/icons/flags/GR.svg rename to apps/client/public/icons/flags/GR.svg diff --git a/public/icons/flags/GS.svg b/apps/client/public/icons/flags/GS.svg similarity index 100% rename from public/icons/flags/GS.svg rename to apps/client/public/icons/flags/GS.svg diff --git a/public/icons/flags/GT.svg b/apps/client/public/icons/flags/GT.svg similarity index 100% rename from public/icons/flags/GT.svg rename to apps/client/public/icons/flags/GT.svg diff --git a/public/icons/flags/GU.svg b/apps/client/public/icons/flags/GU.svg similarity index 100% rename from public/icons/flags/GU.svg rename to apps/client/public/icons/flags/GU.svg diff --git a/public/icons/flags/GW.svg b/apps/client/public/icons/flags/GW.svg similarity index 100% rename from public/icons/flags/GW.svg rename to apps/client/public/icons/flags/GW.svg diff --git a/public/icons/flags/GY.svg b/apps/client/public/icons/flags/GY.svg similarity index 100% rename from public/icons/flags/GY.svg rename to apps/client/public/icons/flags/GY.svg diff --git a/public/icons/flags/HK.svg b/apps/client/public/icons/flags/HK.svg similarity index 100% rename from public/icons/flags/HK.svg rename to apps/client/public/icons/flags/HK.svg diff --git a/public/icons/flags/HM.svg b/apps/client/public/icons/flags/HM.svg similarity index 100% rename from public/icons/flags/HM.svg rename to apps/client/public/icons/flags/HM.svg diff --git a/public/icons/flags/HN.svg b/apps/client/public/icons/flags/HN.svg similarity index 100% rename from public/icons/flags/HN.svg rename to apps/client/public/icons/flags/HN.svg diff --git a/public/icons/flags/HR.svg b/apps/client/public/icons/flags/HR.svg similarity index 100% rename from public/icons/flags/HR.svg rename to apps/client/public/icons/flags/HR.svg diff --git a/public/icons/flags/HT.svg b/apps/client/public/icons/flags/HT.svg similarity index 100% rename from public/icons/flags/HT.svg rename to apps/client/public/icons/flags/HT.svg diff --git a/public/icons/flags/HU.svg b/apps/client/public/icons/flags/HU.svg similarity index 100% rename from public/icons/flags/HU.svg rename to apps/client/public/icons/flags/HU.svg diff --git a/public/icons/flags/ID.svg b/apps/client/public/icons/flags/ID.svg similarity index 100% rename from public/icons/flags/ID.svg rename to apps/client/public/icons/flags/ID.svg diff --git a/public/icons/flags/IE.svg b/apps/client/public/icons/flags/IE.svg similarity index 100% rename from public/icons/flags/IE.svg rename to apps/client/public/icons/flags/IE.svg diff --git a/public/icons/flags/IL.svg b/apps/client/public/icons/flags/IL.svg similarity index 100% rename from public/icons/flags/IL.svg rename to apps/client/public/icons/flags/IL.svg diff --git a/public/icons/flags/IM.svg b/apps/client/public/icons/flags/IM.svg similarity index 100% rename from public/icons/flags/IM.svg rename to apps/client/public/icons/flags/IM.svg diff --git a/public/icons/flags/IN.svg b/apps/client/public/icons/flags/IN.svg similarity index 100% rename from public/icons/flags/IN.svg rename to apps/client/public/icons/flags/IN.svg diff --git a/public/icons/flags/IO.svg b/apps/client/public/icons/flags/IO.svg similarity index 100% rename from public/icons/flags/IO.svg rename to apps/client/public/icons/flags/IO.svg diff --git a/public/icons/flags/IQ.svg b/apps/client/public/icons/flags/IQ.svg similarity index 100% rename from public/icons/flags/IQ.svg rename to apps/client/public/icons/flags/IQ.svg diff --git a/public/icons/flags/IR.svg b/apps/client/public/icons/flags/IR.svg similarity index 100% rename from public/icons/flags/IR.svg rename to apps/client/public/icons/flags/IR.svg diff --git a/public/icons/flags/IS.svg b/apps/client/public/icons/flags/IS.svg similarity index 100% rename from public/icons/flags/IS.svg rename to apps/client/public/icons/flags/IS.svg diff --git a/public/icons/flags/IT.svg b/apps/client/public/icons/flags/IT.svg similarity index 100% rename from public/icons/flags/IT.svg rename to apps/client/public/icons/flags/IT.svg diff --git a/public/icons/flags/JE.svg b/apps/client/public/icons/flags/JE.svg similarity index 100% rename from public/icons/flags/JE.svg rename to apps/client/public/icons/flags/JE.svg diff --git a/public/icons/flags/JM.svg b/apps/client/public/icons/flags/JM.svg similarity index 100% rename from public/icons/flags/JM.svg rename to apps/client/public/icons/flags/JM.svg diff --git a/public/icons/flags/JO.svg b/apps/client/public/icons/flags/JO.svg similarity index 100% rename from public/icons/flags/JO.svg rename to apps/client/public/icons/flags/JO.svg diff --git a/public/icons/flags/JP.svg b/apps/client/public/icons/flags/JP.svg similarity index 100% rename from public/icons/flags/JP.svg rename to apps/client/public/icons/flags/JP.svg diff --git a/public/icons/flags/KE.svg b/apps/client/public/icons/flags/KE.svg similarity index 100% rename from public/icons/flags/KE.svg rename to apps/client/public/icons/flags/KE.svg diff --git a/public/icons/flags/KG.svg b/apps/client/public/icons/flags/KG.svg similarity index 100% rename from public/icons/flags/KG.svg rename to apps/client/public/icons/flags/KG.svg diff --git a/public/icons/flags/KH.svg b/apps/client/public/icons/flags/KH.svg similarity index 100% rename from public/icons/flags/KH.svg rename to apps/client/public/icons/flags/KH.svg diff --git a/public/icons/flags/KI.svg b/apps/client/public/icons/flags/KI.svg similarity index 100% rename from public/icons/flags/KI.svg rename to apps/client/public/icons/flags/KI.svg diff --git a/public/icons/flags/KM.svg b/apps/client/public/icons/flags/KM.svg similarity index 100% rename from public/icons/flags/KM.svg rename to apps/client/public/icons/flags/KM.svg diff --git a/public/icons/flags/KN.svg b/apps/client/public/icons/flags/KN.svg similarity index 100% rename from public/icons/flags/KN.svg rename to apps/client/public/icons/flags/KN.svg diff --git a/public/icons/flags/KP.svg b/apps/client/public/icons/flags/KP.svg similarity index 100% rename from public/icons/flags/KP.svg rename to apps/client/public/icons/flags/KP.svg diff --git a/public/icons/flags/KR.svg b/apps/client/public/icons/flags/KR.svg similarity index 100% rename from public/icons/flags/KR.svg rename to apps/client/public/icons/flags/KR.svg diff --git a/public/icons/flags/KW.svg b/apps/client/public/icons/flags/KW.svg similarity index 100% rename from public/icons/flags/KW.svg rename to apps/client/public/icons/flags/KW.svg diff --git a/public/icons/flags/KY.svg b/apps/client/public/icons/flags/KY.svg similarity index 100% rename from public/icons/flags/KY.svg rename to apps/client/public/icons/flags/KY.svg diff --git a/public/icons/flags/KZ.svg b/apps/client/public/icons/flags/KZ.svg similarity index 100% rename from public/icons/flags/KZ.svg rename to apps/client/public/icons/flags/KZ.svg diff --git a/public/icons/flags/LA.svg b/apps/client/public/icons/flags/LA.svg similarity index 100% rename from public/icons/flags/LA.svg rename to apps/client/public/icons/flags/LA.svg diff --git a/public/icons/flags/LB.svg b/apps/client/public/icons/flags/LB.svg similarity index 100% rename from public/icons/flags/LB.svg rename to apps/client/public/icons/flags/LB.svg diff --git a/public/icons/flags/LC.svg b/apps/client/public/icons/flags/LC.svg similarity index 100% rename from public/icons/flags/LC.svg rename to apps/client/public/icons/flags/LC.svg diff --git a/public/icons/flags/LGBT.svg b/apps/client/public/icons/flags/LGBT.svg similarity index 100% rename from public/icons/flags/LGBT.svg rename to apps/client/public/icons/flags/LGBT.svg diff --git a/public/icons/flags/LI.svg b/apps/client/public/icons/flags/LI.svg similarity index 100% rename from public/icons/flags/LI.svg rename to apps/client/public/icons/flags/LI.svg diff --git a/public/icons/flags/LK.svg b/apps/client/public/icons/flags/LK.svg similarity index 100% rename from public/icons/flags/LK.svg rename to apps/client/public/icons/flags/LK.svg diff --git a/public/icons/flags/LR.svg b/apps/client/public/icons/flags/LR.svg similarity index 100% rename from public/icons/flags/LR.svg rename to apps/client/public/icons/flags/LR.svg diff --git a/public/icons/flags/LS.svg b/apps/client/public/icons/flags/LS.svg similarity index 100% rename from public/icons/flags/LS.svg rename to apps/client/public/icons/flags/LS.svg diff --git a/public/icons/flags/LT.svg b/apps/client/public/icons/flags/LT.svg similarity index 100% rename from public/icons/flags/LT.svg rename to apps/client/public/icons/flags/LT.svg diff --git a/public/icons/flags/LU.svg b/apps/client/public/icons/flags/LU.svg similarity index 100% rename from public/icons/flags/LU.svg rename to apps/client/public/icons/flags/LU.svg diff --git a/public/icons/flags/LV.svg b/apps/client/public/icons/flags/LV.svg similarity index 100% rename from public/icons/flags/LV.svg rename to apps/client/public/icons/flags/LV.svg diff --git a/public/icons/flags/LYD.svg b/apps/client/public/icons/flags/LYD.svg similarity index 100% rename from public/icons/flags/LYD.svg rename to apps/client/public/icons/flags/LYD.svg diff --git a/public/icons/flags/MA.svg b/apps/client/public/icons/flags/MA.svg similarity index 100% rename from public/icons/flags/MA.svg rename to apps/client/public/icons/flags/MA.svg diff --git a/public/icons/flags/MC.svg b/apps/client/public/icons/flags/MC.svg similarity index 100% rename from public/icons/flags/MC.svg rename to apps/client/public/icons/flags/MC.svg diff --git a/public/icons/flags/MD.svg b/apps/client/public/icons/flags/MD.svg similarity index 100% rename from public/icons/flags/MD.svg rename to apps/client/public/icons/flags/MD.svg diff --git a/public/icons/flags/ME.svg b/apps/client/public/icons/flags/ME.svg similarity index 100% rename from public/icons/flags/ME.svg rename to apps/client/public/icons/flags/ME.svg diff --git a/public/icons/flags/MF.svg b/apps/client/public/icons/flags/MF.svg similarity index 100% rename from public/icons/flags/MF.svg rename to apps/client/public/icons/flags/MF.svg diff --git a/public/icons/flags/MG.svg b/apps/client/public/icons/flags/MG.svg similarity index 100% rename from public/icons/flags/MG.svg rename to apps/client/public/icons/flags/MG.svg diff --git a/public/icons/flags/MH.svg b/apps/client/public/icons/flags/MH.svg similarity index 100% rename from public/icons/flags/MH.svg rename to apps/client/public/icons/flags/MH.svg diff --git a/public/icons/flags/MK.svg b/apps/client/public/icons/flags/MK.svg similarity index 100% rename from public/icons/flags/MK.svg rename to apps/client/public/icons/flags/MK.svg diff --git a/public/icons/flags/ML.svg b/apps/client/public/icons/flags/ML.svg similarity index 100% rename from public/icons/flags/ML.svg rename to apps/client/public/icons/flags/ML.svg diff --git a/public/icons/flags/MM.svg b/apps/client/public/icons/flags/MM.svg similarity index 100% rename from public/icons/flags/MM.svg rename to apps/client/public/icons/flags/MM.svg diff --git a/public/icons/flags/MN.svg b/apps/client/public/icons/flags/MN.svg similarity index 100% rename from public/icons/flags/MN.svg rename to apps/client/public/icons/flags/MN.svg diff --git a/public/icons/flags/MO.svg b/apps/client/public/icons/flags/MO.svg similarity index 100% rename from public/icons/flags/MO.svg rename to apps/client/public/icons/flags/MO.svg diff --git a/public/icons/flags/MP.svg b/apps/client/public/icons/flags/MP.svg similarity index 100% rename from public/icons/flags/MP.svg rename to apps/client/public/icons/flags/MP.svg diff --git a/public/icons/flags/MQ.svg b/apps/client/public/icons/flags/MQ.svg similarity index 100% rename from public/icons/flags/MQ.svg rename to apps/client/public/icons/flags/MQ.svg diff --git a/public/icons/flags/MR.svg b/apps/client/public/icons/flags/MR.svg similarity index 100% rename from public/icons/flags/MR.svg rename to apps/client/public/icons/flags/MR.svg diff --git a/public/icons/flags/MS.svg b/apps/client/public/icons/flags/MS.svg similarity index 100% rename from public/icons/flags/MS.svg rename to apps/client/public/icons/flags/MS.svg diff --git a/public/icons/flags/MT.svg b/apps/client/public/icons/flags/MT.svg similarity index 100% rename from public/icons/flags/MT.svg rename to apps/client/public/icons/flags/MT.svg diff --git a/public/icons/flags/MU.svg b/apps/client/public/icons/flags/MU.svg similarity index 100% rename from public/icons/flags/MU.svg rename to apps/client/public/icons/flags/MU.svg diff --git a/public/icons/flags/MV.svg b/apps/client/public/icons/flags/MV.svg similarity index 100% rename from public/icons/flags/MV.svg rename to apps/client/public/icons/flags/MV.svg diff --git a/public/icons/flags/MW.svg b/apps/client/public/icons/flags/MW.svg similarity index 100% rename from public/icons/flags/MW.svg rename to apps/client/public/icons/flags/MW.svg diff --git a/public/icons/flags/MX.svg b/apps/client/public/icons/flags/MX.svg similarity index 100% rename from public/icons/flags/MX.svg rename to apps/client/public/icons/flags/MX.svg diff --git a/public/icons/flags/MY.svg b/apps/client/public/icons/flags/MY.svg similarity index 100% rename from public/icons/flags/MY.svg rename to apps/client/public/icons/flags/MY.svg diff --git a/public/icons/flags/MZ.svg b/apps/client/public/icons/flags/MZ.svg similarity index 100% rename from public/icons/flags/MZ.svg rename to apps/client/public/icons/flags/MZ.svg diff --git a/public/icons/flags/NA.svg b/apps/client/public/icons/flags/NA.svg similarity index 100% rename from public/icons/flags/NA.svg rename to apps/client/public/icons/flags/NA.svg diff --git a/public/icons/flags/NC.svg b/apps/client/public/icons/flags/NC.svg similarity index 100% rename from public/icons/flags/NC.svg rename to apps/client/public/icons/flags/NC.svg diff --git a/public/icons/flags/NE.svg b/apps/client/public/icons/flags/NE.svg similarity index 100% rename from public/icons/flags/NE.svg rename to apps/client/public/icons/flags/NE.svg diff --git a/public/icons/flags/NF.svg b/apps/client/public/icons/flags/NF.svg similarity index 100% rename from public/icons/flags/NF.svg rename to apps/client/public/icons/flags/NF.svg diff --git a/public/icons/flags/NG.svg b/apps/client/public/icons/flags/NG.svg similarity index 100% rename from public/icons/flags/NG.svg rename to apps/client/public/icons/flags/NG.svg diff --git a/public/icons/flags/NI.svg b/apps/client/public/icons/flags/NI.svg similarity index 100% rename from public/icons/flags/NI.svg rename to apps/client/public/icons/flags/NI.svg diff --git a/public/icons/flags/NL.svg b/apps/client/public/icons/flags/NL.svg similarity index 100% rename from public/icons/flags/NL.svg rename to apps/client/public/icons/flags/NL.svg diff --git a/public/icons/flags/NO.svg b/apps/client/public/icons/flags/NO.svg similarity index 100% rename from public/icons/flags/NO.svg rename to apps/client/public/icons/flags/NO.svg diff --git a/public/icons/flags/NP.svg b/apps/client/public/icons/flags/NP.svg similarity index 100% rename from public/icons/flags/NP.svg rename to apps/client/public/icons/flags/NP.svg diff --git a/public/icons/flags/NR.svg b/apps/client/public/icons/flags/NR.svg similarity index 100% rename from public/icons/flags/NR.svg rename to apps/client/public/icons/flags/NR.svg diff --git a/public/icons/flags/NU.svg b/apps/client/public/icons/flags/NU.svg similarity index 100% rename from public/icons/flags/NU.svg rename to apps/client/public/icons/flags/NU.svg diff --git a/public/icons/flags/NZ.svg b/apps/client/public/icons/flags/NZ.svg similarity index 100% rename from public/icons/flags/NZ.svg rename to apps/client/public/icons/flags/NZ.svg diff --git a/public/icons/flags/OM.svg b/apps/client/public/icons/flags/OM.svg similarity index 100% rename from public/icons/flags/OM.svg rename to apps/client/public/icons/flags/OM.svg diff --git a/public/icons/flags/PA.svg b/apps/client/public/icons/flags/PA.svg similarity index 100% rename from public/icons/flags/PA.svg rename to apps/client/public/icons/flags/PA.svg diff --git a/public/icons/flags/PE.svg b/apps/client/public/icons/flags/PE.svg similarity index 100% rename from public/icons/flags/PE.svg rename to apps/client/public/icons/flags/PE.svg diff --git a/public/icons/flags/PF.svg b/apps/client/public/icons/flags/PF.svg similarity index 100% rename from public/icons/flags/PF.svg rename to apps/client/public/icons/flags/PF.svg diff --git a/public/icons/flags/PG.svg b/apps/client/public/icons/flags/PG.svg similarity index 100% rename from public/icons/flags/PG.svg rename to apps/client/public/icons/flags/PG.svg diff --git a/public/icons/flags/PH.svg b/apps/client/public/icons/flags/PH.svg similarity index 100% rename from public/icons/flags/PH.svg rename to apps/client/public/icons/flags/PH.svg diff --git a/public/icons/flags/PK.svg b/apps/client/public/icons/flags/PK.svg similarity index 100% rename from public/icons/flags/PK.svg rename to apps/client/public/icons/flags/PK.svg diff --git a/public/icons/flags/PL.svg b/apps/client/public/icons/flags/PL.svg similarity index 100% rename from public/icons/flags/PL.svg rename to apps/client/public/icons/flags/PL.svg diff --git a/public/icons/flags/PM.svg b/apps/client/public/icons/flags/PM.svg similarity index 100% rename from public/icons/flags/PM.svg rename to apps/client/public/icons/flags/PM.svg diff --git a/public/icons/flags/PN.svg b/apps/client/public/icons/flags/PN.svg similarity index 100% rename from public/icons/flags/PN.svg rename to apps/client/public/icons/flags/PN.svg diff --git a/public/icons/flags/PR.svg b/apps/client/public/icons/flags/PR.svg similarity index 100% rename from public/icons/flags/PR.svg rename to apps/client/public/icons/flags/PR.svg diff --git a/public/icons/flags/PS.svg b/apps/client/public/icons/flags/PS.svg similarity index 100% rename from public/icons/flags/PS.svg rename to apps/client/public/icons/flags/PS.svg diff --git a/public/icons/flags/PT.svg b/apps/client/public/icons/flags/PT.svg similarity index 100% rename from public/icons/flags/PT.svg rename to apps/client/public/icons/flags/PT.svg diff --git a/public/icons/flags/PW.svg b/apps/client/public/icons/flags/PW.svg similarity index 100% rename from public/icons/flags/PW.svg rename to apps/client/public/icons/flags/PW.svg diff --git a/public/icons/flags/PY.svg b/apps/client/public/icons/flags/PY.svg similarity index 100% rename from public/icons/flags/PY.svg rename to apps/client/public/icons/flags/PY.svg diff --git a/public/icons/flags/QA.svg b/apps/client/public/icons/flags/QA.svg similarity index 100% rename from public/icons/flags/QA.svg rename to apps/client/public/icons/flags/QA.svg diff --git a/public/icons/flags/RE.svg b/apps/client/public/icons/flags/RE.svg similarity index 100% rename from public/icons/flags/RE.svg rename to apps/client/public/icons/flags/RE.svg diff --git a/public/icons/flags/RO.svg b/apps/client/public/icons/flags/RO.svg similarity index 100% rename from public/icons/flags/RO.svg rename to apps/client/public/icons/flags/RO.svg diff --git a/public/icons/flags/RS.svg b/apps/client/public/icons/flags/RS.svg similarity index 100% rename from public/icons/flags/RS.svg rename to apps/client/public/icons/flags/RS.svg diff --git a/public/icons/flags/RU.svg b/apps/client/public/icons/flags/RU.svg similarity index 100% rename from public/icons/flags/RU.svg rename to apps/client/public/icons/flags/RU.svg diff --git a/public/icons/flags/RW.svg b/apps/client/public/icons/flags/RW.svg similarity index 100% rename from public/icons/flags/RW.svg rename to apps/client/public/icons/flags/RW.svg diff --git a/public/icons/flags/SA.svg b/apps/client/public/icons/flags/SA.svg similarity index 100% rename from public/icons/flags/SA.svg rename to apps/client/public/icons/flags/SA.svg diff --git a/public/icons/flags/SB.svg b/apps/client/public/icons/flags/SB.svg similarity index 100% rename from public/icons/flags/SB.svg rename to apps/client/public/icons/flags/SB.svg diff --git a/public/icons/flags/SC.svg b/apps/client/public/icons/flags/SC.svg similarity index 100% rename from public/icons/flags/SC.svg rename to apps/client/public/icons/flags/SC.svg diff --git a/public/icons/flags/SD.svg b/apps/client/public/icons/flags/SD.svg similarity index 100% rename from public/icons/flags/SD.svg rename to apps/client/public/icons/flags/SD.svg diff --git a/public/icons/flags/SE.svg b/apps/client/public/icons/flags/SE.svg similarity index 100% rename from public/icons/flags/SE.svg rename to apps/client/public/icons/flags/SE.svg diff --git a/public/icons/flags/SG.svg b/apps/client/public/icons/flags/SG.svg similarity index 100% rename from public/icons/flags/SG.svg rename to apps/client/public/icons/flags/SG.svg diff --git a/public/icons/flags/SH.svg b/apps/client/public/icons/flags/SH.svg similarity index 100% rename from public/icons/flags/SH.svg rename to apps/client/public/icons/flags/SH.svg diff --git a/public/icons/flags/SI.svg b/apps/client/public/icons/flags/SI.svg similarity index 100% rename from public/icons/flags/SI.svg rename to apps/client/public/icons/flags/SI.svg diff --git a/public/icons/flags/SJ.svg b/apps/client/public/icons/flags/SJ.svg similarity index 100% rename from public/icons/flags/SJ.svg rename to apps/client/public/icons/flags/SJ.svg diff --git a/public/icons/flags/SK.svg b/apps/client/public/icons/flags/SK.svg similarity index 100% rename from public/icons/flags/SK.svg rename to apps/client/public/icons/flags/SK.svg diff --git a/public/icons/flags/SL.svg b/apps/client/public/icons/flags/SL.svg similarity index 100% rename from public/icons/flags/SL.svg rename to apps/client/public/icons/flags/SL.svg diff --git a/public/icons/flags/SM.svg b/apps/client/public/icons/flags/SM.svg similarity index 100% rename from public/icons/flags/SM.svg rename to apps/client/public/icons/flags/SM.svg diff --git a/public/icons/flags/SN.svg b/apps/client/public/icons/flags/SN.svg similarity index 100% rename from public/icons/flags/SN.svg rename to apps/client/public/icons/flags/SN.svg diff --git a/public/icons/flags/SO.svg b/apps/client/public/icons/flags/SO.svg similarity index 100% rename from public/icons/flags/SO.svg rename to apps/client/public/icons/flags/SO.svg diff --git a/public/icons/flags/SR.svg b/apps/client/public/icons/flags/SR.svg similarity index 100% rename from public/icons/flags/SR.svg rename to apps/client/public/icons/flags/SR.svg diff --git a/public/icons/flags/SS.svg b/apps/client/public/icons/flags/SS.svg similarity index 100% rename from public/icons/flags/SS.svg rename to apps/client/public/icons/flags/SS.svg diff --git a/public/icons/flags/ST.svg b/apps/client/public/icons/flags/ST.svg similarity index 100% rename from public/icons/flags/ST.svg rename to apps/client/public/icons/flags/ST.svg diff --git a/public/icons/flags/SV.svg b/apps/client/public/icons/flags/SV.svg similarity index 100% rename from public/icons/flags/SV.svg rename to apps/client/public/icons/flags/SV.svg diff --git a/public/icons/flags/SX.svg b/apps/client/public/icons/flags/SX.svg similarity index 100% rename from public/icons/flags/SX.svg rename to apps/client/public/icons/flags/SX.svg diff --git a/public/icons/flags/SY.svg b/apps/client/public/icons/flags/SY.svg similarity index 100% rename from public/icons/flags/SY.svg rename to apps/client/public/icons/flags/SY.svg diff --git a/public/icons/flags/SZ.svg b/apps/client/public/icons/flags/SZ.svg similarity index 100% rename from public/icons/flags/SZ.svg rename to apps/client/public/icons/flags/SZ.svg diff --git a/public/icons/flags/TC.svg b/apps/client/public/icons/flags/TC.svg similarity index 100% rename from public/icons/flags/TC.svg rename to apps/client/public/icons/flags/TC.svg diff --git a/public/icons/flags/TD.svg b/apps/client/public/icons/flags/TD.svg similarity index 100% rename from public/icons/flags/TD.svg rename to apps/client/public/icons/flags/TD.svg diff --git a/public/icons/flags/TF.svg b/apps/client/public/icons/flags/TF.svg similarity index 100% rename from public/icons/flags/TF.svg rename to apps/client/public/icons/flags/TF.svg diff --git a/public/icons/flags/TG.svg b/apps/client/public/icons/flags/TG.svg similarity index 100% rename from public/icons/flags/TG.svg rename to apps/client/public/icons/flags/TG.svg diff --git a/public/icons/flags/TH.svg b/apps/client/public/icons/flags/TH.svg similarity index 100% rename from public/icons/flags/TH.svg rename to apps/client/public/icons/flags/TH.svg diff --git a/public/icons/flags/TJ.svg b/apps/client/public/icons/flags/TJ.svg similarity index 100% rename from public/icons/flags/TJ.svg rename to apps/client/public/icons/flags/TJ.svg diff --git a/public/icons/flags/TK.svg b/apps/client/public/icons/flags/TK.svg similarity index 100% rename from public/icons/flags/TK.svg rename to apps/client/public/icons/flags/TK.svg diff --git a/public/icons/flags/TL.svg b/apps/client/public/icons/flags/TL.svg similarity index 100% rename from public/icons/flags/TL.svg rename to apps/client/public/icons/flags/TL.svg diff --git a/public/icons/flags/TM.svg b/apps/client/public/icons/flags/TM.svg similarity index 100% rename from public/icons/flags/TM.svg rename to apps/client/public/icons/flags/TM.svg diff --git a/public/icons/flags/TN.svg b/apps/client/public/icons/flags/TN.svg similarity index 100% rename from public/icons/flags/TN.svg rename to apps/client/public/icons/flags/TN.svg diff --git a/public/icons/flags/TO.svg b/apps/client/public/icons/flags/TO.svg similarity index 100% rename from public/icons/flags/TO.svg rename to apps/client/public/icons/flags/TO.svg diff --git a/public/icons/flags/TR.svg b/apps/client/public/icons/flags/TR.svg similarity index 100% rename from public/icons/flags/TR.svg rename to apps/client/public/icons/flags/TR.svg diff --git a/public/icons/flags/TT.svg b/apps/client/public/icons/flags/TT.svg similarity index 100% rename from public/icons/flags/TT.svg rename to apps/client/public/icons/flags/TT.svg diff --git a/public/icons/flags/TV.svg b/apps/client/public/icons/flags/TV.svg similarity index 100% rename from public/icons/flags/TV.svg rename to apps/client/public/icons/flags/TV.svg diff --git a/public/icons/flags/TW.svg b/apps/client/public/icons/flags/TW.svg similarity index 100% rename from public/icons/flags/TW.svg rename to apps/client/public/icons/flags/TW.svg diff --git a/public/icons/flags/TZ.svg b/apps/client/public/icons/flags/TZ.svg similarity index 100% rename from public/icons/flags/TZ.svg rename to apps/client/public/icons/flags/TZ.svg diff --git a/public/icons/flags/UA.svg b/apps/client/public/icons/flags/UA.svg similarity index 100% rename from public/icons/flags/UA.svg rename to apps/client/public/icons/flags/UA.svg diff --git a/public/icons/flags/UG.svg b/apps/client/public/icons/flags/UG.svg similarity index 100% rename from public/icons/flags/UG.svg rename to apps/client/public/icons/flags/UG.svg diff --git a/public/icons/flags/UM.svg b/apps/client/public/icons/flags/UM.svg similarity index 100% rename from public/icons/flags/UM.svg rename to apps/client/public/icons/flags/UM.svg diff --git a/public/icons/flags/US-CA.svg b/apps/client/public/icons/flags/US-CA.svg similarity index 100% rename from public/icons/flags/US-CA.svg rename to apps/client/public/icons/flags/US-CA.svg diff --git a/public/icons/flags/USD.svg b/apps/client/public/icons/flags/USD.svg similarity index 100% rename from public/icons/flags/USD.svg rename to apps/client/public/icons/flags/USD.svg diff --git a/public/icons/flags/UY.svg b/apps/client/public/icons/flags/UY.svg similarity index 100% rename from public/icons/flags/UY.svg rename to apps/client/public/icons/flags/UY.svg diff --git a/public/icons/flags/UZ.svg b/apps/client/public/icons/flags/UZ.svg similarity index 100% rename from public/icons/flags/UZ.svg rename to apps/client/public/icons/flags/UZ.svg diff --git a/public/icons/flags/VA.svg b/apps/client/public/icons/flags/VA.svg similarity index 100% rename from public/icons/flags/VA.svg rename to apps/client/public/icons/flags/VA.svg diff --git a/public/icons/flags/VC.svg b/apps/client/public/icons/flags/VC.svg similarity index 100% rename from public/icons/flags/VC.svg rename to apps/client/public/icons/flags/VC.svg diff --git a/public/icons/flags/VE.svg b/apps/client/public/icons/flags/VE.svg similarity index 100% rename from public/icons/flags/VE.svg rename to apps/client/public/icons/flags/VE.svg diff --git a/public/icons/flags/VG.svg b/apps/client/public/icons/flags/VG.svg similarity index 100% rename from public/icons/flags/VG.svg rename to apps/client/public/icons/flags/VG.svg diff --git a/public/icons/flags/VI.svg b/apps/client/public/icons/flags/VI.svg similarity index 100% rename from public/icons/flags/VI.svg rename to apps/client/public/icons/flags/VI.svg diff --git a/public/icons/flags/VN.svg b/apps/client/public/icons/flags/VN.svg similarity index 100% rename from public/icons/flags/VN.svg rename to apps/client/public/icons/flags/VN.svg diff --git a/public/icons/flags/VU.svg b/apps/client/public/icons/flags/VU.svg similarity index 100% rename from public/icons/flags/VU.svg rename to apps/client/public/icons/flags/VU.svg diff --git a/public/icons/flags/WF.svg b/apps/client/public/icons/flags/WF.svg similarity index 100% rename from public/icons/flags/WF.svg rename to apps/client/public/icons/flags/WF.svg diff --git a/public/icons/flags/WS.svg b/apps/client/public/icons/flags/WS.svg similarity index 100% rename from public/icons/flags/WS.svg rename to apps/client/public/icons/flags/WS.svg diff --git a/public/icons/flags/XK.svg b/apps/client/public/icons/flags/XK.svg similarity index 100% rename from public/icons/flags/XK.svg rename to apps/client/public/icons/flags/XK.svg diff --git a/public/icons/flags/YE.svg b/apps/client/public/icons/flags/YE.svg similarity index 100% rename from public/icons/flags/YE.svg rename to apps/client/public/icons/flags/YE.svg diff --git a/public/icons/flags/YT.svg b/apps/client/public/icons/flags/YT.svg similarity index 100% rename from public/icons/flags/YT.svg rename to apps/client/public/icons/flags/YT.svg diff --git a/public/icons/flags/ZA.svg b/apps/client/public/icons/flags/ZA.svg similarity index 100% rename from public/icons/flags/ZA.svg rename to apps/client/public/icons/flags/ZA.svg diff --git a/public/icons/flags/ZM.svg b/apps/client/public/icons/flags/ZM.svg similarity index 100% rename from public/icons/flags/ZM.svg rename to apps/client/public/icons/flags/ZM.svg diff --git a/public/icons/flags/ZW.svg b/apps/client/public/icons/flags/ZW.svg similarity index 100% rename from public/icons/flags/ZW.svg rename to apps/client/public/icons/flags/ZW.svg diff --git a/public/index.html b/apps/client/public/index.html similarity index 100% rename from public/index.html rename to apps/client/public/index.html diff --git a/public/logo192.png b/apps/client/public/logo192.png similarity index 100% rename from public/logo192.png rename to apps/client/public/logo192.png diff --git a/public/logo512.png b/apps/client/public/logo512.png similarity index 100% rename from public/logo512.png rename to apps/client/public/logo512.png diff --git a/public/manifest.json b/apps/client/public/manifest.json similarity index 100% rename from public/manifest.json rename to apps/client/public/manifest.json diff --git a/public/robots.txt b/apps/client/public/robots.txt similarity index 100% rename from public/robots.txt rename to apps/client/public/robots.txt diff --git a/setupProxy.tsx b/apps/client/setupProxy.tsx similarity index 100% rename from setupProxy.tsx rename to apps/client/setupProxy.tsx diff --git a/src/components/Accounts/AccountMultiSelect.tsx b/apps/client/src/components/Accounts/AccountMultiSelect.tsx similarity index 100% rename from src/components/Accounts/AccountMultiSelect.tsx rename to apps/client/src/components/Accounts/AccountMultiSelect.tsx diff --git a/src/components/Accounts/AccountsMultiSelect.tsx b/apps/client/src/components/Accounts/AccountsMultiSelect.tsx similarity index 100% rename from src/components/Accounts/AccountsMultiSelect.tsx rename to apps/client/src/components/Accounts/AccountsMultiSelect.tsx diff --git a/src/components/Accounts/AccountsSelectList.tsx b/apps/client/src/components/Accounts/AccountsSelectList.tsx similarity index 100% rename from src/components/Accounts/AccountsSelectList.tsx rename to apps/client/src/components/Accounts/AccountsSelectList.tsx diff --git a/src/components/Accounts/AccountsSuggestField.tsx b/apps/client/src/components/Accounts/AccountsSuggestField.tsx similarity index 100% rename from src/components/Accounts/AccountsSuggestField.tsx rename to apps/client/src/components/Accounts/AccountsSuggestField.tsx diff --git a/src/components/Accounts/AccountsTypesSelect.tsx b/apps/client/src/components/Accounts/AccountsTypesSelect.tsx similarity index 100% rename from src/components/Accounts/AccountsTypesSelect.tsx rename to apps/client/src/components/Accounts/AccountsTypesSelect.tsx diff --git a/src/components/Accounts/index.tsx b/apps/client/src/components/Accounts/index.tsx similarity index 100% rename from src/components/Accounts/index.tsx rename to apps/client/src/components/Accounts/index.tsx diff --git a/src/components/AdvancedFilter/AdvancedFilter.schema.tsx b/apps/client/src/components/AdvancedFilter/AdvancedFilter.schema.tsx similarity index 100% rename from src/components/AdvancedFilter/AdvancedFilter.schema.tsx rename to apps/client/src/components/AdvancedFilter/AdvancedFilter.schema.tsx diff --git a/src/components/AdvancedFilter/AdvancedFilterCompatatorField.tsx b/apps/client/src/components/AdvancedFilter/AdvancedFilterCompatatorField.tsx similarity index 100% rename from src/components/AdvancedFilter/AdvancedFilterCompatatorField.tsx rename to apps/client/src/components/AdvancedFilter/AdvancedFilterCompatatorField.tsx diff --git a/src/components/AdvancedFilter/AdvancedFilterDropdown.tsx b/apps/client/src/components/AdvancedFilter/AdvancedFilterDropdown.tsx similarity index 100% rename from src/components/AdvancedFilter/AdvancedFilterDropdown.tsx rename to apps/client/src/components/AdvancedFilter/AdvancedFilterDropdown.tsx diff --git a/src/components/AdvancedFilter/AdvancedFilterDropdownContext.tsx b/apps/client/src/components/AdvancedFilter/AdvancedFilterDropdownContext.tsx similarity index 100% rename from src/components/AdvancedFilter/AdvancedFilterDropdownContext.tsx rename to apps/client/src/components/AdvancedFilter/AdvancedFilterDropdownContext.tsx diff --git a/src/components/AdvancedFilter/AdvancedFilterPopover.tsx b/apps/client/src/components/AdvancedFilter/AdvancedFilterPopover.tsx similarity index 100% rename from src/components/AdvancedFilter/AdvancedFilterPopover.tsx rename to apps/client/src/components/AdvancedFilter/AdvancedFilterPopover.tsx diff --git a/src/components/AdvancedFilter/AdvancedFilterValueField.tsx b/apps/client/src/components/AdvancedFilter/AdvancedFilterValueField.tsx similarity index 100% rename from src/components/AdvancedFilter/AdvancedFilterValueField.tsx rename to apps/client/src/components/AdvancedFilter/AdvancedFilterValueField.tsx diff --git a/src/components/AdvancedFilter/components.tsx b/apps/client/src/components/AdvancedFilter/components.tsx similarity index 100% rename from src/components/AdvancedFilter/components.tsx rename to apps/client/src/components/AdvancedFilter/components.tsx diff --git a/src/components/AdvancedFilter/interfaces.ts b/apps/client/src/components/AdvancedFilter/interfaces.ts similarity index 100% rename from src/components/AdvancedFilter/interfaces.ts rename to apps/client/src/components/AdvancedFilter/interfaces.ts diff --git a/src/components/AdvancedFilter/utils.tsx b/apps/client/src/components/AdvancedFilter/utils.tsx similarity index 100% rename from src/components/AdvancedFilter/utils.tsx rename to apps/client/src/components/AdvancedFilter/utils.tsx diff --git a/src/components/Alert/index.tsx b/apps/client/src/components/Alert/index.tsx similarity index 100% rename from src/components/Alert/index.tsx rename to apps/client/src/components/Alert/index.tsx diff --git a/src/components/App.tsx b/apps/client/src/components/App.tsx similarity index 100% rename from src/components/App.tsx rename to apps/client/src/components/App.tsx diff --git a/src/components/AppIntlLoader.tsx b/apps/client/src/components/AppIntlLoader.tsx similarity index 100% rename from src/components/AppIntlLoader.tsx rename to apps/client/src/components/AppIntlLoader.tsx diff --git a/src/components/AppIntlProvider.tsx b/apps/client/src/components/AppIntlProvider.tsx similarity index 100% rename from src/components/AppIntlProvider.tsx rename to apps/client/src/components/AppIntlProvider.tsx diff --git a/src/components/AppToaster/index.tsx b/apps/client/src/components/AppToaster/index.tsx similarity index 100% rename from src/components/AppToaster/index.tsx rename to apps/client/src/components/AppToaster/index.tsx diff --git a/src/components/Authentication.tsx b/apps/client/src/components/Authentication.tsx similarity index 100% rename from src/components/Authentication.tsx rename to apps/client/src/components/Authentication.tsx diff --git a/src/components/AvaterCell.tsx b/apps/client/src/components/AvaterCell.tsx similarity index 100% rename from src/components/AvaterCell.tsx rename to apps/client/src/components/AvaterCell.tsx diff --git a/src/components/BankAccounts/index.tsx b/apps/client/src/components/BankAccounts/index.tsx similarity index 100% rename from src/components/BankAccounts/index.tsx rename to apps/client/src/components/BankAccounts/index.tsx diff --git a/src/components/Branches/BranchMultiSelect.tsx b/apps/client/src/components/Branches/BranchMultiSelect.tsx similarity index 100% rename from src/components/Branches/BranchMultiSelect.tsx rename to apps/client/src/components/Branches/BranchMultiSelect.tsx diff --git a/src/components/Branches/BranchSelect.tsx b/apps/client/src/components/Branches/BranchSelect.tsx similarity index 100% rename from src/components/Branches/BranchSelect.tsx rename to apps/client/src/components/Branches/BranchSelect.tsx diff --git a/src/components/Branches/BranchSuggestField.tsx b/apps/client/src/components/Branches/BranchSuggestField.tsx similarity index 100% rename from src/components/Branches/BranchSuggestField.tsx rename to apps/client/src/components/Branches/BranchSuggestField.tsx diff --git a/src/components/Branches/index.tsx b/apps/client/src/components/Branches/index.tsx similarity index 100% rename from src/components/Branches/index.tsx rename to apps/client/src/components/Branches/index.tsx diff --git a/src/components/Button/ButtonLink.tsx b/apps/client/src/components/Button/ButtonLink.tsx similarity index 100% rename from src/components/Button/ButtonLink.tsx rename to apps/client/src/components/Button/ButtonLink.tsx diff --git a/src/components/Button/index.tsx b/apps/client/src/components/Button/index.tsx similarity index 100% rename from src/components/Button/index.tsx rename to apps/client/src/components/Button/index.tsx diff --git a/src/components/Card/index.tsx b/apps/client/src/components/Card/index.tsx similarity index 100% rename from src/components/Card/index.tsx rename to apps/client/src/components/Card/index.tsx diff --git a/src/components/CommercialDoc/index.tsx b/apps/client/src/components/CommercialDoc/index.tsx similarity index 100% rename from src/components/CommercialDoc/index.tsx rename to apps/client/src/components/CommercialDoc/index.tsx diff --git a/src/components/Contacts/ContactSelecetList.tsx b/apps/client/src/components/Contacts/ContactSelecetList.tsx similarity index 100% rename from src/components/Contacts/ContactSelecetList.tsx rename to apps/client/src/components/Contacts/ContactSelecetList.tsx diff --git a/src/components/Contacts/ContactSelectField.tsx b/apps/client/src/components/Contacts/ContactSelectField.tsx similarity index 100% rename from src/components/Contacts/ContactSelectField.tsx rename to apps/client/src/components/Contacts/ContactSelectField.tsx diff --git a/src/components/Contacts/ContactsMultiSelect.tsx b/apps/client/src/components/Contacts/ContactsMultiSelect.tsx similarity index 100% rename from src/components/Contacts/ContactsMultiSelect.tsx rename to apps/client/src/components/Contacts/ContactsMultiSelect.tsx diff --git a/src/components/Contacts/ContactsSuggestField.tsx b/apps/client/src/components/Contacts/ContactsSuggestField.tsx similarity index 100% rename from src/components/Contacts/ContactsSuggestField.tsx rename to apps/client/src/components/Contacts/ContactsSuggestField.tsx diff --git a/src/components/Contacts/index.tsx b/apps/client/src/components/Contacts/index.tsx similarity index 100% rename from src/components/Contacts/index.tsx rename to apps/client/src/components/Contacts/index.tsx diff --git a/src/components/Contacts/utils.tsx b/apps/client/src/components/Contacts/utils.tsx similarity index 100% rename from src/components/Contacts/utils.tsx rename to apps/client/src/components/Contacts/utils.tsx diff --git a/src/components/ContextMenu.tsx b/apps/client/src/components/ContextMenu.tsx similarity index 100% rename from src/components/ContextMenu.tsx rename to apps/client/src/components/ContextMenu.tsx diff --git a/src/components/Currencies/BaseCurrency.tsx b/apps/client/src/components/Currencies/BaseCurrency.tsx similarity index 100% rename from src/components/Currencies/BaseCurrency.tsx rename to apps/client/src/components/Currencies/BaseCurrency.tsx diff --git a/src/components/Currencies/CurrenciesSelectList.tsx b/apps/client/src/components/Currencies/CurrenciesSelectList.tsx similarity index 100% rename from src/components/Currencies/CurrenciesSelectList.tsx rename to apps/client/src/components/Currencies/CurrenciesSelectList.tsx diff --git a/src/components/Currencies/CurrencySelect.tsx b/apps/client/src/components/Currencies/CurrencySelect.tsx similarity index 100% rename from src/components/Currencies/CurrencySelect.tsx rename to apps/client/src/components/Currencies/CurrencySelect.tsx diff --git a/src/components/Currencies/CurrencySelectList.tsx b/apps/client/src/components/Currencies/CurrencySelectList.tsx similarity index 100% rename from src/components/Currencies/CurrencySelectList.tsx rename to apps/client/src/components/Currencies/CurrencySelectList.tsx diff --git a/src/components/Currencies/index.tsx b/apps/client/src/components/Currencies/index.tsx similarity index 100% rename from src/components/Currencies/index.tsx rename to apps/client/src/components/Currencies/index.tsx diff --git a/src/components/Customers/CustomerDrawerLink.tsx b/apps/client/src/components/Customers/CustomerDrawerLink.tsx similarity index 100% rename from src/components/Customers/CustomerDrawerLink.tsx rename to apps/client/src/components/Customers/CustomerDrawerLink.tsx diff --git a/src/components/Customers/CustomerSelectField.tsx b/apps/client/src/components/Customers/CustomerSelectField.tsx similarity index 100% rename from src/components/Customers/CustomerSelectField.tsx rename to apps/client/src/components/Customers/CustomerSelectField.tsx diff --git a/src/components/Customers/index.tsx b/apps/client/src/components/Customers/index.tsx similarity index 100% rename from src/components/Customers/index.tsx rename to apps/client/src/components/Customers/index.tsx diff --git a/src/components/Customers/utils.tsx b/apps/client/src/components/Customers/utils.tsx similarity index 100% rename from src/components/Customers/utils.tsx rename to apps/client/src/components/Customers/utils.tsx diff --git a/src/components/Dashboard/BigcapitalLoading.tsx b/apps/client/src/components/Dashboard/BigcapitalLoading.tsx similarity index 100% rename from src/components/Dashboard/BigcapitalLoading.tsx rename to apps/client/src/components/Dashboard/BigcapitalLoading.tsx diff --git a/src/components/Dashboard/Dashboard.tsx b/apps/client/src/components/Dashboard/Dashboard.tsx similarity index 100% rename from src/components/Dashboard/Dashboard.tsx rename to apps/client/src/components/Dashboard/Dashboard.tsx diff --git a/src/components/Dashboard/DashboardAbilityProvider.tsx b/apps/client/src/components/Dashboard/DashboardAbilityProvider.tsx similarity index 100% rename from src/components/Dashboard/DashboardAbilityProvider.tsx rename to apps/client/src/components/Dashboard/DashboardAbilityProvider.tsx diff --git a/src/components/Dashboard/DashboardActionViewsList.tsx b/apps/client/src/components/Dashboard/DashboardActionViewsList.tsx similarity index 100% rename from src/components/Dashboard/DashboardActionViewsList.tsx rename to apps/client/src/components/Dashboard/DashboardActionViewsList.tsx diff --git a/src/components/Dashboard/DashboardActionsBar.tsx b/apps/client/src/components/Dashboard/DashboardActionsBar.tsx similarity index 100% rename from src/components/Dashboard/DashboardActionsBar.tsx rename to apps/client/src/components/Dashboard/DashboardActionsBar.tsx diff --git a/src/components/Dashboard/DashboardBackLink.tsx b/apps/client/src/components/Dashboard/DashboardBackLink.tsx similarity index 100% rename from src/components/Dashboard/DashboardBackLink.tsx rename to apps/client/src/components/Dashboard/DashboardBackLink.tsx diff --git a/src/components/Dashboard/DashboardBoot.tsx b/apps/client/src/components/Dashboard/DashboardBoot.tsx similarity index 100% rename from src/components/Dashboard/DashboardBoot.tsx rename to apps/client/src/components/Dashboard/DashboardBoot.tsx diff --git a/src/components/Dashboard/DashboardBreadcrumbs.tsx b/apps/client/src/components/Dashboard/DashboardBreadcrumbs.tsx similarity index 100% rename from src/components/Dashboard/DashboardBreadcrumbs.tsx rename to apps/client/src/components/Dashboard/DashboardBreadcrumbs.tsx diff --git a/src/components/Dashboard/DashboardCard.tsx b/apps/client/src/components/Dashboard/DashboardCard.tsx similarity index 100% rename from src/components/Dashboard/DashboardCard.tsx rename to apps/client/src/components/Dashboard/DashboardCard.tsx diff --git a/src/components/Dashboard/DashboardContent.tsx b/apps/client/src/components/Dashboard/DashboardContent.tsx similarity index 100% rename from src/components/Dashboard/DashboardContent.tsx rename to apps/client/src/components/Dashboard/DashboardContent.tsx diff --git a/src/components/Dashboard/DashboardContentRoute.tsx b/apps/client/src/components/Dashboard/DashboardContentRoute.tsx similarity index 100% rename from src/components/Dashboard/DashboardContentRoute.tsx rename to apps/client/src/components/Dashboard/DashboardContentRoute.tsx diff --git a/src/components/Dashboard/DashboardContentTable.tsx b/apps/client/src/components/Dashboard/DashboardContentTable.tsx similarity index 100% rename from src/components/Dashboard/DashboardContentTable.tsx rename to apps/client/src/components/Dashboard/DashboardContentTable.tsx diff --git a/src/components/Dashboard/DashboardErrorBoundary.tsx b/apps/client/src/components/Dashboard/DashboardErrorBoundary.tsx similarity index 100% rename from src/components/Dashboard/DashboardErrorBoundary.tsx rename to apps/client/src/components/Dashboard/DashboardErrorBoundary.tsx diff --git a/src/components/Dashboard/DashboardFilterButton.tsx b/apps/client/src/components/Dashboard/DashboardFilterButton.tsx similarity index 100% rename from src/components/Dashboard/DashboardFilterButton.tsx rename to apps/client/src/components/Dashboard/DashboardFilterButton.tsx diff --git a/src/components/Dashboard/DashboardFooter.tsx b/apps/client/src/components/Dashboard/DashboardFooter.tsx similarity index 100% rename from src/components/Dashboard/DashboardFooter.tsx rename to apps/client/src/components/Dashboard/DashboardFooter.tsx diff --git a/src/components/Dashboard/DashboardInsider.tsx b/apps/client/src/components/Dashboard/DashboardInsider.tsx similarity index 100% rename from src/components/Dashboard/DashboardInsider.tsx rename to apps/client/src/components/Dashboard/DashboardInsider.tsx diff --git a/src/components/Dashboard/DashboardLoadingIndicator.tsx b/apps/client/src/components/Dashboard/DashboardLoadingIndicator.tsx similarity index 100% rename from src/components/Dashboard/DashboardLoadingIndicator.tsx rename to apps/client/src/components/Dashboard/DashboardLoadingIndicator.tsx diff --git a/src/components/Dashboard/DashboardPage.tsx b/apps/client/src/components/Dashboard/DashboardPage.tsx similarity index 100% rename from src/components/Dashboard/DashboardPage.tsx rename to apps/client/src/components/Dashboard/DashboardPage.tsx diff --git a/src/components/Dashboard/DashboardPageContent.tsx b/apps/client/src/components/Dashboard/DashboardPageContent.tsx similarity index 100% rename from src/components/Dashboard/DashboardPageContent.tsx rename to apps/client/src/components/Dashboard/DashboardPageContent.tsx diff --git a/src/components/Dashboard/DashboardProvider.tsx b/apps/client/src/components/Dashboard/DashboardProvider.tsx similarity index 100% rename from src/components/Dashboard/DashboardProvider.tsx rename to apps/client/src/components/Dashboard/DashboardProvider.tsx diff --git a/src/components/Dashboard/DashboardRowsHeightButton/index.tsx b/apps/client/src/components/Dashboard/DashboardRowsHeightButton/index.tsx similarity index 100% rename from src/components/Dashboard/DashboardRowsHeightButton/index.tsx rename to apps/client/src/components/Dashboard/DashboardRowsHeightButton/index.tsx diff --git a/src/components/Dashboard/DashboardRowsHeightButton/style.module.scss b/apps/client/src/components/Dashboard/DashboardRowsHeightButton/style.module.scss similarity index 100% rename from src/components/Dashboard/DashboardRowsHeightButton/style.module.scss rename to apps/client/src/components/Dashboard/DashboardRowsHeightButton/style.module.scss diff --git a/src/components/Dashboard/DashboardSplitePane.tsx b/apps/client/src/components/Dashboard/DashboardSplitePane.tsx similarity index 100% rename from src/components/Dashboard/DashboardSplitePane.tsx rename to apps/client/src/components/Dashboard/DashboardSplitePane.tsx diff --git a/src/components/Dashboard/DashboardThemeProvider.tsx b/apps/client/src/components/Dashboard/DashboardThemeProvider.tsx similarity index 100% rename from src/components/Dashboard/DashboardThemeProvider.tsx rename to apps/client/src/components/Dashboard/DashboardThemeProvider.tsx diff --git a/src/components/Dashboard/DashboardTopbar.tsx b/apps/client/src/components/Dashboard/DashboardTopbar.tsx similarity index 100% rename from src/components/Dashboard/DashboardTopbar.tsx rename to apps/client/src/components/Dashboard/DashboardTopbar.tsx diff --git a/src/components/Dashboard/DashboardViewsTabs.tsx b/apps/client/src/components/Dashboard/DashboardViewsTabs.tsx similarity index 100% rename from src/components/Dashboard/DashboardViewsTabs.tsx rename to apps/client/src/components/Dashboard/DashboardViewsTabs.tsx diff --git a/src/components/Dashboard/GlobalHotkeys.tsx b/apps/client/src/components/Dashboard/GlobalHotkeys.tsx similarity index 100% rename from src/components/Dashboard/GlobalHotkeys.tsx rename to apps/client/src/components/Dashboard/GlobalHotkeys.tsx diff --git a/src/components/Dashboard/PrivatePages.tsx b/apps/client/src/components/Dashboard/PrivatePages.tsx similarity index 100% rename from src/components/Dashboard/PrivatePages.tsx rename to apps/client/src/components/Dashboard/PrivatePages.tsx diff --git a/src/components/Dashboard/PrivatePagesProvider.tsx b/apps/client/src/components/Dashboard/PrivatePagesProvider.tsx similarity index 100% rename from src/components/Dashboard/PrivatePagesProvider.tsx rename to apps/client/src/components/Dashboard/PrivatePagesProvider.tsx diff --git a/src/components/Dashboard/SplashScreen.tsx b/apps/client/src/components/Dashboard/SplashScreen.tsx similarity index 100% rename from src/components/Dashboard/SplashScreen.tsx rename to apps/client/src/components/Dashboard/SplashScreen.tsx diff --git a/src/components/Dashboard/TopbarUser.tsx b/apps/client/src/components/Dashboard/TopbarUser.tsx similarity index 100% rename from src/components/Dashboard/TopbarUser.tsx rename to apps/client/src/components/Dashboard/TopbarUser.tsx diff --git a/src/components/Dashboard/index.tsx b/apps/client/src/components/Dashboard/index.tsx similarity index 100% rename from src/components/Dashboard/index.tsx rename to apps/client/src/components/Dashboard/index.tsx diff --git a/src/components/DataTableCells/AccountsListFieldCell.tsx b/apps/client/src/components/DataTableCells/AccountsListFieldCell.tsx similarity index 100% rename from src/components/DataTableCells/AccountsListFieldCell.tsx rename to apps/client/src/components/DataTableCells/AccountsListFieldCell.tsx diff --git a/src/components/DataTableCells/BranchesListFieldCell.tsx b/apps/client/src/components/DataTableCells/BranchesListFieldCell.tsx similarity index 100% rename from src/components/DataTableCells/BranchesListFieldCell.tsx rename to apps/client/src/components/DataTableCells/BranchesListFieldCell.tsx diff --git a/src/components/DataTableCells/CheckBoxFieldCell.tsx b/apps/client/src/components/DataTableCells/CheckBoxFieldCell.tsx similarity index 100% rename from src/components/DataTableCells/CheckBoxFieldCell.tsx rename to apps/client/src/components/DataTableCells/CheckBoxFieldCell.tsx diff --git a/src/components/DataTableCells/ContactsListFieldCell.tsx b/apps/client/src/components/DataTableCells/ContactsListFieldCell.tsx similarity index 100% rename from src/components/DataTableCells/ContactsListFieldCell.tsx rename to apps/client/src/components/DataTableCells/ContactsListFieldCell.tsx diff --git a/src/components/DataTableCells/DivFieldCell.tsx b/apps/client/src/components/DataTableCells/DivFieldCell.tsx similarity index 100% rename from src/components/DataTableCells/DivFieldCell.tsx rename to apps/client/src/components/DataTableCells/DivFieldCell.tsx diff --git a/src/components/DataTableCells/InputGroupCell.tsx b/apps/client/src/components/DataTableCells/InputGroupCell.tsx similarity index 100% rename from src/components/DataTableCells/InputGroupCell.tsx rename to apps/client/src/components/DataTableCells/InputGroupCell.tsx diff --git a/src/components/DataTableCells/ItemsListCell.tsx b/apps/client/src/components/DataTableCells/ItemsListCell.tsx similarity index 100% rename from src/components/DataTableCells/ItemsListCell.tsx rename to apps/client/src/components/DataTableCells/ItemsListCell.tsx diff --git a/src/components/DataTableCells/MoneyFieldCell.tsx b/apps/client/src/components/DataTableCells/MoneyFieldCell.tsx similarity index 100% rename from src/components/DataTableCells/MoneyFieldCell.tsx rename to apps/client/src/components/DataTableCells/MoneyFieldCell.tsx diff --git a/src/components/DataTableCells/NumericInputCell.tsx b/apps/client/src/components/DataTableCells/NumericInputCell.tsx similarity index 100% rename from src/components/DataTableCells/NumericInputCell.tsx rename to apps/client/src/components/DataTableCells/NumericInputCell.tsx diff --git a/src/components/DataTableCells/PaymentReceiveListFieldCell.tsx b/apps/client/src/components/DataTableCells/PaymentReceiveListFieldCell.tsx similarity index 100% rename from src/components/DataTableCells/PaymentReceiveListFieldCell.tsx rename to apps/client/src/components/DataTableCells/PaymentReceiveListFieldCell.tsx diff --git a/src/components/DataTableCells/PercentFieldCell.tsx b/apps/client/src/components/DataTableCells/PercentFieldCell.tsx similarity index 100% rename from src/components/DataTableCells/PercentFieldCell.tsx rename to apps/client/src/components/DataTableCells/PercentFieldCell.tsx diff --git a/src/components/DataTableCells/ProjectBillableEntriesCell.tsx b/apps/client/src/components/DataTableCells/ProjectBillableEntriesCell.tsx similarity index 100% rename from src/components/DataTableCells/ProjectBillableEntriesCell.tsx rename to apps/client/src/components/DataTableCells/ProjectBillableEntriesCell.tsx diff --git a/src/components/DataTableCells/ProjectsListFieldCell.tsx b/apps/client/src/components/DataTableCells/ProjectsListFieldCell.tsx similarity index 100% rename from src/components/DataTableCells/ProjectsListFieldCell.tsx rename to apps/client/src/components/DataTableCells/ProjectsListFieldCell.tsx diff --git a/src/components/DataTableCells/SwitchFieldCell.tsx b/apps/client/src/components/DataTableCells/SwitchFieldCell.tsx similarity index 100% rename from src/components/DataTableCells/SwitchFieldCell.tsx rename to apps/client/src/components/DataTableCells/SwitchFieldCell.tsx diff --git a/src/components/DataTableCells/TextAreaCell.tsx b/apps/client/src/components/DataTableCells/TextAreaCell.tsx similarity index 100% rename from src/components/DataTableCells/TextAreaCell.tsx rename to apps/client/src/components/DataTableCells/TextAreaCell.tsx diff --git a/src/components/DataTableCells/TextOverviewTooltipCell.tsx b/apps/client/src/components/DataTableCells/TextOverviewTooltipCell.tsx similarity index 100% rename from src/components/DataTableCells/TextOverviewTooltipCell.tsx rename to apps/client/src/components/DataTableCells/TextOverviewTooltipCell.tsx diff --git a/src/components/DataTableCells/index.tsx b/apps/client/src/components/DataTableCells/index.tsx similarity index 100% rename from src/components/DataTableCells/index.tsx rename to apps/client/src/components/DataTableCells/index.tsx diff --git a/src/components/Datatable/CellForceWidth.tsx b/apps/client/src/components/Datatable/CellForceWidth.tsx similarity index 100% rename from src/components/Datatable/CellForceWidth.tsx rename to apps/client/src/components/Datatable/CellForceWidth.tsx diff --git a/src/components/Datatable/Cells.tsx b/apps/client/src/components/Datatable/Cells.tsx similarity index 100% rename from src/components/Datatable/Cells.tsx rename to apps/client/src/components/Datatable/Cells.tsx diff --git a/src/components/Datatable/DataTable.tsx b/apps/client/src/components/Datatable/DataTable.tsx similarity index 100% rename from src/components/Datatable/DataTable.tsx rename to apps/client/src/components/Datatable/DataTable.tsx diff --git a/src/components/Datatable/DatatableEditable.tsx b/apps/client/src/components/Datatable/DatatableEditable.tsx similarity index 100% rename from src/components/Datatable/DatatableEditable.tsx rename to apps/client/src/components/Datatable/DatatableEditable.tsx diff --git a/src/components/Datatable/Pagination.tsx b/apps/client/src/components/Datatable/Pagination.tsx similarity index 100% rename from src/components/Datatable/Pagination.tsx rename to apps/client/src/components/Datatable/Pagination.tsx diff --git a/src/components/Datatable/TableBody.tsx b/apps/client/src/components/Datatable/TableBody.tsx similarity index 100% rename from src/components/Datatable/TableBody.tsx rename to apps/client/src/components/Datatable/TableBody.tsx diff --git a/src/components/Datatable/TableCell.tsx b/apps/client/src/components/Datatable/TableCell.tsx similarity index 100% rename from src/components/Datatable/TableCell.tsx rename to apps/client/src/components/Datatable/TableCell.tsx diff --git a/src/components/Datatable/TableContext.tsx b/apps/client/src/components/Datatable/TableContext.tsx similarity index 100% rename from src/components/Datatable/TableContext.tsx rename to apps/client/src/components/Datatable/TableContext.tsx diff --git a/src/components/Datatable/TableFastCell.tsx b/apps/client/src/components/Datatable/TableFastCell.tsx similarity index 100% rename from src/components/Datatable/TableFastCell.tsx rename to apps/client/src/components/Datatable/TableFastCell.tsx diff --git a/src/components/Datatable/TableFooter.tsx b/apps/client/src/components/Datatable/TableFooter.tsx similarity index 100% rename from src/components/Datatable/TableFooter.tsx rename to apps/client/src/components/Datatable/TableFooter.tsx diff --git a/src/components/Datatable/TableHeader.tsx b/apps/client/src/components/Datatable/TableHeader.tsx similarity index 100% rename from src/components/Datatable/TableHeader.tsx rename to apps/client/src/components/Datatable/TableHeader.tsx diff --git a/src/components/Datatable/TableHeaderSkeleton.tsx b/apps/client/src/components/Datatable/TableHeaderSkeleton.tsx similarity index 100% rename from src/components/Datatable/TableHeaderSkeleton.tsx rename to apps/client/src/components/Datatable/TableHeaderSkeleton.tsx diff --git a/src/components/Datatable/TableIndeterminateCheckboxHeader.tsx b/apps/client/src/components/Datatable/TableIndeterminateCheckboxHeader.tsx similarity index 100% rename from src/components/Datatable/TableIndeterminateCheckboxHeader.tsx rename to apps/client/src/components/Datatable/TableIndeterminateCheckboxHeader.tsx diff --git a/src/components/Datatable/TableIndeterminateCheckboxRow.tsx b/apps/client/src/components/Datatable/TableIndeterminateCheckboxRow.tsx similarity index 100% rename from src/components/Datatable/TableIndeterminateCheckboxRow.tsx rename to apps/client/src/components/Datatable/TableIndeterminateCheckboxRow.tsx diff --git a/src/components/Datatable/TableLoading.tsx b/apps/client/src/components/Datatable/TableLoading.tsx similarity index 100% rename from src/components/Datatable/TableLoading.tsx rename to apps/client/src/components/Datatable/TableLoading.tsx diff --git a/src/components/Datatable/TableNoResultsRow.tsx b/apps/client/src/components/Datatable/TableNoResultsRow.tsx similarity index 100% rename from src/components/Datatable/TableNoResultsRow.tsx rename to apps/client/src/components/Datatable/TableNoResultsRow.tsx diff --git a/src/components/Datatable/TablePage.tsx b/apps/client/src/components/Datatable/TablePage.tsx similarity index 100% rename from src/components/Datatable/TablePage.tsx rename to apps/client/src/components/Datatable/TablePage.tsx diff --git a/src/components/Datatable/TablePagination.tsx b/apps/client/src/components/Datatable/TablePagination.tsx similarity index 100% rename from src/components/Datatable/TablePagination.tsx rename to apps/client/src/components/Datatable/TablePagination.tsx diff --git a/src/components/Datatable/TableRow.tsx b/apps/client/src/components/Datatable/TableRow.tsx similarity index 100% rename from src/components/Datatable/TableRow.tsx rename to apps/client/src/components/Datatable/TableRow.tsx diff --git a/src/components/Datatable/TableRows.tsx b/apps/client/src/components/Datatable/TableRows.tsx similarity index 100% rename from src/components/Datatable/TableRows.tsx rename to apps/client/src/components/Datatable/TableRows.tsx diff --git a/src/components/Datatable/TableSkeletonRows.tsx b/apps/client/src/components/Datatable/TableSkeletonRows.tsx similarity index 100% rename from src/components/Datatable/TableSkeletonRows.tsx rename to apps/client/src/components/Datatable/TableSkeletonRows.tsx diff --git a/src/components/Datatable/TableTBody.tsx b/apps/client/src/components/Datatable/TableTBody.tsx similarity index 100% rename from src/components/Datatable/TableTBody.tsx rename to apps/client/src/components/Datatable/TableTBody.tsx diff --git a/src/components/Datatable/TableVirtualizedRows.tsx b/apps/client/src/components/Datatable/TableVirtualizedRows.tsx similarity index 100% rename from src/components/Datatable/TableVirtualizedRows.tsx rename to apps/client/src/components/Datatable/TableVirtualizedRows.tsx diff --git a/src/components/Datatable/TableWrapper.tsx b/apps/client/src/components/Datatable/TableWrapper.tsx similarity index 100% rename from src/components/Datatable/TableWrapper.tsx rename to apps/client/src/components/Datatable/TableWrapper.tsx diff --git a/src/components/Datatable/index.tsx b/apps/client/src/components/Datatable/index.tsx similarity index 100% rename from src/components/Datatable/index.tsx rename to apps/client/src/components/Datatable/index.tsx diff --git a/src/components/Datatable/utils.tsx b/apps/client/src/components/Datatable/utils.tsx similarity index 100% rename from src/components/Datatable/utils.tsx rename to apps/client/src/components/Datatable/utils.tsx diff --git a/src/components/Details/index.tsx b/apps/client/src/components/Details/index.tsx similarity index 100% rename from src/components/Details/index.tsx rename to apps/client/src/components/Details/index.tsx diff --git a/src/components/Dialog/Dialog.tsx b/apps/client/src/components/Dialog/Dialog.tsx similarity index 100% rename from src/components/Dialog/Dialog.tsx rename to apps/client/src/components/Dialog/Dialog.tsx diff --git a/src/components/Dialog/DialogContent.tsx b/apps/client/src/components/Dialog/DialogContent.tsx similarity index 100% rename from src/components/Dialog/DialogContent.tsx rename to apps/client/src/components/Dialog/DialogContent.tsx diff --git a/src/components/Dialog/DialogFooter.tsx b/apps/client/src/components/Dialog/DialogFooter.tsx similarity index 100% rename from src/components/Dialog/DialogFooter.tsx rename to apps/client/src/components/Dialog/DialogFooter.tsx diff --git a/src/components/Dialog/DialogFooterActions.tsx b/apps/client/src/components/Dialog/DialogFooterActions.tsx similarity index 100% rename from src/components/Dialog/DialogFooterActions.tsx rename to apps/client/src/components/Dialog/DialogFooterActions.tsx diff --git a/src/components/Dialog/DialogSuspense.tsx b/apps/client/src/components/Dialog/DialogSuspense.tsx similarity index 100% rename from src/components/Dialog/DialogSuspense.tsx rename to apps/client/src/components/Dialog/DialogSuspense.tsx diff --git a/src/components/Dialog/index.tsx b/apps/client/src/components/Dialog/index.tsx similarity index 100% rename from src/components/Dialog/index.tsx rename to apps/client/src/components/Dialog/index.tsx diff --git a/src/components/DialogReduxConnect.tsx b/apps/client/src/components/DialogReduxConnect.tsx similarity index 100% rename from src/components/DialogReduxConnect.tsx rename to apps/client/src/components/DialogReduxConnect.tsx diff --git a/src/components/DialogsContainer.tsx b/apps/client/src/components/DialogsContainer.tsx similarity index 100% rename from src/components/DialogsContainer.tsx rename to apps/client/src/components/DialogsContainer.tsx diff --git a/src/components/Dragzone/index.tsx b/apps/client/src/components/Dragzone/index.tsx similarity index 100% rename from src/components/Dragzone/index.tsx rename to apps/client/src/components/Dragzone/index.tsx diff --git a/src/components/Drawer/Drawer.tsx b/apps/client/src/components/Drawer/Drawer.tsx similarity index 100% rename from src/components/Drawer/Drawer.tsx rename to apps/client/src/components/Drawer/Drawer.tsx diff --git a/src/components/Drawer/DrawerActionsBar.tsx b/apps/client/src/components/Drawer/DrawerActionsBar.tsx similarity index 100% rename from src/components/Drawer/DrawerActionsBar.tsx rename to apps/client/src/components/Drawer/DrawerActionsBar.tsx diff --git a/src/components/Drawer/DrawerBody.tsx b/apps/client/src/components/Drawer/DrawerBody.tsx similarity index 100% rename from src/components/Drawer/DrawerBody.tsx rename to apps/client/src/components/Drawer/DrawerBody.tsx diff --git a/src/components/Drawer/DrawerHeaderContent.tsx b/apps/client/src/components/Drawer/DrawerHeaderContent.tsx similarity index 100% rename from src/components/Drawer/DrawerHeaderContent.tsx rename to apps/client/src/components/Drawer/DrawerHeaderContent.tsx diff --git a/src/components/Drawer/DrawerInsider.tsx b/apps/client/src/components/Drawer/DrawerInsider.tsx similarity index 100% rename from src/components/Drawer/DrawerInsider.tsx rename to apps/client/src/components/Drawer/DrawerInsider.tsx diff --git a/src/components/Drawer/DrawerMainTabs.tsx b/apps/client/src/components/Drawer/DrawerMainTabs.tsx similarity index 100% rename from src/components/Drawer/DrawerMainTabs.tsx rename to apps/client/src/components/Drawer/DrawerMainTabs.tsx diff --git a/src/components/Drawer/DrawerProvider.tsx b/apps/client/src/components/Drawer/DrawerProvider.tsx similarity index 100% rename from src/components/Drawer/DrawerProvider.tsx rename to apps/client/src/components/Drawer/DrawerProvider.tsx diff --git a/src/components/Drawer/DrawerSuspense.tsx b/apps/client/src/components/Drawer/DrawerSuspense.tsx similarity index 100% rename from src/components/Drawer/DrawerSuspense.tsx rename to apps/client/src/components/Drawer/DrawerSuspense.tsx diff --git a/src/components/Drawer/index.ts b/apps/client/src/components/Drawer/index.ts similarity index 100% rename from src/components/Drawer/index.ts rename to apps/client/src/components/Drawer/index.ts diff --git a/src/components/DrawersContainer.tsx b/apps/client/src/components/DrawersContainer.tsx similarity index 100% rename from src/components/DrawersContainer.tsx rename to apps/client/src/components/DrawersContainer.tsx diff --git a/src/components/EmptyStatus/EmptyStatus.tsx b/apps/client/src/components/EmptyStatus/EmptyStatus.tsx similarity index 100% rename from src/components/EmptyStatus/EmptyStatus.tsx rename to apps/client/src/components/EmptyStatus/EmptyStatus.tsx diff --git a/src/components/EmptyStatus/index.ts b/apps/client/src/components/EmptyStatus/index.ts similarity index 100% rename from src/components/EmptyStatus/index.ts rename to apps/client/src/components/EmptyStatus/index.ts diff --git a/src/components/ErrorBoundary/index.tsx b/apps/client/src/components/ErrorBoundary/index.tsx similarity index 100% rename from src/components/ErrorBoundary/index.tsx rename to apps/client/src/components/ErrorBoundary/index.tsx diff --git a/src/components/ErrorMessage/index.tsx b/apps/client/src/components/ErrorMessage/index.tsx similarity index 100% rename from src/components/ErrorMessage/index.tsx rename to apps/client/src/components/ErrorMessage/index.tsx diff --git a/src/components/ExchangeRate/DetailExchangeRate.tsx b/apps/client/src/components/ExchangeRate/DetailExchangeRate.tsx similarity index 100% rename from src/components/ExchangeRate/DetailExchangeRate.tsx rename to apps/client/src/components/ExchangeRate/DetailExchangeRate.tsx diff --git a/src/components/ExchangeRate/ExchangeRateInput.tsx b/apps/client/src/components/ExchangeRate/ExchangeRateInput.tsx similarity index 100% rename from src/components/ExchangeRate/ExchangeRateInput.tsx rename to apps/client/src/components/ExchangeRate/ExchangeRateInput.tsx diff --git a/src/components/ExchangeRate/ExchangeRateMutedField.tsx b/apps/client/src/components/ExchangeRate/ExchangeRateMutedField.tsx similarity index 100% rename from src/components/ExchangeRate/ExchangeRateMutedField.tsx rename to apps/client/src/components/ExchangeRate/ExchangeRateMutedField.tsx diff --git a/src/components/ExchangeRate/index.tsx b/apps/client/src/components/ExchangeRate/index.tsx similarity index 100% rename from src/components/ExchangeRate/index.tsx rename to apps/client/src/components/ExchangeRate/index.tsx diff --git a/src/components/FeatureGuard/FeatureCan.tsx b/apps/client/src/components/FeatureGuard/FeatureCan.tsx similarity index 100% rename from src/components/FeatureGuard/FeatureCan.tsx rename to apps/client/src/components/FeatureGuard/FeatureCan.tsx diff --git a/src/components/FeatureGuard/index.tsx b/apps/client/src/components/FeatureGuard/index.tsx similarity index 100% rename from src/components/FeatureGuard/index.tsx rename to apps/client/src/components/FeatureGuard/index.tsx diff --git a/src/components/FeatureGuard/withFeatureCan.tsx b/apps/client/src/components/FeatureGuard/withFeatureCan.tsx similarity index 100% rename from src/components/FeatureGuard/withFeatureCan.tsx rename to apps/client/src/components/FeatureGuard/withFeatureCan.tsx diff --git a/src/components/FinancialReport/index.tsx b/apps/client/src/components/FinancialReport/index.tsx similarity index 100% rename from src/components/FinancialReport/index.tsx rename to apps/client/src/components/FinancialReport/index.tsx diff --git a/src/components/FinancialSheet/FinancialSheet.tsx b/apps/client/src/components/FinancialSheet/FinancialSheet.tsx similarity index 100% rename from src/components/FinancialSheet/FinancialSheet.tsx rename to apps/client/src/components/FinancialSheet/FinancialSheet.tsx diff --git a/src/components/FinancialSheet/FinancialSheetSkeleton.tsx b/apps/client/src/components/FinancialSheet/FinancialSheetSkeleton.tsx similarity index 100% rename from src/components/FinancialSheet/FinancialSheetSkeleton.tsx rename to apps/client/src/components/FinancialSheet/FinancialSheetSkeleton.tsx diff --git a/src/components/FinancialSheet/ReportDataTable.tsx b/apps/client/src/components/FinancialSheet/ReportDataTable.tsx similarity index 100% rename from src/components/FinancialSheet/ReportDataTable.tsx rename to apps/client/src/components/FinancialSheet/ReportDataTable.tsx diff --git a/src/components/FinancialSheet/StyledFinancialSheet.tsx b/apps/client/src/components/FinancialSheet/StyledFinancialSheet.tsx similarity index 100% rename from src/components/FinancialSheet/StyledFinancialSheet.tsx rename to apps/client/src/components/FinancialSheet/StyledFinancialSheet.tsx diff --git a/src/components/FinancialSheet/index.tsx b/apps/client/src/components/FinancialSheet/index.tsx similarity index 100% rename from src/components/FinancialSheet/index.tsx rename to apps/client/src/components/FinancialSheet/index.tsx diff --git a/src/components/FinancialStatement/index.tsx b/apps/client/src/components/FinancialStatement/index.tsx similarity index 100% rename from src/components/FinancialStatement/index.tsx rename to apps/client/src/components/FinancialStatement/index.tsx diff --git a/src/components/FlexGrid/Flex.style.tsx b/apps/client/src/components/FlexGrid/Flex.style.tsx similarity index 100% rename from src/components/FlexGrid/Flex.style.tsx rename to apps/client/src/components/FlexGrid/Flex.style.tsx diff --git a/src/components/FlexGrid/Flex.tsx b/apps/client/src/components/FlexGrid/Flex.tsx similarity index 100% rename from src/components/FlexGrid/Flex.tsx rename to apps/client/src/components/FlexGrid/Flex.tsx diff --git a/src/components/FlexGrid/FlexItem.style.tsx b/apps/client/src/components/FlexGrid/FlexItem.style.tsx similarity index 100% rename from src/components/FlexGrid/FlexItem.style.tsx rename to apps/client/src/components/FlexGrid/FlexItem.style.tsx diff --git a/src/components/FlexGrid/FlexItem.tsx b/apps/client/src/components/FlexGrid/FlexItem.tsx similarity index 100% rename from src/components/FlexGrid/FlexItem.tsx rename to apps/client/src/components/FlexGrid/FlexItem.tsx diff --git a/src/components/FlexGrid/index.ts b/apps/client/src/components/FlexGrid/index.ts similarity index 100% rename from src/components/FlexGrid/index.ts rename to apps/client/src/components/FlexGrid/index.ts diff --git a/src/components/FlexGrid/interfaces.ts b/apps/client/src/components/FlexGrid/interfaces.ts similarity index 100% rename from src/components/FlexGrid/interfaces.ts rename to apps/client/src/components/FlexGrid/interfaces.ts diff --git a/src/components/FormattedMessage/index.tsx b/apps/client/src/components/FormattedMessage/index.tsx similarity index 100% rename from src/components/FormattedMessage/index.tsx rename to apps/client/src/components/FormattedMessage/index.tsx diff --git a/src/components/Forms/BlueprintFormik.tsx b/apps/client/src/components/Forms/BlueprintFormik.tsx similarity index 100% rename from src/components/Forms/BlueprintFormik.tsx rename to apps/client/src/components/Forms/BlueprintFormik.tsx diff --git a/src/components/Forms/Checkbox.tsx b/apps/client/src/components/Forms/Checkbox.tsx similarity index 100% rename from src/components/Forms/Checkbox.tsx rename to apps/client/src/components/Forms/Checkbox.tsx diff --git a/src/components/Forms/FMoneyInputGroup.tsx b/apps/client/src/components/Forms/FMoneyInputGroup.tsx similarity index 100% rename from src/components/Forms/FMoneyInputGroup.tsx rename to apps/client/src/components/Forms/FMoneyInputGroup.tsx diff --git a/src/components/Forms/FormObserver.tsx b/apps/client/src/components/Forms/FormObserver.tsx similarity index 100% rename from src/components/Forms/FormObserver.tsx rename to apps/client/src/components/Forms/FormObserver.tsx diff --git a/src/components/Forms/FormikObserver.tsx b/apps/client/src/components/Forms/FormikObserver.tsx similarity index 100% rename from src/components/Forms/FormikObserver.tsx rename to apps/client/src/components/Forms/FormikObserver.tsx diff --git a/src/components/Forms/InputPrepend.tsx b/apps/client/src/components/Forms/InputPrepend.tsx similarity index 100% rename from src/components/Forms/InputPrepend.tsx rename to apps/client/src/components/Forms/InputPrepend.tsx diff --git a/src/components/Forms/InputPrependButton.tsx b/apps/client/src/components/Forms/InputPrependButton.tsx similarity index 100% rename from src/components/Forms/InputPrependButton.tsx rename to apps/client/src/components/Forms/InputPrependButton.tsx diff --git a/src/components/Forms/InputPrependText.tsx b/apps/client/src/components/Forms/InputPrependText.tsx similarity index 100% rename from src/components/Forms/InputPrependText.tsx rename to apps/client/src/components/Forms/InputPrependText.tsx diff --git a/src/components/Forms/MoneyInputGroup/CurrencyInputProps.ts b/apps/client/src/components/Forms/MoneyInputGroup/CurrencyInputProps.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/CurrencyInputProps.ts rename to apps/client/src/components/Forms/MoneyInputGroup/CurrencyInputProps.ts diff --git a/src/components/Forms/MoneyInputGroup/index.tsx b/apps/client/src/components/Forms/MoneyInputGroup/index.tsx similarity index 100% rename from src/components/Forms/MoneyInputGroup/index.tsx rename to apps/client/src/components/Forms/MoneyInputGroup/index.tsx diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/addSeparators.spec.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/addSeparators.spec.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/__tests__/addSeparators.spec.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/addSeparators.spec.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/cleanValue.spec.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/cleanValue.spec.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/__tests__/cleanValue.spec.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/cleanValue.spec.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/fixedDecimalValue.spec.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/fixedDecimalValue.spec.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/__tests__/fixedDecimalValue.spec.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/fixedDecimalValue.spec.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/formatValue.spec.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/formatValue.spec.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/__tests__/formatValue.spec.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/formatValue.spec.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/isNumber.spec.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/isNumber.spec.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/__tests__/isNumber.spec.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/isNumber.spec.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/padTrimValue.spec.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/padTrimValue.spec.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/__tests__/padTrimValue.spec.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/padTrimValue.spec.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/parseAbbrValue.spec.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/parseAbbrValue.spec.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/__tests__/parseAbbrValue.spec.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/parseAbbrValue.spec.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/removeInvalidChars.spec.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/removeInvalidChars.spec.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/__tests__/removeInvalidChars.spec.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/removeInvalidChars.spec.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/__tests__/removeSeparators.spec.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/removeSeparators.spec.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/__tests__/removeSeparators.spec.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/__tests__/removeSeparators.spec.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/addSeparators.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/addSeparators.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/addSeparators.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/addSeparators.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/cleanValue.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/cleanValue.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/cleanValue.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/cleanValue.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/escapeRegExp.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/escapeRegExp.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/escapeRegExp.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/escapeRegExp.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/fixedDecimalValue.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/fixedDecimalValue.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/fixedDecimalValue.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/fixedDecimalValue.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/formatValue.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/formatValue.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/formatValue.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/formatValue.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/index.tsx b/apps/client/src/components/Forms/MoneyInputGroup/utils/index.tsx similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/index.tsx rename to apps/client/src/components/Forms/MoneyInputGroup/utils/index.tsx diff --git a/src/components/Forms/MoneyInputGroup/utils/isNumber.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/isNumber.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/isNumber.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/isNumber.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/padTrimValue.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/padTrimValue.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/padTrimValue.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/padTrimValue.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/parseAbbrValue.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/parseAbbrValue.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/parseAbbrValue.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/parseAbbrValue.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/removeInvalidChars.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/removeInvalidChars.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/removeInvalidChars.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/removeInvalidChars.ts diff --git a/src/components/Forms/MoneyInputGroup/utils/removeSeparators.ts b/apps/client/src/components/Forms/MoneyInputGroup/utils/removeSeparators.ts similarity index 100% rename from src/components/Forms/MoneyInputGroup/utils/removeSeparators.ts rename to apps/client/src/components/Forms/MoneyInputGroup/utils/removeSeparators.ts diff --git a/src/components/Forms/index.tsx b/apps/client/src/components/Forms/index.tsx similarity index 100% rename from src/components/Forms/index.tsx rename to apps/client/src/components/Forms/index.tsx diff --git a/src/components/Grid/Col.tsx b/apps/client/src/components/Grid/Col.tsx similarity index 100% rename from src/components/Grid/Col.tsx rename to apps/client/src/components/Grid/Col.tsx diff --git a/src/components/Grid/Row.tsx b/apps/client/src/components/Grid/Row.tsx similarity index 100% rename from src/components/Grid/Row.tsx rename to apps/client/src/components/Grid/Row.tsx diff --git a/src/components/Grid/index.ts b/apps/client/src/components/Grid/index.ts similarity index 100% rename from src/components/Grid/index.ts rename to apps/client/src/components/Grid/index.ts diff --git a/src/components/Guards/EnsureOrganizationIsNotReady.tsx b/apps/client/src/components/Guards/EnsureOrganizationIsNotReady.tsx similarity index 100% rename from src/components/Guards/EnsureOrganizationIsNotReady.tsx rename to apps/client/src/components/Guards/EnsureOrganizationIsNotReady.tsx diff --git a/src/components/Guards/EnsureOrganizationIsReady.tsx b/apps/client/src/components/Guards/EnsureOrganizationIsReady.tsx similarity index 100% rename from src/components/Guards/EnsureOrganizationIsReady.tsx rename to apps/client/src/components/Guards/EnsureOrganizationIsReady.tsx diff --git a/src/components/Guards/EnsureSubscriptionIsActive.tsx b/apps/client/src/components/Guards/EnsureSubscriptionIsActive.tsx similarity index 100% rename from src/components/Guards/EnsureSubscriptionIsActive.tsx rename to apps/client/src/components/Guards/EnsureSubscriptionIsActive.tsx diff --git a/src/components/Guards/EnsureSubscriptionsIsActive.tsx b/apps/client/src/components/Guards/EnsureSubscriptionsIsActive.tsx similarity index 100% rename from src/components/Guards/EnsureSubscriptionsIsActive.tsx rename to apps/client/src/components/Guards/EnsureSubscriptionsIsActive.tsx diff --git a/src/components/Guards/EnsureSubscriptionsIsInactive.tsx b/apps/client/src/components/Guards/EnsureSubscriptionsIsInactive.tsx similarity index 100% rename from src/components/Guards/EnsureSubscriptionsIsInactive.tsx rename to apps/client/src/components/Guards/EnsureSubscriptionsIsInactive.tsx diff --git a/src/components/Guards/PrivateRoute.tsx b/apps/client/src/components/Guards/PrivateRoute.tsx similarity index 100% rename from src/components/Guards/PrivateRoute.tsx rename to apps/client/src/components/Guards/PrivateRoute.tsx diff --git a/src/components/Hint/FieldHint.tsx b/apps/client/src/components/Hint/FieldHint.tsx similarity index 100% rename from src/components/Hint/FieldHint.tsx rename to apps/client/src/components/Hint/FieldHint.tsx diff --git a/src/components/Hint/FieldRequiredHint.tsx b/apps/client/src/components/Hint/FieldRequiredHint.tsx similarity index 100% rename from src/components/Hint/FieldRequiredHint.tsx rename to apps/client/src/components/Hint/FieldRequiredHint.tsx diff --git a/src/components/Hint/RequiredHint.tsx b/apps/client/src/components/Hint/RequiredHint.tsx similarity index 100% rename from src/components/Hint/RequiredHint.tsx rename to apps/client/src/components/Hint/RequiredHint.tsx diff --git a/src/components/Hint/index.ts b/apps/client/src/components/Hint/index.ts similarity index 100% rename from src/components/Hint/index.ts rename to apps/client/src/components/Hint/index.ts diff --git a/src/components/Icon/index.tsx b/apps/client/src/components/Icon/index.tsx similarity index 100% rename from src/components/Icon/index.tsx rename to apps/client/src/components/Icon/index.tsx diff --git a/src/components/Indicator/CloudLoadingIndicator.tsx b/apps/client/src/components/Indicator/CloudLoadingIndicator.tsx similarity index 100% rename from src/components/Indicator/CloudLoadingIndicator.tsx rename to apps/client/src/components/Indicator/CloudLoadingIndicator.tsx diff --git a/src/components/Indicator/LoadingIndicator.tsx b/apps/client/src/components/Indicator/LoadingIndicator.tsx similarity index 100% rename from src/components/Indicator/LoadingIndicator.tsx rename to apps/client/src/components/Indicator/LoadingIndicator.tsx diff --git a/src/components/Indicator/index.ts b/apps/client/src/components/Indicator/index.ts similarity index 100% rename from src/components/Indicator/index.ts rename to apps/client/src/components/Indicator/index.ts diff --git a/src/components/IntersectionObserver/index.tsx b/apps/client/src/components/IntersectionObserver/index.tsx similarity index 100% rename from src/components/IntersectionObserver/index.tsx rename to apps/client/src/components/IntersectionObserver/index.tsx diff --git a/src/components/Items/ItemsListField.tsx b/apps/client/src/components/Items/ItemsListField.tsx similarity index 100% rename from src/components/Items/ItemsListField.tsx rename to apps/client/src/components/Items/ItemsListField.tsx diff --git a/src/components/Items/ItemsMultiSelect.tsx b/apps/client/src/components/Items/ItemsMultiSelect.tsx similarity index 100% rename from src/components/Items/ItemsMultiSelect.tsx rename to apps/client/src/components/Items/ItemsMultiSelect.tsx diff --git a/src/components/Items/ItemsSuggestField.tsx b/apps/client/src/components/Items/ItemsSuggestField.tsx similarity index 100% rename from src/components/Items/ItemsSuggestField.tsx rename to apps/client/src/components/Items/ItemsSuggestField.tsx diff --git a/src/components/Items/index.tsx b/apps/client/src/components/Items/index.tsx similarity index 100% rename from src/components/Items/index.tsx rename to apps/client/src/components/Items/index.tsx diff --git a/src/components/ItemsCategories/CategoriesSelectList.tsx b/apps/client/src/components/ItemsCategories/CategoriesSelectList.tsx similarity index 100% rename from src/components/ItemsCategories/CategoriesSelectList.tsx rename to apps/client/src/components/ItemsCategories/CategoriesSelectList.tsx diff --git a/src/components/ItemsCategories/index.tsx b/apps/client/src/components/ItemsCategories/index.tsx similarity index 100% rename from src/components/ItemsCategories/index.tsx rename to apps/client/src/components/ItemsCategories/index.tsx diff --git a/src/components/Layout/Box/Box.tsx b/apps/client/src/components/Layout/Box/Box.tsx similarity index 100% rename from src/components/Layout/Box/Box.tsx rename to apps/client/src/components/Layout/Box/Box.tsx diff --git a/src/components/Layout/Box/index.ts b/apps/client/src/components/Layout/Box/index.ts similarity index 100% rename from src/components/Layout/Box/index.ts rename to apps/client/src/components/Layout/Box/index.ts diff --git a/src/components/Layout/Group/Group.tsx b/apps/client/src/components/Layout/Group/Group.tsx similarity index 100% rename from src/components/Layout/Group/Group.tsx rename to apps/client/src/components/Layout/Group/Group.tsx diff --git a/src/components/Layout/Group/_utils.ts b/apps/client/src/components/Layout/Group/_utils.ts similarity index 100% rename from src/components/Layout/Group/_utils.ts rename to apps/client/src/components/Layout/Group/_utils.ts diff --git a/src/components/Layout/Group/index.ts b/apps/client/src/components/Layout/Group/index.ts similarity index 100% rename from src/components/Layout/Group/index.ts rename to apps/client/src/components/Layout/Group/index.ts diff --git a/src/components/Layout/Stack/Stack.tsx b/apps/client/src/components/Layout/Stack/Stack.tsx similarity index 100% rename from src/components/Layout/Stack/Stack.tsx rename to apps/client/src/components/Layout/Stack/Stack.tsx diff --git a/src/components/Layout/Stack/index.ts b/apps/client/src/components/Layout/Stack/index.ts similarity index 100% rename from src/components/Layout/Stack/index.ts rename to apps/client/src/components/Layout/Stack/index.ts diff --git a/src/components/Layout/index.ts b/apps/client/src/components/Layout/index.ts similarity index 100% rename from src/components/Layout/index.ts rename to apps/client/src/components/Layout/index.ts diff --git a/src/components/LazyLoader.tsx b/apps/client/src/components/LazyLoader.tsx similarity index 100% rename from src/components/LazyLoader.tsx rename to apps/client/src/components/LazyLoader.tsx diff --git a/src/components/MaterialProgressBar/index.tsx b/apps/client/src/components/MaterialProgressBar/index.tsx similarity index 100% rename from src/components/MaterialProgressBar/index.tsx rename to apps/client/src/components/MaterialProgressBar/index.tsx diff --git a/src/components/Menu/MenuItem.tsx b/apps/client/src/components/Menu/MenuItem.tsx similarity index 100% rename from src/components/Menu/MenuItem.tsx rename to apps/client/src/components/Menu/MenuItem.tsx diff --git a/src/components/Menu/MenuItemLabel.tsx b/apps/client/src/components/Menu/MenuItemLabel.tsx similarity index 100% rename from src/components/Menu/MenuItemLabel.tsx rename to apps/client/src/components/Menu/MenuItemLabel.tsx diff --git a/src/components/Menu/MenuItemNestedText.tsx b/apps/client/src/components/Menu/MenuItemNestedText.tsx similarity index 100% rename from src/components/Menu/MenuItemNestedText.tsx rename to apps/client/src/components/Menu/MenuItemNestedText.tsx diff --git a/src/components/Menu/index.ts b/apps/client/src/components/Menu/index.ts similarity index 100% rename from src/components/Menu/index.ts rename to apps/client/src/components/Menu/index.ts diff --git a/src/components/Money/Money.tsx b/apps/client/src/components/Money/Money.tsx similarity index 100% rename from src/components/Money/Money.tsx rename to apps/client/src/components/Money/Money.tsx diff --git a/src/components/MultiSelectTaggable/index.tsx b/apps/client/src/components/MultiSelectTaggable/index.tsx similarity index 100% rename from src/components/MultiSelectTaggable/index.tsx rename to apps/client/src/components/MultiSelectTaggable/index.tsx diff --git a/src/components/NProgress/AppProgress.tsx b/apps/client/src/components/NProgress/AppProgress.tsx similarity index 100% rename from src/components/NProgress/AppProgress.tsx rename to apps/client/src/components/NProgress/AppProgress.tsx diff --git a/src/components/NProgress/Bar.tsx b/apps/client/src/components/NProgress/Bar.tsx similarity index 100% rename from src/components/NProgress/Bar.tsx rename to apps/client/src/components/NProgress/Bar.tsx diff --git a/src/components/NProgress/Container.tsx b/apps/client/src/components/NProgress/Container.tsx similarity index 100% rename from src/components/NProgress/Container.tsx rename to apps/client/src/components/NProgress/Container.tsx diff --git a/src/components/NProgress/Progress.tsx b/apps/client/src/components/NProgress/Progress.tsx similarity index 100% rename from src/components/NProgress/Progress.tsx rename to apps/client/src/components/NProgress/Progress.tsx diff --git a/src/components/NProgress/Spinner.tsx b/apps/client/src/components/NProgress/Spinner.tsx similarity index 100% rename from src/components/NProgress/Spinner.tsx rename to apps/client/src/components/NProgress/Spinner.tsx diff --git a/src/components/NumberFormatDropdown/NumberFormatFields.tsx b/apps/client/src/components/NumberFormatDropdown/NumberFormatFields.tsx similarity index 100% rename from src/components/NumberFormatDropdown/NumberFormatFields.tsx rename to apps/client/src/components/NumberFormatDropdown/NumberFormatFields.tsx diff --git a/src/components/NumberFormatDropdown/NumberFormatFooter.tsx b/apps/client/src/components/NumberFormatDropdown/NumberFormatFooter.tsx similarity index 100% rename from src/components/NumberFormatDropdown/NumberFormatFooter.tsx rename to apps/client/src/components/NumberFormatDropdown/NumberFormatFooter.tsx diff --git a/src/components/NumberFormatDropdown/NumberFormats.schema.tsx b/apps/client/src/components/NumberFormatDropdown/NumberFormats.schema.tsx similarity index 100% rename from src/components/NumberFormatDropdown/NumberFormats.schema.tsx rename to apps/client/src/components/NumberFormatDropdown/NumberFormats.schema.tsx diff --git a/src/components/NumberFormatDropdown/index.tsx b/apps/client/src/components/NumberFormatDropdown/index.tsx similarity index 100% rename from src/components/NumberFormatDropdown/index.tsx rename to apps/client/src/components/NumberFormatDropdown/index.tsx diff --git a/src/components/PageForm/FormTopbar.tsx b/apps/client/src/components/PageForm/FormTopbar.tsx similarity index 100% rename from src/components/PageForm/FormTopbar.tsx rename to apps/client/src/components/PageForm/FormTopbar.tsx diff --git a/src/components/PageForm/PageFormBigNumber.tsx b/apps/client/src/components/PageForm/PageFormBigNumber.tsx similarity index 100% rename from src/components/PageForm/PageFormBigNumber.tsx rename to apps/client/src/components/PageForm/PageFormBigNumber.tsx diff --git a/src/components/PageForm/index.ts b/apps/client/src/components/PageForm/index.ts similarity index 100% rename from src/components/PageForm/index.ts rename to apps/client/src/components/PageForm/index.ts diff --git a/src/components/Paper/Paper.tsx b/apps/client/src/components/Paper/Paper.tsx similarity index 100% rename from src/components/Paper/Paper.tsx rename to apps/client/src/components/Paper/Paper.tsx diff --git a/src/components/Paper/index.tsx b/apps/client/src/components/Paper/index.tsx similarity index 100% rename from src/components/Paper/index.tsx rename to apps/client/src/components/Paper/index.tsx diff --git a/src/components/PaymentReceive/PaymentReceiveListField.tsx b/apps/client/src/components/PaymentReceive/PaymentReceiveListField.tsx similarity index 100% rename from src/components/PaymentReceive/PaymentReceiveListField.tsx rename to apps/client/src/components/PaymentReceive/PaymentReceiveListField.tsx diff --git a/src/components/PaymentReceive/index.ts b/apps/client/src/components/PaymentReceive/index.ts similarity index 100% rename from src/components/PaymentReceive/index.ts rename to apps/client/src/components/PaymentReceive/index.ts diff --git a/src/components/PdfPreview/index.tsx b/apps/client/src/components/PdfPreview/index.tsx similarity index 100% rename from src/components/PdfPreview/index.tsx rename to apps/client/src/components/PdfPreview/index.tsx diff --git a/src/components/Postbox/index.tsx b/apps/client/src/components/Postbox/index.tsx similarity index 100% rename from src/components/Postbox/index.tsx rename to apps/client/src/components/Postbox/index.tsx diff --git a/src/components/Preferences/PreferencesContentRoute.tsx b/apps/client/src/components/Preferences/PreferencesContentRoute.tsx similarity index 100% rename from src/components/Preferences/PreferencesContentRoute.tsx rename to apps/client/src/components/Preferences/PreferencesContentRoute.tsx diff --git a/src/components/Preferences/PreferencesPage.tsx b/apps/client/src/components/Preferences/PreferencesPage.tsx similarity index 100% rename from src/components/Preferences/PreferencesPage.tsx rename to apps/client/src/components/Preferences/PreferencesPage.tsx diff --git a/src/components/Preferences/PreferencesSidebar.tsx b/apps/client/src/components/Preferences/PreferencesSidebar.tsx similarity index 100% rename from src/components/Preferences/PreferencesSidebar.tsx rename to apps/client/src/components/Preferences/PreferencesSidebar.tsx diff --git a/src/components/Preferences/PreferencesSidebarContainer.tsx b/apps/client/src/components/Preferences/PreferencesSidebarContainer.tsx similarity index 100% rename from src/components/Preferences/PreferencesSidebarContainer.tsx rename to apps/client/src/components/Preferences/PreferencesSidebarContainer.tsx diff --git a/src/components/Preferences/PreferencesSubContent.tsx b/apps/client/src/components/Preferences/PreferencesSubContent.tsx similarity index 100% rename from src/components/Preferences/PreferencesSubContent.tsx rename to apps/client/src/components/Preferences/PreferencesSubContent.tsx diff --git a/src/components/Preferences/PreferencesTopbar.tsx b/apps/client/src/components/Preferences/PreferencesTopbar.tsx similarity index 100% rename from src/components/Preferences/PreferencesTopbar.tsx rename to apps/client/src/components/Preferences/PreferencesTopbar.tsx diff --git a/src/components/SMSPreview/index.tsx b/apps/client/src/components/SMSPreview/index.tsx similarity index 100% rename from src/components/SMSPreview/index.tsx rename to apps/client/src/components/SMSPreview/index.tsx diff --git a/src/components/Select/DisplayNameList.tsx b/apps/client/src/components/Select/DisplayNameList.tsx similarity index 100% rename from src/components/Select/DisplayNameList.tsx rename to apps/client/src/components/Select/DisplayNameList.tsx diff --git a/src/components/Select/ListSelect.tsx b/apps/client/src/components/Select/ListSelect.tsx similarity index 100% rename from src/components/Select/ListSelect.tsx rename to apps/client/src/components/Select/ListSelect.tsx diff --git a/src/components/Select/SalutationList.tsx b/apps/client/src/components/Select/SalutationList.tsx similarity index 100% rename from src/components/Select/SalutationList.tsx rename to apps/client/src/components/Select/SalutationList.tsx diff --git a/src/components/Select/index.ts b/apps/client/src/components/Select/index.ts similarity index 100% rename from src/components/Select/index.ts rename to apps/client/src/components/Select/index.ts diff --git a/src/components/Skeleton/Skeleton.tsx b/apps/client/src/components/Skeleton/Skeleton.tsx similarity index 100% rename from src/components/Skeleton/Skeleton.tsx rename to apps/client/src/components/Skeleton/Skeleton.tsx diff --git a/src/components/Skeleton/SkeletonText.tsx b/apps/client/src/components/Skeleton/SkeletonText.tsx similarity index 100% rename from src/components/Skeleton/SkeletonText.tsx rename to apps/client/src/components/Skeleton/SkeletonText.tsx diff --git a/src/components/Skeleton/index.ts b/apps/client/src/components/Skeleton/index.ts similarity index 100% rename from src/components/Skeleton/index.ts rename to apps/client/src/components/Skeleton/index.ts diff --git a/src/components/Subscriptions/index.tsx b/apps/client/src/components/Subscriptions/index.tsx similarity index 100% rename from src/components/Subscriptions/index.tsx rename to apps/client/src/components/Subscriptions/index.tsx diff --git a/src/components/Table/index.tsx b/apps/client/src/components/Table/index.tsx similarity index 100% rename from src/components/Table/index.tsx rename to apps/client/src/components/Table/index.tsx diff --git a/src/components/Tags/CurrencyTag.tsx b/apps/client/src/components/Tags/CurrencyTag.tsx similarity index 100% rename from src/components/Tags/CurrencyTag.tsx rename to apps/client/src/components/Tags/CurrencyTag.tsx diff --git a/src/components/Tags/FlagIcon.tsx b/apps/client/src/components/Tags/FlagIcon.tsx similarity index 100% rename from src/components/Tags/FlagIcon.tsx rename to apps/client/src/components/Tags/FlagIcon.tsx diff --git a/src/components/Tags/index.tsx b/apps/client/src/components/Tags/index.tsx similarity index 100% rename from src/components/Tags/index.tsx rename to apps/client/src/components/Tags/index.tsx diff --git a/src/components/TextStatus/index.tsx b/apps/client/src/components/TextStatus/index.tsx similarity index 100% rename from src/components/TextStatus/index.tsx rename to apps/client/src/components/TextStatus/index.tsx diff --git a/src/components/TotalLines/index.tsx b/apps/client/src/components/TotalLines/index.tsx similarity index 100% rename from src/components/TotalLines/index.tsx rename to apps/client/src/components/TotalLines/index.tsx diff --git a/src/components/Typo/Paragraph.tsx b/apps/client/src/components/Typo/Paragraph.tsx similarity index 100% rename from src/components/Typo/Paragraph.tsx rename to apps/client/src/components/Typo/Paragraph.tsx diff --git a/src/components/Typo/index.tsx b/apps/client/src/components/Typo/index.tsx similarity index 100% rename from src/components/Typo/index.tsx rename to apps/client/src/components/Typo/index.tsx diff --git a/src/components/UniversalSearch/UniversalSearch.tsx b/apps/client/src/components/UniversalSearch/UniversalSearch.tsx similarity index 100% rename from src/components/UniversalSearch/UniversalSearch.tsx rename to apps/client/src/components/UniversalSearch/UniversalSearch.tsx diff --git a/src/components/UniversalSearch/UniversalSearchProvider.tsx b/apps/client/src/components/UniversalSearch/UniversalSearchProvider.tsx similarity index 100% rename from src/components/UniversalSearch/UniversalSearchProvider.tsx rename to apps/client/src/components/UniversalSearch/UniversalSearchProvider.tsx diff --git a/src/components/UniversalSearch/utils.tsx b/apps/client/src/components/UniversalSearch/utils.tsx similarity index 100% rename from src/components/UniversalSearch/utils.tsx rename to apps/client/src/components/UniversalSearch/utils.tsx diff --git a/src/components/Utils/Choose.tsx b/apps/client/src/components/Utils/Choose.tsx similarity index 100% rename from src/components/Utils/Choose.tsx rename to apps/client/src/components/Utils/Choose.tsx diff --git a/src/components/Utils/For.tsx b/apps/client/src/components/Utils/For.tsx similarity index 100% rename from src/components/Utils/For.tsx rename to apps/client/src/components/Utils/For.tsx diff --git a/src/components/Utils/FormatDate.tsx b/apps/client/src/components/Utils/FormatDate.tsx similarity index 100% rename from src/components/Utils/FormatDate.tsx rename to apps/client/src/components/Utils/FormatDate.tsx diff --git a/src/components/Utils/FormatNumber.tsx b/apps/client/src/components/Utils/FormatNumber.tsx similarity index 100% rename from src/components/Utils/FormatNumber.tsx rename to apps/client/src/components/Utils/FormatNumber.tsx diff --git a/src/components/Utils/If.tsx b/apps/client/src/components/Utils/If.tsx similarity index 100% rename from src/components/Utils/If.tsx rename to apps/client/src/components/Utils/If.tsx diff --git a/src/components/Utils/Join.tsx b/apps/client/src/components/Utils/Join.tsx similarity index 100% rename from src/components/Utils/Join.tsx rename to apps/client/src/components/Utils/Join.tsx diff --git a/src/components/Utils/index.tsx b/apps/client/src/components/Utils/index.tsx similarity index 100% rename from src/components/Utils/index.tsx rename to apps/client/src/components/Utils/index.tsx diff --git a/src/components/Vendors/VendorDrawerLink.tsx b/apps/client/src/components/Vendors/VendorDrawerLink.tsx similarity index 100% rename from src/components/Vendors/VendorDrawerLink.tsx rename to apps/client/src/components/Vendors/VendorDrawerLink.tsx diff --git a/src/components/Vendors/VendorSelectField.tsx b/apps/client/src/components/Vendors/VendorSelectField.tsx similarity index 100% rename from src/components/Vendors/VendorSelectField.tsx rename to apps/client/src/components/Vendors/VendorSelectField.tsx diff --git a/src/components/Vendors/index.tsx b/apps/client/src/components/Vendors/index.tsx similarity index 100% rename from src/components/Vendors/index.tsx rename to apps/client/src/components/Vendors/index.tsx diff --git a/src/components/Vendors/utils.tsx b/apps/client/src/components/Vendors/utils.tsx similarity index 100% rename from src/components/Vendors/utils.tsx rename to apps/client/src/components/Vendors/utils.tsx diff --git a/src/components/Warehouses/WarehouseMultiSelect.tsx b/apps/client/src/components/Warehouses/WarehouseMultiSelect.tsx similarity index 100% rename from src/components/Warehouses/WarehouseMultiSelect.tsx rename to apps/client/src/components/Warehouses/WarehouseMultiSelect.tsx diff --git a/src/components/Warehouses/WarehouseSelect.tsx b/apps/client/src/components/Warehouses/WarehouseSelect.tsx similarity index 100% rename from src/components/Warehouses/WarehouseSelect.tsx rename to apps/client/src/components/Warehouses/WarehouseSelect.tsx diff --git a/src/components/Warehouses/index.tsx b/apps/client/src/components/Warehouses/index.tsx similarity index 100% rename from src/components/Warehouses/index.tsx rename to apps/client/src/components/Warehouses/index.tsx diff --git a/src/components/index.tsx b/apps/client/src/components/index.tsx similarity index 100% rename from src/components/index.tsx rename to apps/client/src/components/index.tsx diff --git a/src/components/modifiers.tsx b/apps/client/src/components/modifiers.tsx similarity index 100% rename from src/components/modifiers.tsx rename to apps/client/src/components/modifiers.tsx diff --git a/src/constants/abilityOption.tsx b/apps/client/src/constants/abilityOption.tsx similarity index 100% rename from src/constants/abilityOption.tsx rename to apps/client/src/constants/abilityOption.tsx diff --git a/src/constants/accountTypes.tsx b/apps/client/src/constants/accountTypes.tsx similarity index 100% rename from src/constants/accountTypes.tsx rename to apps/client/src/constants/accountTypes.tsx diff --git a/src/constants/adjustmentType.tsx b/apps/client/src/constants/adjustmentType.tsx similarity index 100% rename from src/constants/adjustmentType.tsx rename to apps/client/src/constants/adjustmentType.tsx diff --git a/src/constants/allocateLandedCostType.tsx b/apps/client/src/constants/allocateLandedCostType.tsx similarity index 100% rename from src/constants/allocateLandedCostType.tsx rename to apps/client/src/constants/allocateLandedCostType.tsx diff --git a/src/constants/app.tsx b/apps/client/src/constants/app.tsx similarity index 100% rename from src/constants/app.tsx rename to apps/client/src/constants/app.tsx diff --git a/src/constants/cashflowOptions.tsx b/apps/client/src/constants/cashflowOptions.tsx similarity index 100% rename from src/constants/cashflowOptions.tsx rename to apps/client/src/constants/cashflowOptions.tsx diff --git a/src/constants/cellTypes.tsx b/apps/client/src/constants/cellTypes.tsx similarity index 100% rename from src/constants/cellTypes.tsx rename to apps/client/src/constants/cellTypes.tsx diff --git a/src/constants/classes.tsx b/apps/client/src/constants/classes.tsx similarity index 100% rename from src/constants/classes.tsx rename to apps/client/src/constants/classes.tsx diff --git a/src/constants/contactsOptions.tsx b/apps/client/src/constants/contactsOptions.tsx similarity index 100% rename from src/constants/contactsOptions.tsx rename to apps/client/src/constants/contactsOptions.tsx diff --git a/src/constants/countries.tsx b/apps/client/src/constants/countries.tsx similarity index 100% rename from src/constants/countries.tsx rename to apps/client/src/constants/countries.tsx diff --git a/src/constants/currencies.tsx b/apps/client/src/constants/currencies.tsx similarity index 100% rename from src/constants/currencies.tsx rename to apps/client/src/constants/currencies.tsx diff --git a/src/constants/dataTypes.tsx b/apps/client/src/constants/dataTypes.tsx similarity index 100% rename from src/constants/dataTypes.tsx rename to apps/client/src/constants/dataTypes.tsx diff --git a/src/constants/dateFormatsOptions.tsx b/apps/client/src/constants/dateFormatsOptions.tsx similarity index 100% rename from src/constants/dateFormatsOptions.tsx rename to apps/client/src/constants/dateFormatsOptions.tsx diff --git a/src/constants/dialogs.ts b/apps/client/src/constants/dialogs.ts similarity index 100% rename from src/constants/dialogs.ts rename to apps/client/src/constants/dialogs.ts diff --git a/src/constants/drawers.ts b/apps/client/src/constants/drawers.ts similarity index 100% rename from src/constants/drawers.ts rename to apps/client/src/constants/drawers.ts diff --git a/src/constants/errors.tsx b/apps/client/src/constants/errors.tsx similarity index 100% rename from src/constants/errors.tsx rename to apps/client/src/constants/errors.tsx diff --git a/src/constants/features.tsx b/apps/client/src/constants/features.tsx similarity index 100% rename from src/constants/features.tsx rename to apps/client/src/constants/features.tsx diff --git a/src/constants/financialReportsMenu.tsx b/apps/client/src/constants/financialReportsMenu.tsx similarity index 100% rename from src/constants/financialReportsMenu.tsx rename to apps/client/src/constants/financialReportsMenu.tsx diff --git a/src/constants/fiscalYearOptions.tsx b/apps/client/src/constants/fiscalYearOptions.tsx similarity index 100% rename from src/constants/fiscalYearOptions.tsx rename to apps/client/src/constants/fiscalYearOptions.tsx diff --git a/src/constants/footerLinks.tsx b/apps/client/src/constants/footerLinks.tsx similarity index 100% rename from src/constants/footerLinks.tsx rename to apps/client/src/constants/footerLinks.tsx diff --git a/src/constants/homepageOptions.tsx b/apps/client/src/constants/homepageOptions.tsx similarity index 100% rename from src/constants/homepageOptions.tsx rename to apps/client/src/constants/homepageOptions.tsx diff --git a/src/constants/index.tsx b/apps/client/src/constants/index.tsx similarity index 100% rename from src/constants/index.tsx rename to apps/client/src/constants/index.tsx diff --git a/src/constants/itemPaymentTranactionsOption.tsx b/apps/client/src/constants/itemPaymentTranactionsOption.tsx similarity index 100% rename from src/constants/itemPaymentTranactionsOption.tsx rename to apps/client/src/constants/itemPaymentTranactionsOption.tsx diff --git a/src/constants/keyboardShortcutsOptions.tsx b/apps/client/src/constants/keyboardShortcutsOptions.tsx similarity index 100% rename from src/constants/keyboardShortcutsOptions.tsx rename to apps/client/src/constants/keyboardShortcutsOptions.tsx diff --git a/src/constants/languagesOptions.tsx b/apps/client/src/constants/languagesOptions.tsx similarity index 100% rename from src/constants/languagesOptions.tsx rename to apps/client/src/constants/languagesOptions.tsx diff --git a/src/constants/modalChargeOptions.tsx b/apps/client/src/constants/modalChargeOptions.tsx similarity index 100% rename from src/constants/modalChargeOptions.tsx rename to apps/client/src/constants/modalChargeOptions.tsx diff --git a/src/constants/moreVertOptions.tsx b/apps/client/src/constants/moreVertOptions.tsx similarity index 100% rename from src/constants/moreVertOptions.tsx rename to apps/client/src/constants/moreVertOptions.tsx diff --git a/src/constants/numberFormatsOptions.tsx b/apps/client/src/constants/numberFormatsOptions.tsx similarity index 100% rename from src/constants/numberFormatsOptions.tsx rename to apps/client/src/constants/numberFormatsOptions.tsx diff --git a/src/constants/permissionsSchema.tsx b/apps/client/src/constants/permissionsSchema.tsx similarity index 100% rename from src/constants/permissionsSchema.tsx rename to apps/client/src/constants/permissionsSchema.tsx diff --git a/src/constants/preferencesMenu.tsx b/apps/client/src/constants/preferencesMenu.tsx similarity index 100% rename from src/constants/preferencesMenu.tsx rename to apps/client/src/constants/preferencesMenu.tsx diff --git a/src/constants/quickNewOptions.tsx b/apps/client/src/constants/quickNewOptions.tsx similarity index 100% rename from src/constants/quickNewOptions.tsx rename to apps/client/src/constants/quickNewOptions.tsx diff --git a/src/constants/registerWizard.tsx b/apps/client/src/constants/registerWizard.tsx similarity index 100% rename from src/constants/registerWizard.tsx rename to apps/client/src/constants/registerWizard.tsx diff --git a/src/constants/resourcesTypes.tsx b/apps/client/src/constants/resourcesTypes.tsx similarity index 100% rename from src/constants/resourcesTypes.tsx rename to apps/client/src/constants/resourcesTypes.tsx diff --git a/src/constants/sidebarMenu.tsx b/apps/client/src/constants/sidebarMenu.tsx similarity index 100% rename from src/constants/sidebarMenu.tsx rename to apps/client/src/constants/sidebarMenu.tsx diff --git a/src/constants/subscriptionModels.tsx b/apps/client/src/constants/subscriptionModels.tsx similarity index 100% rename from src/constants/subscriptionModels.tsx rename to apps/client/src/constants/subscriptionModels.tsx diff --git a/src/constants/tableStyle.tsx b/apps/client/src/constants/tableStyle.tsx similarity index 100% rename from src/constants/tableStyle.tsx rename to apps/client/src/constants/tableStyle.tsx diff --git a/src/constants/tables.tsx b/apps/client/src/constants/tables.tsx similarity index 100% rename from src/constants/tables.tsx rename to apps/client/src/constants/tables.tsx diff --git a/src/containers/Accounting/JournalsLanding/ManualJournalActionsBar.tsx b/apps/client/src/containers/Accounting/JournalsLanding/ManualJournalActionsBar.tsx similarity index 100% rename from src/containers/Accounting/JournalsLanding/ManualJournalActionsBar.tsx rename to apps/client/src/containers/Accounting/JournalsLanding/ManualJournalActionsBar.tsx diff --git a/src/containers/Accounting/JournalsLanding/ManualJournalsAlerts.tsx b/apps/client/src/containers/Accounting/JournalsLanding/ManualJournalsAlerts.tsx similarity index 100% rename from src/containers/Accounting/JournalsLanding/ManualJournalsAlerts.tsx rename to apps/client/src/containers/Accounting/JournalsLanding/ManualJournalsAlerts.tsx diff --git a/src/containers/Accounting/JournalsLanding/ManualJournalsDataTable.tsx b/apps/client/src/containers/Accounting/JournalsLanding/ManualJournalsDataTable.tsx similarity index 100% rename from src/containers/Accounting/JournalsLanding/ManualJournalsDataTable.tsx rename to apps/client/src/containers/Accounting/JournalsLanding/ManualJournalsDataTable.tsx diff --git a/src/containers/Accounting/JournalsLanding/ManualJournalsEmptyStatus.tsx b/apps/client/src/containers/Accounting/JournalsLanding/ManualJournalsEmptyStatus.tsx similarity index 100% rename from src/containers/Accounting/JournalsLanding/ManualJournalsEmptyStatus.tsx rename to apps/client/src/containers/Accounting/JournalsLanding/ManualJournalsEmptyStatus.tsx diff --git a/src/containers/Accounting/JournalsLanding/ManualJournalsList.tsx b/apps/client/src/containers/Accounting/JournalsLanding/ManualJournalsList.tsx similarity index 100% rename from src/containers/Accounting/JournalsLanding/ManualJournalsList.tsx rename to apps/client/src/containers/Accounting/JournalsLanding/ManualJournalsList.tsx diff --git a/src/containers/Accounting/JournalsLanding/ManualJournalsListProvider.tsx b/apps/client/src/containers/Accounting/JournalsLanding/ManualJournalsListProvider.tsx similarity index 100% rename from src/containers/Accounting/JournalsLanding/ManualJournalsListProvider.tsx rename to apps/client/src/containers/Accounting/JournalsLanding/ManualJournalsListProvider.tsx diff --git a/src/containers/Accounting/JournalsLanding/ManualJournalsViewTabs.tsx b/apps/client/src/containers/Accounting/JournalsLanding/ManualJournalsViewTabs.tsx similarity index 100% rename from src/containers/Accounting/JournalsLanding/ManualJournalsViewTabs.tsx rename to apps/client/src/containers/Accounting/JournalsLanding/ManualJournalsViewTabs.tsx diff --git a/src/containers/Accounting/JournalsLanding/components.tsx b/apps/client/src/containers/Accounting/JournalsLanding/components.tsx similarity index 100% rename from src/containers/Accounting/JournalsLanding/components.tsx rename to apps/client/src/containers/Accounting/JournalsLanding/components.tsx diff --git a/src/containers/Accounting/JournalsLanding/utils.tsx b/apps/client/src/containers/Accounting/JournalsLanding/utils.tsx similarity index 100% rename from src/containers/Accounting/JournalsLanding/utils.tsx rename to apps/client/src/containers/Accounting/JournalsLanding/utils.tsx diff --git a/src/containers/Accounting/JournalsLanding/withManualJournals.tsx b/apps/client/src/containers/Accounting/JournalsLanding/withManualJournals.tsx similarity index 100% rename from src/containers/Accounting/JournalsLanding/withManualJournals.tsx rename to apps/client/src/containers/Accounting/JournalsLanding/withManualJournals.tsx diff --git a/src/containers/Accounting/JournalsLanding/withManualJournalsActions.tsx b/apps/client/src/containers/Accounting/JournalsLanding/withManualJournalsActions.tsx similarity index 100% rename from src/containers/Accounting/JournalsLanding/withManualJournalsActions.tsx rename to apps/client/src/containers/Accounting/JournalsLanding/withManualJournalsActions.tsx diff --git a/src/containers/Accounting/MakeJournal/MakeJournalEntries.schema.tsx b/apps/client/src/containers/Accounting/MakeJournal/MakeJournalEntries.schema.tsx similarity index 100% rename from src/containers/Accounting/MakeJournal/MakeJournalEntries.schema.tsx rename to apps/client/src/containers/Accounting/MakeJournal/MakeJournalEntries.schema.tsx diff --git a/src/containers/Accounting/MakeJournal/MakeJournalEntriesField.tsx b/apps/client/src/containers/Accounting/MakeJournal/MakeJournalEntriesField.tsx similarity index 100% rename from src/containers/Accounting/MakeJournal/MakeJournalEntriesField.tsx rename to apps/client/src/containers/Accounting/MakeJournal/MakeJournalEntriesField.tsx diff --git a/src/containers/Accounting/MakeJournal/MakeJournalEntriesFooter.tsx b/apps/client/src/containers/Accounting/MakeJournal/MakeJournalEntriesFooter.tsx similarity index 100% rename from src/containers/Accounting/MakeJournal/MakeJournalEntriesFooter.tsx rename to apps/client/src/containers/Accounting/MakeJournal/MakeJournalEntriesFooter.tsx diff --git a/src/containers/Accounting/MakeJournal/MakeJournalEntriesForm.tsx b/apps/client/src/containers/Accounting/MakeJournal/MakeJournalEntriesForm.tsx similarity index 100% rename from src/containers/Accounting/MakeJournal/MakeJournalEntriesForm.tsx rename to apps/client/src/containers/Accounting/MakeJournal/MakeJournalEntriesForm.tsx diff --git a/src/containers/Accounting/MakeJournal/MakeJournalEntriesHeader.tsx b/apps/client/src/containers/Accounting/MakeJournal/MakeJournalEntriesHeader.tsx similarity index 100% rename from src/containers/Accounting/MakeJournal/MakeJournalEntriesHeader.tsx rename to apps/client/src/containers/Accounting/MakeJournal/MakeJournalEntriesHeader.tsx diff --git a/src/containers/Accounting/MakeJournal/MakeJournalEntriesHeaderFields.tsx b/apps/client/src/containers/Accounting/MakeJournal/MakeJournalEntriesHeaderFields.tsx similarity index 100% rename from src/containers/Accounting/MakeJournal/MakeJournalEntriesHeaderFields.tsx rename to apps/client/src/containers/Accounting/MakeJournal/MakeJournalEntriesHeaderFields.tsx diff --git a/src/containers/Accounting/MakeJournal/MakeJournalEntriesPage.tsx b/apps/client/src/containers/Accounting/MakeJournal/MakeJournalEntriesPage.tsx similarity index 100% rename from src/containers/Accounting/MakeJournal/MakeJournalEntriesPage.tsx rename to apps/client/src/containers/Accounting/MakeJournal/MakeJournalEntriesPage.tsx diff --git a/src/containers/Accounting/MakeJournal/MakeJournalEntriesTable.tsx b/apps/client/src/containers/Accounting/MakeJournal/MakeJournalEntriesTable.tsx similarity index 100% rename from src/containers/Accounting/MakeJournal/MakeJournalEntriesTable.tsx rename to apps/client/src/containers/Accounting/MakeJournal/MakeJournalEntriesTable.tsx diff --git a/src/containers/Accounting/MakeJournal/MakeJournalFormDialogs.tsx b/apps/client/src/containers/Accounting/MakeJournal/MakeJournalFormDialogs.tsx similarity index 100% rename from src/containers/Accounting/MakeJournal/MakeJournalFormDialogs.tsx rename to apps/client/src/containers/Accounting/MakeJournal/MakeJournalFormDialogs.tsx diff --git a/src/containers/Accounting/MakeJournal/MakeJournalFormFloatingActions.tsx b/apps/client/src/containers/Accounting/MakeJournal/MakeJournalFormFloatingActions.tsx similarity index 100% rename from src/containers/Accounting/MakeJournal/MakeJournalFormFloatingActions.tsx rename to apps/client/src/containers/Accounting/MakeJournal/MakeJournalFormFloatingActions.tsx diff --git a/src/containers/Accounting/MakeJournal/MakeJournalFormFooter.tsx b/apps/client/src/containers/Accounting/MakeJournal/MakeJournalFormFooter.tsx similarity index 100% rename from src/containers/Accounting/MakeJournal/MakeJournalFormFooter.tsx rename to apps/client/src/containers/Accounting/MakeJournal/MakeJournalFormFooter.tsx diff --git a/src/containers/Accounting/MakeJournal/MakeJournalFormFooterLeft.tsx b/apps/client/src/containers/Accounting/MakeJournal/MakeJournalFormFooterLeft.tsx similarity index 100% rename from src/containers/Accounting/MakeJournal/MakeJournalFormFooterLeft.tsx rename to apps/client/src/containers/Accounting/MakeJournal/MakeJournalFormFooterLeft.tsx diff --git a/src/containers/Accounting/MakeJournal/MakeJournalFormFooterRight.tsx b/apps/client/src/containers/Accounting/MakeJournal/MakeJournalFormFooterRight.tsx similarity index 100% rename from src/containers/Accounting/MakeJournal/MakeJournalFormFooterRight.tsx rename to apps/client/src/containers/Accounting/MakeJournal/MakeJournalFormFooterRight.tsx diff --git a/src/containers/Accounting/MakeJournal/MakeJournalFormTopBar.tsx b/apps/client/src/containers/Accounting/MakeJournal/MakeJournalFormTopBar.tsx similarity index 100% rename from src/containers/Accounting/MakeJournal/MakeJournalFormTopBar.tsx rename to apps/client/src/containers/Accounting/MakeJournal/MakeJournalFormTopBar.tsx diff --git a/src/containers/Accounting/MakeJournal/MakeJournalProvider.tsx b/apps/client/src/containers/Accounting/MakeJournal/MakeJournalProvider.tsx similarity index 100% rename from src/containers/Accounting/MakeJournal/MakeJournalProvider.tsx rename to apps/client/src/containers/Accounting/MakeJournal/MakeJournalProvider.tsx diff --git a/src/containers/Accounting/MakeJournal/components.tsx b/apps/client/src/containers/Accounting/MakeJournal/components.tsx similarity index 100% rename from src/containers/Accounting/MakeJournal/components.tsx rename to apps/client/src/containers/Accounting/MakeJournal/components.tsx diff --git a/src/containers/Accounting/MakeJournal/utils.tsx b/apps/client/src/containers/Accounting/MakeJournal/utils.tsx similarity index 100% rename from src/containers/Accounting/MakeJournal/utils.tsx rename to apps/client/src/containers/Accounting/MakeJournal/utils.tsx diff --git a/src/containers/Accounting/ManualJournalUniversalSearch.tsx b/apps/client/src/containers/Accounting/ManualJournalUniversalSearch.tsx similarity index 100% rename from src/containers/Accounting/ManualJournalUniversalSearch.tsx rename to apps/client/src/containers/Accounting/ManualJournalUniversalSearch.tsx diff --git a/src/containers/Accounts/AccountUniversalSearch.tsx b/apps/client/src/containers/Accounts/AccountUniversalSearch.tsx similarity index 100% rename from src/containers/Accounts/AccountUniversalSearch.tsx rename to apps/client/src/containers/Accounts/AccountUniversalSearch.tsx diff --git a/src/containers/Accounts/AccountsActionsBar.tsx b/apps/client/src/containers/Accounts/AccountsActionsBar.tsx similarity index 100% rename from src/containers/Accounts/AccountsActionsBar.tsx rename to apps/client/src/containers/Accounts/AccountsActionsBar.tsx diff --git a/src/containers/Accounts/AccountsAlerts.tsx b/apps/client/src/containers/Accounts/AccountsAlerts.tsx similarity index 100% rename from src/containers/Accounts/AccountsAlerts.tsx rename to apps/client/src/containers/Accounts/AccountsAlerts.tsx diff --git a/src/containers/Accounts/AccountsChart.tsx b/apps/client/src/containers/Accounts/AccountsChart.tsx similarity index 100% rename from src/containers/Accounts/AccountsChart.tsx rename to apps/client/src/containers/Accounts/AccountsChart.tsx diff --git a/src/containers/Accounts/AccountsChartProvider.tsx b/apps/client/src/containers/Accounts/AccountsChartProvider.tsx similarity index 100% rename from src/containers/Accounts/AccountsChartProvider.tsx rename to apps/client/src/containers/Accounts/AccountsChartProvider.tsx diff --git a/src/containers/Accounts/AccountsDataTable.tsx b/apps/client/src/containers/Accounts/AccountsDataTable.tsx similarity index 100% rename from src/containers/Accounts/AccountsDataTable.tsx rename to apps/client/src/containers/Accounts/AccountsDataTable.tsx diff --git a/src/containers/Accounts/AccountsViewsTabs.tsx b/apps/client/src/containers/Accounts/AccountsViewsTabs.tsx similarity index 100% rename from src/containers/Accounts/AccountsViewsTabs.tsx rename to apps/client/src/containers/Accounts/AccountsViewsTabs.tsx diff --git a/src/containers/Accounts/components.tsx b/apps/client/src/containers/Accounts/components.tsx similarity index 100% rename from src/containers/Accounts/components.tsx rename to apps/client/src/containers/Accounts/components.tsx diff --git a/src/containers/Accounts/utils.tsx b/apps/client/src/containers/Accounts/utils.tsx similarity index 100% rename from src/containers/Accounts/utils.tsx rename to apps/client/src/containers/Accounts/utils.tsx diff --git a/src/containers/Accounts/withAccounts.tsx b/apps/client/src/containers/Accounts/withAccounts.tsx similarity index 100% rename from src/containers/Accounts/withAccounts.tsx rename to apps/client/src/containers/Accounts/withAccounts.tsx diff --git a/src/containers/Accounts/withAccountsTableActions.tsx b/apps/client/src/containers/Accounts/withAccountsTableActions.tsx similarity index 100% rename from src/containers/Accounts/withAccountsTableActions.tsx rename to apps/client/src/containers/Accounts/withAccountsTableActions.tsx diff --git a/src/containers/Alert/withAlertActions.tsx b/apps/client/src/containers/Alert/withAlertActions.tsx similarity index 100% rename from src/containers/Alert/withAlertActions.tsx rename to apps/client/src/containers/Alert/withAlertActions.tsx diff --git a/src/containers/Alert/withAlertStoreConnect.tsx b/apps/client/src/containers/Alert/withAlertStoreConnect.tsx similarity index 100% rename from src/containers/Alert/withAlertStoreConnect.tsx rename to apps/client/src/containers/Alert/withAlertStoreConnect.tsx diff --git a/src/containers/Alerts/Accounts/AccountActivateAlert.tsx b/apps/client/src/containers/Alerts/Accounts/AccountActivateAlert.tsx similarity index 100% rename from src/containers/Alerts/Accounts/AccountActivateAlert.tsx rename to apps/client/src/containers/Alerts/Accounts/AccountActivateAlert.tsx diff --git a/src/containers/Alerts/Accounts/AccountBulkActivateAlert.tsx b/apps/client/src/containers/Alerts/Accounts/AccountBulkActivateAlert.tsx similarity index 100% rename from src/containers/Alerts/Accounts/AccountBulkActivateAlert.tsx rename to apps/client/src/containers/Alerts/Accounts/AccountBulkActivateAlert.tsx diff --git a/src/containers/Alerts/Accounts/AccountBulkDeleteAlert.tsx b/apps/client/src/containers/Alerts/Accounts/AccountBulkDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Accounts/AccountBulkDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Accounts/AccountBulkDeleteAlert.tsx diff --git a/src/containers/Alerts/Accounts/AccountBulkInactivateAlert.tsx b/apps/client/src/containers/Alerts/Accounts/AccountBulkInactivateAlert.tsx similarity index 100% rename from src/containers/Alerts/Accounts/AccountBulkInactivateAlert.tsx rename to apps/client/src/containers/Alerts/Accounts/AccountBulkInactivateAlert.tsx diff --git a/src/containers/Alerts/Accounts/AccountDeleteAlert.tsx b/apps/client/src/containers/Alerts/Accounts/AccountDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Accounts/AccountDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Accounts/AccountDeleteAlert.tsx diff --git a/src/containers/Alerts/Accounts/AccountInactivateAlert.tsx b/apps/client/src/containers/Alerts/Accounts/AccountInactivateAlert.tsx similarity index 100% rename from src/containers/Alerts/Accounts/AccountInactivateAlert.tsx rename to apps/client/src/containers/Alerts/Accounts/AccountInactivateAlert.tsx diff --git a/src/containers/Alerts/Accounts/index.tsx b/apps/client/src/containers/Alerts/Accounts/index.tsx similarity index 100% rename from src/containers/Alerts/Accounts/index.tsx rename to apps/client/src/containers/Alerts/Accounts/index.tsx diff --git a/src/containers/Alerts/Bills/BillDeleteAlert.tsx b/apps/client/src/containers/Alerts/Bills/BillDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Bills/BillDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Bills/BillDeleteAlert.tsx diff --git a/src/containers/Alerts/Bills/BillLocatedLandedCostDeleteAlert.tsx b/apps/client/src/containers/Alerts/Bills/BillLocatedLandedCostDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Bills/BillLocatedLandedCostDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Bills/BillLocatedLandedCostDeleteAlert.tsx diff --git a/src/containers/Alerts/Bills/BillOpenAlert.tsx b/apps/client/src/containers/Alerts/Bills/BillOpenAlert.tsx similarity index 100% rename from src/containers/Alerts/Bills/BillOpenAlert.tsx rename to apps/client/src/containers/Alerts/Bills/BillOpenAlert.tsx diff --git a/src/containers/Alerts/Branches/BranchDeleteAlert.tsx b/apps/client/src/containers/Alerts/Branches/BranchDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Branches/BranchDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Branches/BranchDeleteAlert.tsx diff --git a/src/containers/Alerts/Branches/BranchMarkPrimaryAlert.tsx b/apps/client/src/containers/Alerts/Branches/BranchMarkPrimaryAlert.tsx similarity index 100% rename from src/containers/Alerts/Branches/BranchMarkPrimaryAlert.tsx rename to apps/client/src/containers/Alerts/Branches/BranchMarkPrimaryAlert.tsx diff --git a/src/containers/Alerts/CashFlow/AccountDeleteTransactionAlert.tsx b/apps/client/src/containers/Alerts/CashFlow/AccountDeleteTransactionAlert.tsx similarity index 100% rename from src/containers/Alerts/CashFlow/AccountDeleteTransactionAlert.tsx rename to apps/client/src/containers/Alerts/CashFlow/AccountDeleteTransactionAlert.tsx diff --git a/src/containers/Alerts/Contacts/ContactActivateAlert.tsx b/apps/client/src/containers/Alerts/Contacts/ContactActivateAlert.tsx similarity index 100% rename from src/containers/Alerts/Contacts/ContactActivateAlert.tsx rename to apps/client/src/containers/Alerts/Contacts/ContactActivateAlert.tsx diff --git a/src/containers/Alerts/Contacts/ContactInactivateAlert.tsx b/apps/client/src/containers/Alerts/Contacts/ContactInactivateAlert.tsx similarity index 100% rename from src/containers/Alerts/Contacts/ContactInactivateAlert.tsx rename to apps/client/src/containers/Alerts/Contacts/ContactInactivateAlert.tsx diff --git a/src/containers/Alerts/CreditNotes/CreditNoteDeleteAlert.tsx b/apps/client/src/containers/Alerts/CreditNotes/CreditNoteDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/CreditNotes/CreditNoteDeleteAlert.tsx rename to apps/client/src/containers/Alerts/CreditNotes/CreditNoteDeleteAlert.tsx diff --git a/src/containers/Alerts/CreditNotes/CreditNoteOpenedAlert.tsx b/apps/client/src/containers/Alerts/CreditNotes/CreditNoteOpenedAlert.tsx similarity index 100% rename from src/containers/Alerts/CreditNotes/CreditNoteOpenedAlert.tsx rename to apps/client/src/containers/Alerts/CreditNotes/CreditNoteOpenedAlert.tsx diff --git a/src/containers/Alerts/CreditNotes/ReconcileCreditNoteDeleteAlert.tsx b/apps/client/src/containers/Alerts/CreditNotes/ReconcileCreditNoteDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/CreditNotes/ReconcileCreditNoteDeleteAlert.tsx rename to apps/client/src/containers/Alerts/CreditNotes/ReconcileCreditNoteDeleteAlert.tsx diff --git a/src/containers/Alerts/CreditNotes/RefundCreditNoteDeleteAlert.tsx b/apps/client/src/containers/Alerts/CreditNotes/RefundCreditNoteDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/CreditNotes/RefundCreditNoteDeleteAlert.tsx rename to apps/client/src/containers/Alerts/CreditNotes/RefundCreditNoteDeleteAlert.tsx diff --git a/src/containers/Alerts/Currencies/CurrencyDeleteAlert.tsx b/apps/client/src/containers/Alerts/Currencies/CurrencyDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Currencies/CurrencyDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Currencies/CurrencyDeleteAlert.tsx diff --git a/src/containers/Alerts/Customers/CustomerActivateAlert.tsx b/apps/client/src/containers/Alerts/Customers/CustomerActivateAlert.tsx similarity index 100% rename from src/containers/Alerts/Customers/CustomerActivateAlert.tsx rename to apps/client/src/containers/Alerts/Customers/CustomerActivateAlert.tsx diff --git a/src/containers/Alerts/Customers/CustomerBulkDeleteAlert.tsx b/apps/client/src/containers/Alerts/Customers/CustomerBulkDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Customers/CustomerBulkDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Customers/CustomerBulkDeleteAlert.tsx diff --git a/src/containers/Alerts/Customers/CustomerDeleteAlert.tsx b/apps/client/src/containers/Alerts/Customers/CustomerDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Customers/CustomerDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Customers/CustomerDeleteAlert.tsx diff --git a/src/containers/Alerts/Customers/CustomerInactivateAlert.tsx b/apps/client/src/containers/Alerts/Customers/CustomerInactivateAlert.tsx similarity index 100% rename from src/containers/Alerts/Customers/CustomerInactivateAlert.tsx rename to apps/client/src/containers/Alerts/Customers/CustomerInactivateAlert.tsx diff --git a/src/containers/Alerts/Estimates/EstimateApproveAlert.tsx b/apps/client/src/containers/Alerts/Estimates/EstimateApproveAlert.tsx similarity index 100% rename from src/containers/Alerts/Estimates/EstimateApproveAlert.tsx rename to apps/client/src/containers/Alerts/Estimates/EstimateApproveAlert.tsx diff --git a/src/containers/Alerts/Estimates/EstimateDeleteAlert.tsx b/apps/client/src/containers/Alerts/Estimates/EstimateDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Estimates/EstimateDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Estimates/EstimateDeleteAlert.tsx diff --git a/src/containers/Alerts/Estimates/EstimateDeliveredAlert.tsx b/apps/client/src/containers/Alerts/Estimates/EstimateDeliveredAlert.tsx similarity index 100% rename from src/containers/Alerts/Estimates/EstimateDeliveredAlert.tsx rename to apps/client/src/containers/Alerts/Estimates/EstimateDeliveredAlert.tsx diff --git a/src/containers/Alerts/Estimates/EstimateRejectAlert.tsx b/apps/client/src/containers/Alerts/Estimates/EstimateRejectAlert.tsx similarity index 100% rename from src/containers/Alerts/Estimates/EstimateRejectAlert.tsx rename to apps/client/src/containers/Alerts/Estimates/EstimateRejectAlert.tsx diff --git a/src/containers/Alerts/ExchangeRates/ExchangeRateBulkDeleteAlert.tsx b/apps/client/src/containers/Alerts/ExchangeRates/ExchangeRateBulkDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/ExchangeRates/ExchangeRateBulkDeleteAlert.tsx rename to apps/client/src/containers/Alerts/ExchangeRates/ExchangeRateBulkDeleteAlert.tsx diff --git a/src/containers/Alerts/ExchangeRates/ExchangeRateDeleteAlert.tsx b/apps/client/src/containers/Alerts/ExchangeRates/ExchangeRateDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/ExchangeRates/ExchangeRateDeleteAlert.tsx rename to apps/client/src/containers/Alerts/ExchangeRates/ExchangeRateDeleteAlert.tsx diff --git a/src/containers/Alerts/Expenses/ExpenseBulkDeleteAlert.tsx b/apps/client/src/containers/Alerts/Expenses/ExpenseBulkDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Expenses/ExpenseBulkDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Expenses/ExpenseBulkDeleteAlert.tsx diff --git a/src/containers/Alerts/Expenses/ExpenseDeleteAlert.tsx b/apps/client/src/containers/Alerts/Expenses/ExpenseDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Expenses/ExpenseDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Expenses/ExpenseDeleteAlert.tsx diff --git a/src/containers/Alerts/Expenses/ExpenseDeleteEntriesAlert.tsx b/apps/client/src/containers/Alerts/Expenses/ExpenseDeleteEntriesAlert.tsx similarity index 100% rename from src/containers/Alerts/Expenses/ExpenseDeleteEntriesAlert.tsx rename to apps/client/src/containers/Alerts/Expenses/ExpenseDeleteEntriesAlert.tsx diff --git a/src/containers/Alerts/Expenses/ExpensePublishAlert.tsx b/apps/client/src/containers/Alerts/Expenses/ExpensePublishAlert.tsx similarity index 100% rename from src/containers/Alerts/Expenses/ExpensePublishAlert.tsx rename to apps/client/src/containers/Alerts/Expenses/ExpensePublishAlert.tsx diff --git a/src/containers/Alerts/Invoices/CancelBadDebtAlert.tsx b/apps/client/src/containers/Alerts/Invoices/CancelBadDebtAlert.tsx similarity index 100% rename from src/containers/Alerts/Invoices/CancelBadDebtAlert.tsx rename to apps/client/src/containers/Alerts/Invoices/CancelBadDebtAlert.tsx diff --git a/src/containers/Alerts/Invoices/InvoiceDeleteAlert.tsx b/apps/client/src/containers/Alerts/Invoices/InvoiceDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Invoices/InvoiceDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Invoices/InvoiceDeleteAlert.tsx diff --git a/src/containers/Alerts/Invoices/InvoiceDeliverAlert.tsx b/apps/client/src/containers/Alerts/Invoices/InvoiceDeliverAlert.tsx similarity index 100% rename from src/containers/Alerts/Invoices/InvoiceDeliverAlert.tsx rename to apps/client/src/containers/Alerts/Invoices/InvoiceDeliverAlert.tsx diff --git a/src/containers/Alerts/Items/InventoryAdjustmentDeleteAlert.tsx b/apps/client/src/containers/Alerts/Items/InventoryAdjustmentDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Items/InventoryAdjustmentDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Items/InventoryAdjustmentDeleteAlert.tsx diff --git a/src/containers/Alerts/Items/InventoryAdjustmentPublishAlert.tsx b/apps/client/src/containers/Alerts/Items/InventoryAdjustmentPublishAlert.tsx similarity index 100% rename from src/containers/Alerts/Items/InventoryAdjustmentPublishAlert.tsx rename to apps/client/src/containers/Alerts/Items/InventoryAdjustmentPublishAlert.tsx diff --git a/src/containers/Alerts/Items/ItemActivateAlert.tsx b/apps/client/src/containers/Alerts/Items/ItemActivateAlert.tsx similarity index 100% rename from src/containers/Alerts/Items/ItemActivateAlert.tsx rename to apps/client/src/containers/Alerts/Items/ItemActivateAlert.tsx diff --git a/src/containers/Alerts/Items/ItemBulkDeleteAlert.tsx b/apps/client/src/containers/Alerts/Items/ItemBulkDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Items/ItemBulkDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Items/ItemBulkDeleteAlert.tsx diff --git a/src/containers/Alerts/Items/ItemCategoryBulkDeleteAlert.tsx b/apps/client/src/containers/Alerts/Items/ItemCategoryBulkDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Items/ItemCategoryBulkDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Items/ItemCategoryBulkDeleteAlert.tsx diff --git a/src/containers/Alerts/Items/ItemCategoryDeleteAlert.tsx b/apps/client/src/containers/Alerts/Items/ItemCategoryDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Items/ItemCategoryDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Items/ItemCategoryDeleteAlert.tsx diff --git a/src/containers/Alerts/Items/ItemDeleteAlert.tsx b/apps/client/src/containers/Alerts/Items/ItemDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Items/ItemDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Items/ItemDeleteAlert.tsx diff --git a/src/containers/Alerts/Items/ItemInactivateAlert.tsx b/apps/client/src/containers/Alerts/Items/ItemInactivateAlert.tsx similarity index 100% rename from src/containers/Alerts/Items/ItemInactivateAlert.tsx rename to apps/client/src/containers/Alerts/Items/ItemInactivateAlert.tsx diff --git a/src/containers/Alerts/ItemsEntries/ItemsEntriesDeleteAlert.tsx b/apps/client/src/containers/Alerts/ItemsEntries/ItemsEntriesDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/ItemsEntries/ItemsEntriesDeleteAlert.tsx rename to apps/client/src/containers/Alerts/ItemsEntries/ItemsEntriesDeleteAlert.tsx diff --git a/src/containers/Alerts/ManualJournals/JournalBulkDeleteAlert.tsx b/apps/client/src/containers/Alerts/ManualJournals/JournalBulkDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/ManualJournals/JournalBulkDeleteAlert.tsx rename to apps/client/src/containers/Alerts/ManualJournals/JournalBulkDeleteAlert.tsx diff --git a/src/containers/Alerts/ManualJournals/JournalDeleteAlert.tsx b/apps/client/src/containers/Alerts/ManualJournals/JournalDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/ManualJournals/JournalDeleteAlert.tsx rename to apps/client/src/containers/Alerts/ManualJournals/JournalDeleteAlert.tsx diff --git a/src/containers/Alerts/ManualJournals/JournalDeleteEntriesAlert.tsx b/apps/client/src/containers/Alerts/ManualJournals/JournalDeleteEntriesAlert.tsx similarity index 100% rename from src/containers/Alerts/ManualJournals/JournalDeleteEntriesAlert.tsx rename to apps/client/src/containers/Alerts/ManualJournals/JournalDeleteEntriesAlert.tsx diff --git a/src/containers/Alerts/ManualJournals/JournalPublishAlert.tsx b/apps/client/src/containers/Alerts/ManualJournals/JournalPublishAlert.tsx similarity index 100% rename from src/containers/Alerts/ManualJournals/JournalPublishAlert.tsx rename to apps/client/src/containers/Alerts/ManualJournals/JournalPublishAlert.tsx diff --git a/src/containers/Alerts/PaymentMades/ChangingFullAmountAlert.tsx b/apps/client/src/containers/Alerts/PaymentMades/ChangingFullAmountAlert.tsx similarity index 100% rename from src/containers/Alerts/PaymentMades/ChangingFullAmountAlert.tsx rename to apps/client/src/containers/Alerts/PaymentMades/ChangingFullAmountAlert.tsx diff --git a/src/containers/Alerts/PaymentMades/ClearTransactionAlert.tsx b/apps/client/src/containers/Alerts/PaymentMades/ClearTransactionAlert.tsx similarity index 100% rename from src/containers/Alerts/PaymentMades/ClearTransactionAlert.tsx rename to apps/client/src/containers/Alerts/PaymentMades/ClearTransactionAlert.tsx diff --git a/src/containers/Alerts/PaymentMades/ClearningAllLinesAlert.tsx b/apps/client/src/containers/Alerts/PaymentMades/ClearningAllLinesAlert.tsx similarity index 100% rename from src/containers/Alerts/PaymentMades/ClearningAllLinesAlert.tsx rename to apps/client/src/containers/Alerts/PaymentMades/ClearningAllLinesAlert.tsx diff --git a/src/containers/Alerts/PaymentMades/PaymentMadeDeleteAlert.tsx b/apps/client/src/containers/Alerts/PaymentMades/PaymentMadeDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/PaymentMades/PaymentMadeDeleteAlert.tsx rename to apps/client/src/containers/Alerts/PaymentMades/PaymentMadeDeleteAlert.tsx diff --git a/src/containers/Alerts/PaymentReceives/ClearingAllLinesAlert.tsx b/apps/client/src/containers/Alerts/PaymentReceives/ClearingAllLinesAlert.tsx similarity index 100% rename from src/containers/Alerts/PaymentReceives/ClearingAllLinesAlert.tsx rename to apps/client/src/containers/Alerts/PaymentReceives/ClearingAllLinesAlert.tsx diff --git a/src/containers/Alerts/PaymentReceives/PaymentReceiveDeleteAlert.tsx b/apps/client/src/containers/Alerts/PaymentReceives/PaymentReceiveDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/PaymentReceives/PaymentReceiveDeleteAlert.tsx rename to apps/client/src/containers/Alerts/PaymentReceives/PaymentReceiveDeleteAlert.tsx diff --git a/src/containers/Alerts/Receipts/ReceiptCloseAlert.tsx b/apps/client/src/containers/Alerts/Receipts/ReceiptCloseAlert.tsx similarity index 100% rename from src/containers/Alerts/Receipts/ReceiptCloseAlert.tsx rename to apps/client/src/containers/Alerts/Receipts/ReceiptCloseAlert.tsx diff --git a/src/containers/Alerts/Receipts/ReceiptDeleteAlert.tsx b/apps/client/src/containers/Alerts/Receipts/ReceiptDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Receipts/ReceiptDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Receipts/ReceiptDeleteAlert.tsx diff --git a/src/containers/Alerts/Roles/RoleDeleteAlert.tsx b/apps/client/src/containers/Alerts/Roles/RoleDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Roles/RoleDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Roles/RoleDeleteAlert.tsx diff --git a/src/containers/Alerts/TransactionLocking/cancelUnlockingPartialAlert.tsx b/apps/client/src/containers/Alerts/TransactionLocking/cancelUnlockingPartialAlert.tsx similarity index 100% rename from src/containers/Alerts/TransactionLocking/cancelUnlockingPartialAlert.tsx rename to apps/client/src/containers/Alerts/TransactionLocking/cancelUnlockingPartialAlert.tsx diff --git a/src/containers/Alerts/Users/UserActivateAlert.tsx b/apps/client/src/containers/Alerts/Users/UserActivateAlert.tsx similarity index 100% rename from src/containers/Alerts/Users/UserActivateAlert.tsx rename to apps/client/src/containers/Alerts/Users/UserActivateAlert.tsx diff --git a/src/containers/Alerts/Users/UserDeleteAlert.tsx b/apps/client/src/containers/Alerts/Users/UserDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Users/UserDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Users/UserDeleteAlert.tsx diff --git a/src/containers/Alerts/Users/UserInactivateAlert.tsx b/apps/client/src/containers/Alerts/Users/UserInactivateAlert.tsx similarity index 100% rename from src/containers/Alerts/Users/UserInactivateAlert.tsx rename to apps/client/src/containers/Alerts/Users/UserInactivateAlert.tsx diff --git a/src/containers/Alerts/VendorCeditNotes/ReconcileVendorCreditDeleteAlert.tsx b/apps/client/src/containers/Alerts/VendorCeditNotes/ReconcileVendorCreditDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/VendorCeditNotes/ReconcileVendorCreditDeleteAlert.tsx rename to apps/client/src/containers/Alerts/VendorCeditNotes/ReconcileVendorCreditDeleteAlert.tsx diff --git a/src/containers/Alerts/VendorCeditNotes/RefundVendorCreditDeleteAlert.tsx b/apps/client/src/containers/Alerts/VendorCeditNotes/RefundVendorCreditDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/VendorCeditNotes/RefundVendorCreditDeleteAlert.tsx rename to apps/client/src/containers/Alerts/VendorCeditNotes/RefundVendorCreditDeleteAlert.tsx diff --git a/src/containers/Alerts/VendorCeditNotes/VendorCreditDeleteAlert.tsx b/apps/client/src/containers/Alerts/VendorCeditNotes/VendorCreditDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/VendorCeditNotes/VendorCreditDeleteAlert.tsx rename to apps/client/src/containers/Alerts/VendorCeditNotes/VendorCreditDeleteAlert.tsx diff --git a/src/containers/Alerts/VendorCeditNotes/VendorCreditOpenedAlert.tsx b/apps/client/src/containers/Alerts/VendorCeditNotes/VendorCreditOpenedAlert.tsx similarity index 100% rename from src/containers/Alerts/VendorCeditNotes/VendorCreditOpenedAlert.tsx rename to apps/client/src/containers/Alerts/VendorCeditNotes/VendorCreditOpenedAlert.tsx diff --git a/src/containers/Alerts/Vendors/VendorActivateAlert.tsx b/apps/client/src/containers/Alerts/Vendors/VendorActivateAlert.tsx similarity index 100% rename from src/containers/Alerts/Vendors/VendorActivateAlert.tsx rename to apps/client/src/containers/Alerts/Vendors/VendorActivateAlert.tsx diff --git a/src/containers/Alerts/Vendors/VendorDeleteAlert.tsx b/apps/client/src/containers/Alerts/Vendors/VendorDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Vendors/VendorDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Vendors/VendorDeleteAlert.tsx diff --git a/src/containers/Alerts/Vendors/VendorInactivateAlert.tsx b/apps/client/src/containers/Alerts/Vendors/VendorInactivateAlert.tsx similarity index 100% rename from src/containers/Alerts/Vendors/VendorInactivateAlert.tsx rename to apps/client/src/containers/Alerts/Vendors/VendorInactivateAlert.tsx diff --git a/src/containers/Alerts/Warehouses/WarehouseDeleteAlert.tsx b/apps/client/src/containers/Alerts/Warehouses/WarehouseDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/Warehouses/WarehouseDeleteAlert.tsx rename to apps/client/src/containers/Alerts/Warehouses/WarehouseDeleteAlert.tsx diff --git a/src/containers/Alerts/WarehousesTransfer/TransferredWarehouseTransferAlert.tsx b/apps/client/src/containers/Alerts/WarehousesTransfer/TransferredWarehouseTransferAlert.tsx similarity index 100% rename from src/containers/Alerts/WarehousesTransfer/TransferredWarehouseTransferAlert.tsx rename to apps/client/src/containers/Alerts/WarehousesTransfer/TransferredWarehouseTransferAlert.tsx diff --git a/src/containers/Alerts/WarehousesTransfer/WarehouseMarkPrimaryAlert.tsx b/apps/client/src/containers/Alerts/WarehousesTransfer/WarehouseMarkPrimaryAlert.tsx similarity index 100% rename from src/containers/Alerts/WarehousesTransfer/WarehouseMarkPrimaryAlert.tsx rename to apps/client/src/containers/Alerts/WarehousesTransfer/WarehouseMarkPrimaryAlert.tsx diff --git a/src/containers/Alerts/WarehousesTransfer/WarehouseTransferDeleteAlert.tsx b/apps/client/src/containers/Alerts/WarehousesTransfer/WarehouseTransferDeleteAlert.tsx similarity index 100% rename from src/containers/Alerts/WarehousesTransfer/WarehouseTransferDeleteAlert.tsx rename to apps/client/src/containers/Alerts/WarehousesTransfer/WarehouseTransferDeleteAlert.tsx diff --git a/src/containers/Alerts/WarehousesTransfer/WarehouseTransferInitiateAlert.tsx b/apps/client/src/containers/Alerts/WarehousesTransfer/WarehouseTransferInitiateAlert.tsx similarity index 100% rename from src/containers/Alerts/WarehousesTransfer/WarehouseTransferInitiateAlert.tsx rename to apps/client/src/containers/Alerts/WarehousesTransfer/WarehouseTransferInitiateAlert.tsx diff --git a/src/containers/AlertsContainer/components.tsx b/apps/client/src/containers/AlertsContainer/components.tsx similarity index 100% rename from src/containers/AlertsContainer/components.tsx rename to apps/client/src/containers/AlertsContainer/components.tsx diff --git a/src/containers/AlertsContainer/index.tsx b/apps/client/src/containers/AlertsContainer/index.tsx similarity index 100% rename from src/containers/AlertsContainer/index.tsx rename to apps/client/src/containers/AlertsContainer/index.tsx diff --git a/src/containers/AlertsContainer/registered.tsx b/apps/client/src/containers/AlertsContainer/registered.tsx similarity index 100% rename from src/containers/AlertsContainer/registered.tsx rename to apps/client/src/containers/AlertsContainer/registered.tsx diff --git a/src/containers/Authentication/AuthCopyright.tsx b/apps/client/src/containers/Authentication/AuthCopyright.tsx similarity index 100% rename from src/containers/Authentication/AuthCopyright.tsx rename to apps/client/src/containers/Authentication/AuthCopyright.tsx diff --git a/src/containers/Authentication/AuthInsider.tsx b/apps/client/src/containers/Authentication/AuthInsider.tsx similarity index 100% rename from src/containers/Authentication/AuthInsider.tsx rename to apps/client/src/containers/Authentication/AuthInsider.tsx diff --git a/src/containers/Authentication/InviteAccept.tsx b/apps/client/src/containers/Authentication/InviteAccept.tsx similarity index 100% rename from src/containers/Authentication/InviteAccept.tsx rename to apps/client/src/containers/Authentication/InviteAccept.tsx diff --git a/src/containers/Authentication/InviteAcceptForm.tsx b/apps/client/src/containers/Authentication/InviteAcceptForm.tsx similarity index 100% rename from src/containers/Authentication/InviteAcceptForm.tsx rename to apps/client/src/containers/Authentication/InviteAcceptForm.tsx diff --git a/src/containers/Authentication/InviteAcceptFormContent.tsx b/apps/client/src/containers/Authentication/InviteAcceptFormContent.tsx similarity index 100% rename from src/containers/Authentication/InviteAcceptFormContent.tsx rename to apps/client/src/containers/Authentication/InviteAcceptFormContent.tsx diff --git a/src/containers/Authentication/InviteAcceptProvider.tsx b/apps/client/src/containers/Authentication/InviteAcceptProvider.tsx similarity index 100% rename from src/containers/Authentication/InviteAcceptProvider.tsx rename to apps/client/src/containers/Authentication/InviteAcceptProvider.tsx diff --git a/src/containers/Authentication/Login.tsx b/apps/client/src/containers/Authentication/Login.tsx similarity index 100% rename from src/containers/Authentication/Login.tsx rename to apps/client/src/containers/Authentication/Login.tsx diff --git a/src/containers/Authentication/LoginForm.tsx b/apps/client/src/containers/Authentication/LoginForm.tsx similarity index 100% rename from src/containers/Authentication/LoginForm.tsx rename to apps/client/src/containers/Authentication/LoginForm.tsx diff --git a/src/containers/Authentication/Register.tsx b/apps/client/src/containers/Authentication/Register.tsx similarity index 100% rename from src/containers/Authentication/Register.tsx rename to apps/client/src/containers/Authentication/Register.tsx diff --git a/src/containers/Authentication/RegisterForm.tsx b/apps/client/src/containers/Authentication/RegisterForm.tsx similarity index 100% rename from src/containers/Authentication/RegisterForm.tsx rename to apps/client/src/containers/Authentication/RegisterForm.tsx diff --git a/src/containers/Authentication/ResetPassword.tsx b/apps/client/src/containers/Authentication/ResetPassword.tsx similarity index 100% rename from src/containers/Authentication/ResetPassword.tsx rename to apps/client/src/containers/Authentication/ResetPassword.tsx diff --git a/src/containers/Authentication/ResetPasswordForm.tsx b/apps/client/src/containers/Authentication/ResetPasswordForm.tsx similarity index 100% rename from src/containers/Authentication/ResetPasswordForm.tsx rename to apps/client/src/containers/Authentication/ResetPasswordForm.tsx diff --git a/src/containers/Authentication/SendResetPassword.tsx b/apps/client/src/containers/Authentication/SendResetPassword.tsx similarity index 100% rename from src/containers/Authentication/SendResetPassword.tsx rename to apps/client/src/containers/Authentication/SendResetPassword.tsx diff --git a/src/containers/Authentication/SendResetPasswordForm.tsx b/apps/client/src/containers/Authentication/SendResetPasswordForm.tsx similarity index 100% rename from src/containers/Authentication/SendResetPasswordForm.tsx rename to apps/client/src/containers/Authentication/SendResetPasswordForm.tsx diff --git a/src/containers/Authentication/components.tsx b/apps/client/src/containers/Authentication/components.tsx similarity index 100% rename from src/containers/Authentication/components.tsx rename to apps/client/src/containers/Authentication/components.tsx diff --git a/src/containers/Authentication/utils.tsx b/apps/client/src/containers/Authentication/utils.tsx similarity index 100% rename from src/containers/Authentication/utils.tsx rename to apps/client/src/containers/Authentication/utils.tsx diff --git a/src/containers/Authentication/withAuthentication.tsx b/apps/client/src/containers/Authentication/withAuthentication.tsx similarity index 100% rename from src/containers/Authentication/withAuthentication.tsx rename to apps/client/src/containers/Authentication/withAuthentication.tsx diff --git a/src/containers/Authentication/withAuthenticationActions.tsx b/apps/client/src/containers/Authentication/withAuthenticationActions.tsx similarity index 100% rename from src/containers/Authentication/withAuthenticationActions.tsx rename to apps/client/src/containers/Authentication/withAuthenticationActions.tsx diff --git a/src/containers/CashFlow/AccountTransactions/AccountTransactionsActionsBar.tsx b/apps/client/src/containers/CashFlow/AccountTransactions/AccountTransactionsActionsBar.tsx similarity index 100% rename from src/containers/CashFlow/AccountTransactions/AccountTransactionsActionsBar.tsx rename to apps/client/src/containers/CashFlow/AccountTransactions/AccountTransactionsActionsBar.tsx diff --git a/src/containers/CashFlow/AccountTransactions/AccountTransactionsAlerts.tsx b/apps/client/src/containers/CashFlow/AccountTransactions/AccountTransactionsAlerts.tsx similarity index 100% rename from src/containers/CashFlow/AccountTransactions/AccountTransactionsAlerts.tsx rename to apps/client/src/containers/CashFlow/AccountTransactions/AccountTransactionsAlerts.tsx diff --git a/src/containers/CashFlow/AccountTransactions/AccountTransactionsDataTable.tsx b/apps/client/src/containers/CashFlow/AccountTransactions/AccountTransactionsDataTable.tsx similarity index 100% rename from src/containers/CashFlow/AccountTransactions/AccountTransactionsDataTable.tsx rename to apps/client/src/containers/CashFlow/AccountTransactions/AccountTransactionsDataTable.tsx diff --git a/src/containers/CashFlow/AccountTransactions/AccountTransactionsDetailsBar.tsx b/apps/client/src/containers/CashFlow/AccountTransactions/AccountTransactionsDetailsBar.tsx similarity index 100% rename from src/containers/CashFlow/AccountTransactions/AccountTransactionsDetailsBar.tsx rename to apps/client/src/containers/CashFlow/AccountTransactions/AccountTransactionsDetailsBar.tsx diff --git a/src/containers/CashFlow/AccountTransactions/AccountTransactionsList.tsx b/apps/client/src/containers/CashFlow/AccountTransactions/AccountTransactionsList.tsx similarity index 100% rename from src/containers/CashFlow/AccountTransactions/AccountTransactionsList.tsx rename to apps/client/src/containers/CashFlow/AccountTransactions/AccountTransactionsList.tsx diff --git a/src/containers/CashFlow/AccountTransactions/AccountTransactionsProvider.tsx b/apps/client/src/containers/CashFlow/AccountTransactions/AccountTransactionsProvider.tsx similarity index 100% rename from src/containers/CashFlow/AccountTransactions/AccountTransactionsProvider.tsx rename to apps/client/src/containers/CashFlow/AccountTransactions/AccountTransactionsProvider.tsx diff --git a/src/containers/CashFlow/AccountTransactions/components.tsx b/apps/client/src/containers/CashFlow/AccountTransactions/components.tsx similarity index 100% rename from src/containers/CashFlow/AccountTransactions/components.tsx rename to apps/client/src/containers/CashFlow/AccountTransactions/components.tsx diff --git a/src/containers/CashFlow/AccountTransactions/utils.tsx b/apps/client/src/containers/CashFlow/AccountTransactions/utils.tsx similarity index 100% rename from src/containers/CashFlow/AccountTransactions/utils.tsx rename to apps/client/src/containers/CashFlow/AccountTransactions/utils.tsx diff --git a/src/containers/CashFlow/AccountTransactions/withCashflowAccounts.tsx b/apps/client/src/containers/CashFlow/AccountTransactions/withCashflowAccounts.tsx similarity index 100% rename from src/containers/CashFlow/AccountTransactions/withCashflowAccounts.tsx rename to apps/client/src/containers/CashFlow/AccountTransactions/withCashflowAccounts.tsx diff --git a/src/containers/CashFlow/AccountTransactions/withCashflowAccountsTableActions.tsx b/apps/client/src/containers/CashFlow/AccountTransactions/withCashflowAccountsTableActions.tsx similarity index 100% rename from src/containers/CashFlow/AccountTransactions/withCashflowAccountsTableActions.tsx rename to apps/client/src/containers/CashFlow/AccountTransactions/withCashflowAccountsTableActions.tsx diff --git a/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsActionsBar.tsx b/apps/client/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsActionsBar.tsx similarity index 100% rename from src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsActionsBar.tsx rename to apps/client/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsActionsBar.tsx diff --git a/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsDataTable.tsx b/apps/client/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsDataTable.tsx similarity index 100% rename from src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsDataTable.tsx rename to apps/client/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsDataTable.tsx diff --git a/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsList.tsx b/apps/client/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsList.tsx similarity index 100% rename from src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsList.tsx rename to apps/client/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsList.tsx diff --git a/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsProvider.tsx b/apps/client/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsProvider.tsx similarity index 100% rename from src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsProvider.tsx rename to apps/client/src/containers/CashFlow/CashFlowAccounts/CashFlowAccountsProvider.tsx diff --git a/src/containers/CashFlow/CashFlowAccounts/CashflowAccountsGrid.tsx b/apps/client/src/containers/CashFlow/CashFlowAccounts/CashflowAccountsGrid.tsx similarity index 100% rename from src/containers/CashFlow/CashFlowAccounts/CashflowAccountsGrid.tsx rename to apps/client/src/containers/CashFlow/CashFlowAccounts/CashflowAccountsGrid.tsx diff --git a/src/containers/CashFlow/CashFlowAccounts/components.tsx b/apps/client/src/containers/CashFlow/CashFlowAccounts/components.tsx similarity index 100% rename from src/containers/CashFlow/CashFlowAccounts/components.tsx rename to apps/client/src/containers/CashFlow/CashFlowAccounts/components.tsx diff --git a/src/containers/CashFlow/CashFlowAccounts/utils.tsx b/apps/client/src/containers/CashFlow/CashFlowAccounts/utils.tsx similarity index 100% rename from src/containers/CashFlow/CashFlowAccounts/utils.tsx rename to apps/client/src/containers/CashFlow/CashFlowAccounts/utils.tsx diff --git a/src/containers/Currencies/withCurrencies.tsx b/apps/client/src/containers/Currencies/withCurrencies.tsx similarity index 100% rename from src/containers/Currencies/withCurrencies.tsx rename to apps/client/src/containers/Currencies/withCurrencies.tsx diff --git a/src/containers/Currencies/withCurrenciesActions.tsx b/apps/client/src/containers/Currencies/withCurrenciesActions.tsx similarity index 100% rename from src/containers/Currencies/withCurrenciesActions.tsx rename to apps/client/src/containers/Currencies/withCurrenciesActions.tsx diff --git a/src/containers/Currencies/withCurrencyDetail.tsx b/apps/client/src/containers/Currencies/withCurrencyDetail.tsx similarity index 100% rename from src/containers/Currencies/withCurrencyDetail.tsx rename to apps/client/src/containers/Currencies/withCurrencyDetail.tsx diff --git a/src/containers/Customers/CustomerForm/CustomerAddressTabs.tsx b/apps/client/src/containers/Customers/CustomerForm/CustomerAddressTabs.tsx similarity index 100% rename from src/containers/Customers/CustomerForm/CustomerAddressTabs.tsx rename to apps/client/src/containers/Customers/CustomerForm/CustomerAddressTabs.tsx diff --git a/src/containers/Customers/CustomerForm/CustomerAttachmentTabs.tsx b/apps/client/src/containers/Customers/CustomerForm/CustomerAttachmentTabs.tsx similarity index 100% rename from src/containers/Customers/CustomerForm/CustomerAttachmentTabs.tsx rename to apps/client/src/containers/Customers/CustomerForm/CustomerAttachmentTabs.tsx diff --git a/src/containers/Customers/CustomerForm/CustomerFinancialPanel.tsx b/apps/client/src/containers/Customers/CustomerForm/CustomerFinancialPanel.tsx similarity index 100% rename from src/containers/Customers/CustomerForm/CustomerFinancialPanel.tsx rename to apps/client/src/containers/Customers/CustomerForm/CustomerFinancialPanel.tsx diff --git a/src/containers/Customers/CustomerForm/CustomerFloatingActions.tsx b/apps/client/src/containers/Customers/CustomerForm/CustomerFloatingActions.tsx similarity index 100% rename from src/containers/Customers/CustomerForm/CustomerFloatingActions.tsx rename to apps/client/src/containers/Customers/CustomerForm/CustomerFloatingActions.tsx diff --git a/src/containers/Customers/CustomerForm/CustomerForm.schema.tsx b/apps/client/src/containers/Customers/CustomerForm/CustomerForm.schema.tsx similarity index 100% rename from src/containers/Customers/CustomerForm/CustomerForm.schema.tsx rename to apps/client/src/containers/Customers/CustomerForm/CustomerForm.schema.tsx diff --git a/src/containers/Customers/CustomerForm/CustomerForm.tsx b/apps/client/src/containers/Customers/CustomerForm/CustomerForm.tsx similarity index 100% rename from src/containers/Customers/CustomerForm/CustomerForm.tsx rename to apps/client/src/containers/Customers/CustomerForm/CustomerForm.tsx diff --git a/src/containers/Customers/CustomerForm/CustomerFormAfterPrimarySection.tsx b/apps/client/src/containers/Customers/CustomerForm/CustomerFormAfterPrimarySection.tsx similarity index 100% rename from src/containers/Customers/CustomerForm/CustomerFormAfterPrimarySection.tsx rename to apps/client/src/containers/Customers/CustomerForm/CustomerFormAfterPrimarySection.tsx diff --git a/src/containers/Customers/CustomerForm/CustomerFormFormik.tsx b/apps/client/src/containers/Customers/CustomerForm/CustomerFormFormik.tsx similarity index 100% rename from src/containers/Customers/CustomerForm/CustomerFormFormik.tsx rename to apps/client/src/containers/Customers/CustomerForm/CustomerFormFormik.tsx diff --git a/src/containers/Customers/CustomerForm/CustomerFormPage.tsx b/apps/client/src/containers/Customers/CustomerForm/CustomerFormPage.tsx similarity index 100% rename from src/containers/Customers/CustomerForm/CustomerFormPage.tsx rename to apps/client/src/containers/Customers/CustomerForm/CustomerFormPage.tsx diff --git a/src/containers/Customers/CustomerForm/CustomerFormPrimarySection.tsx b/apps/client/src/containers/Customers/CustomerForm/CustomerFormPrimarySection.tsx similarity index 100% rename from src/containers/Customers/CustomerForm/CustomerFormPrimarySection.tsx rename to apps/client/src/containers/Customers/CustomerForm/CustomerFormPrimarySection.tsx diff --git a/src/containers/Customers/CustomerForm/CustomerFormProvider.tsx b/apps/client/src/containers/Customers/CustomerForm/CustomerFormProvider.tsx similarity index 100% rename from src/containers/Customers/CustomerForm/CustomerFormProvider.tsx rename to apps/client/src/containers/Customers/CustomerForm/CustomerFormProvider.tsx diff --git a/src/containers/Customers/CustomerForm/CustomerNotePanel.tsx b/apps/client/src/containers/Customers/CustomerForm/CustomerNotePanel.tsx similarity index 100% rename from src/containers/Customers/CustomerForm/CustomerNotePanel.tsx rename to apps/client/src/containers/Customers/CustomerForm/CustomerNotePanel.tsx diff --git a/src/containers/Customers/CustomerForm/CustomerTypeRadioField.tsx b/apps/client/src/containers/Customers/CustomerForm/CustomerTypeRadioField.tsx similarity index 100% rename from src/containers/Customers/CustomerForm/CustomerTypeRadioField.tsx rename to apps/client/src/containers/Customers/CustomerForm/CustomerTypeRadioField.tsx diff --git a/src/containers/Customers/CustomerForm/CustomersTabs.tsx b/apps/client/src/containers/Customers/CustomerForm/CustomersTabs.tsx similarity index 100% rename from src/containers/Customers/CustomerForm/CustomersTabs.tsx rename to apps/client/src/containers/Customers/CustomerForm/CustomersTabs.tsx diff --git a/src/containers/Customers/CustomerForm/utils.tsx b/apps/client/src/containers/Customers/CustomerForm/utils.tsx similarity index 100% rename from src/containers/Customers/CustomerForm/utils.tsx rename to apps/client/src/containers/Customers/CustomerForm/utils.tsx diff --git a/src/containers/Customers/CustomersAlerts.tsx b/apps/client/src/containers/Customers/CustomersAlerts.tsx similarity index 100% rename from src/containers/Customers/CustomersAlerts.tsx rename to apps/client/src/containers/Customers/CustomersAlerts.tsx diff --git a/src/containers/Customers/CustomersLanding/CustomersActionsBar.tsx b/apps/client/src/containers/Customers/CustomersLanding/CustomersActionsBar.tsx similarity index 100% rename from src/containers/Customers/CustomersLanding/CustomersActionsBar.tsx rename to apps/client/src/containers/Customers/CustomersLanding/CustomersActionsBar.tsx diff --git a/src/containers/Customers/CustomersLanding/CustomersEmptyStatus.tsx b/apps/client/src/containers/Customers/CustomersLanding/CustomersEmptyStatus.tsx similarity index 100% rename from src/containers/Customers/CustomersLanding/CustomersEmptyStatus.tsx rename to apps/client/src/containers/Customers/CustomersLanding/CustomersEmptyStatus.tsx diff --git a/src/containers/Customers/CustomersLanding/CustomersList.tsx b/apps/client/src/containers/Customers/CustomersLanding/CustomersList.tsx similarity index 100% rename from src/containers/Customers/CustomersLanding/CustomersList.tsx rename to apps/client/src/containers/Customers/CustomersLanding/CustomersList.tsx diff --git a/src/containers/Customers/CustomersLanding/CustomersListProvider.tsx b/apps/client/src/containers/Customers/CustomersLanding/CustomersListProvider.tsx similarity index 100% rename from src/containers/Customers/CustomersLanding/CustomersListProvider.tsx rename to apps/client/src/containers/Customers/CustomersLanding/CustomersListProvider.tsx diff --git a/src/containers/Customers/CustomersLanding/CustomersTable.tsx b/apps/client/src/containers/Customers/CustomersLanding/CustomersTable.tsx similarity index 100% rename from src/containers/Customers/CustomersLanding/CustomersTable.tsx rename to apps/client/src/containers/Customers/CustomersLanding/CustomersTable.tsx diff --git a/src/containers/Customers/CustomersLanding/CustomersViewsTabs.tsx b/apps/client/src/containers/Customers/CustomersLanding/CustomersViewsTabs.tsx similarity index 100% rename from src/containers/Customers/CustomersLanding/CustomersViewsTabs.tsx rename to apps/client/src/containers/Customers/CustomersLanding/CustomersViewsTabs.tsx diff --git a/src/containers/Customers/CustomersLanding/components.tsx b/apps/client/src/containers/Customers/CustomersLanding/components.tsx similarity index 100% rename from src/containers/Customers/CustomersLanding/components.tsx rename to apps/client/src/containers/Customers/CustomersLanding/components.tsx diff --git a/src/containers/Customers/CustomersLanding/utils.tsx b/apps/client/src/containers/Customers/CustomersLanding/utils.tsx similarity index 100% rename from src/containers/Customers/CustomersLanding/utils.tsx rename to apps/client/src/containers/Customers/CustomersLanding/utils.tsx diff --git a/src/containers/Customers/CustomersLanding/withCustomers.tsx b/apps/client/src/containers/Customers/CustomersLanding/withCustomers.tsx similarity index 100% rename from src/containers/Customers/CustomersLanding/withCustomers.tsx rename to apps/client/src/containers/Customers/CustomersLanding/withCustomers.tsx diff --git a/src/containers/Customers/CustomersLanding/withCustomersActions.tsx b/apps/client/src/containers/Customers/CustomersLanding/withCustomersActions.tsx similarity index 100% rename from src/containers/Customers/CustomersLanding/withCustomersActions.tsx rename to apps/client/src/containers/Customers/CustomersLanding/withCustomersActions.tsx diff --git a/src/containers/Customers/CustomersUniversalSearch.tsx b/apps/client/src/containers/Customers/CustomersUniversalSearch.tsx similarity index 100% rename from src/containers/Customers/CustomersUniversalSearch.tsx rename to apps/client/src/containers/Customers/CustomersUniversalSearch.tsx diff --git a/src/containers/Customers/utils.tsx b/apps/client/src/containers/Customers/utils.tsx similarity index 100% rename from src/containers/Customers/utils.tsx rename to apps/client/src/containers/Customers/utils.tsx diff --git a/src/containers/Customers/withCustomerDetail.tsx b/apps/client/src/containers/Customers/withCustomerDetail.tsx similarity index 100% rename from src/containers/Customers/withCustomerDetail.tsx rename to apps/client/src/containers/Customers/withCustomerDetail.tsx diff --git a/src/containers/Dashboard/Sidebar/Sidebar.tsx b/apps/client/src/containers/Dashboard/Sidebar/Sidebar.tsx similarity index 100% rename from src/containers/Dashboard/Sidebar/Sidebar.tsx rename to apps/client/src/containers/Dashboard/Sidebar/Sidebar.tsx diff --git a/src/containers/Dashboard/Sidebar/SidebarContainer.tsx b/apps/client/src/containers/Dashboard/Sidebar/SidebarContainer.tsx similarity index 100% rename from src/containers/Dashboard/Sidebar/SidebarContainer.tsx rename to apps/client/src/containers/Dashboard/Sidebar/SidebarContainer.tsx diff --git a/src/containers/Dashboard/Sidebar/SidebarHead.tsx b/apps/client/src/containers/Dashboard/Sidebar/SidebarHead.tsx similarity index 100% rename from src/containers/Dashboard/Sidebar/SidebarHead.tsx rename to apps/client/src/containers/Dashboard/Sidebar/SidebarHead.tsx diff --git a/src/containers/Dashboard/Sidebar/SidebarMenu.tsx b/apps/client/src/containers/Dashboard/Sidebar/SidebarMenu.tsx similarity index 100% rename from src/containers/Dashboard/Sidebar/SidebarMenu.tsx rename to apps/client/src/containers/Dashboard/Sidebar/SidebarMenu.tsx diff --git a/src/containers/Dashboard/Sidebar/hooks.tsx b/apps/client/src/containers/Dashboard/Sidebar/hooks.tsx similarity index 100% rename from src/containers/Dashboard/Sidebar/hooks.tsx rename to apps/client/src/containers/Dashboard/Sidebar/hooks.tsx diff --git a/src/containers/Dashboard/Sidebar/interfaces.ts b/apps/client/src/containers/Dashboard/Sidebar/interfaces.ts similarity index 100% rename from src/containers/Dashboard/Sidebar/interfaces.ts rename to apps/client/src/containers/Dashboard/Sidebar/interfaces.ts diff --git a/src/containers/Dashboard/Sidebar/withDashboardSidebar.tsx b/apps/client/src/containers/Dashboard/Sidebar/withDashboardSidebar.tsx similarity index 100% rename from src/containers/Dashboard/Sidebar/withDashboardSidebar.tsx rename to apps/client/src/containers/Dashboard/Sidebar/withDashboardSidebar.tsx diff --git a/src/containers/Dashboard/Sidebar/withDashboardSidebarActions.tsx b/apps/client/src/containers/Dashboard/Sidebar/withDashboardSidebarActions.tsx similarity index 100% rename from src/containers/Dashboard/Sidebar/withDashboardSidebarActions.tsx rename to apps/client/src/containers/Dashboard/Sidebar/withDashboardSidebarActions.tsx diff --git a/src/containers/Dashboard/SidebarOverlay/SidebarOverlay.tsx b/apps/client/src/containers/Dashboard/SidebarOverlay/SidebarOverlay.tsx similarity index 100% rename from src/containers/Dashboard/SidebarOverlay/SidebarOverlay.tsx rename to apps/client/src/containers/Dashboard/SidebarOverlay/SidebarOverlay.tsx diff --git a/src/containers/Dashboard/SidebarOverlay/SidebarOverlayBinded.tsx b/apps/client/src/containers/Dashboard/SidebarOverlay/SidebarOverlayBinded.tsx similarity index 100% rename from src/containers/Dashboard/SidebarOverlay/SidebarOverlayBinded.tsx rename to apps/client/src/containers/Dashboard/SidebarOverlay/SidebarOverlayBinded.tsx diff --git a/src/containers/Dashboard/SidebarOverlay/SidebarOverlayContainer.tsx b/apps/client/src/containers/Dashboard/SidebarOverlay/SidebarOverlayContainer.tsx similarity index 100% rename from src/containers/Dashboard/SidebarOverlay/SidebarOverlayContainer.tsx rename to apps/client/src/containers/Dashboard/SidebarOverlay/SidebarOverlayContainer.tsx diff --git a/src/containers/Dashboard/SidebarOverlay/index.ts b/apps/client/src/containers/Dashboard/SidebarOverlay/index.ts similarity index 100% rename from src/containers/Dashboard/SidebarOverlay/index.ts rename to apps/client/src/containers/Dashboard/SidebarOverlay/index.ts diff --git a/src/containers/Dashboard/withDashboard.tsx b/apps/client/src/containers/Dashboard/withDashboard.tsx similarity index 100% rename from src/containers/Dashboard/withDashboard.tsx rename to apps/client/src/containers/Dashboard/withDashboard.tsx diff --git a/src/containers/Dashboard/withDashboardActions.tsx b/apps/client/src/containers/Dashboard/withDashboardActions.tsx similarity index 100% rename from src/containers/Dashboard/withDashboardActions.tsx rename to apps/client/src/containers/Dashboard/withDashboardActions.tsx diff --git a/src/containers/Dialog/withDialogActions.tsx b/apps/client/src/containers/Dialog/withDialogActions.tsx similarity index 100% rename from src/containers/Dialog/withDialogActions.tsx rename to apps/client/src/containers/Dialog/withDialogActions.tsx diff --git a/src/containers/Dialogs/AccountDialog/AccountDialogContent.tsx b/apps/client/src/containers/Dialogs/AccountDialog/AccountDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/AccountDialog/AccountDialogContent.tsx rename to apps/client/src/containers/Dialogs/AccountDialog/AccountDialogContent.tsx diff --git a/src/containers/Dialogs/AccountDialog/AccountDialogForm.tsx b/apps/client/src/containers/Dialogs/AccountDialog/AccountDialogForm.tsx similarity index 100% rename from src/containers/Dialogs/AccountDialog/AccountDialogForm.tsx rename to apps/client/src/containers/Dialogs/AccountDialog/AccountDialogForm.tsx diff --git a/src/containers/Dialogs/AccountDialog/AccountDialogFormContent.tsx b/apps/client/src/containers/Dialogs/AccountDialog/AccountDialogFormContent.tsx similarity index 100% rename from src/containers/Dialogs/AccountDialog/AccountDialogFormContent.tsx rename to apps/client/src/containers/Dialogs/AccountDialog/AccountDialogFormContent.tsx diff --git a/src/containers/Dialogs/AccountDialog/AccountDialogProvider.tsx b/apps/client/src/containers/Dialogs/AccountDialog/AccountDialogProvider.tsx similarity index 100% rename from src/containers/Dialogs/AccountDialog/AccountDialogProvider.tsx rename to apps/client/src/containers/Dialogs/AccountDialog/AccountDialogProvider.tsx diff --git a/src/containers/Dialogs/AccountDialog/AccountForm.schema.tsx b/apps/client/src/containers/Dialogs/AccountDialog/AccountForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/AccountDialog/AccountForm.schema.tsx rename to apps/client/src/containers/Dialogs/AccountDialog/AccountForm.schema.tsx diff --git a/src/containers/Dialogs/AccountDialog/index.tsx b/apps/client/src/containers/Dialogs/AccountDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/AccountDialog/index.tsx rename to apps/client/src/containers/Dialogs/AccountDialog/index.tsx diff --git a/src/containers/Dialogs/AccountDialog/utils.tsx b/apps/client/src/containers/Dialogs/AccountDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/AccountDialog/utils.tsx rename to apps/client/src/containers/Dialogs/AccountDialog/utils.tsx diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostDialogContent.tsx b/apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostDialogContent.tsx rename to apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostDialogContent.tsx diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostDialogProvider.tsx b/apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostDialogProvider.tsx similarity index 100% rename from src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostDialogProvider.tsx rename to apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostDialogProvider.tsx diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostEntriesTable.tsx b/apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostEntriesTable.tsx similarity index 100% rename from src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostEntriesTable.tsx rename to apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostEntriesTable.tsx diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFloatingActions.tsx b/apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFloatingActions.tsx rename to apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFloatingActions.tsx diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostForm.schema.tsx b/apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostForm.schema.tsx rename to apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostForm.schema.tsx diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostForm.tsx b/apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostForm.tsx similarity index 100% rename from src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostForm.tsx rename to apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostForm.tsx diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormBody.tsx b/apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormBody.tsx similarity index 100% rename from src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormBody.tsx rename to apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormBody.tsx diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormContent.tsx b/apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormContent.tsx similarity index 100% rename from src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormContent.tsx rename to apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormContent.tsx diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormFields.tsx b/apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormFields.tsx similarity index 100% rename from src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormFields.tsx rename to apps/client/src/containers/Dialogs/AllocateLandedCostDialog/AllocateLandedCostFormFields.tsx diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/index.tsx b/apps/client/src/containers/Dialogs/AllocateLandedCostDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/AllocateLandedCostDialog/index.tsx rename to apps/client/src/containers/Dialogs/AllocateLandedCostDialog/index.tsx diff --git a/src/containers/Dialogs/AllocateLandedCostDialog/utils.tsx b/apps/client/src/containers/Dialogs/AllocateLandedCostDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/AllocateLandedCostDialog/utils.tsx rename to apps/client/src/containers/Dialogs/AllocateLandedCostDialog/utils.tsx diff --git a/src/containers/Dialogs/BadDebtDialog/BadDebtDialogContent.tsx b/apps/client/src/containers/Dialogs/BadDebtDialog/BadDebtDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/BadDebtDialog/BadDebtDialogContent.tsx rename to apps/client/src/containers/Dialogs/BadDebtDialog/BadDebtDialogContent.tsx diff --git a/src/containers/Dialogs/BadDebtDialog/BadDebtForm.schema.tsx b/apps/client/src/containers/Dialogs/BadDebtDialog/BadDebtForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/BadDebtDialog/BadDebtForm.schema.tsx rename to apps/client/src/containers/Dialogs/BadDebtDialog/BadDebtForm.schema.tsx diff --git a/src/containers/Dialogs/BadDebtDialog/BadDebtForm.tsx b/apps/client/src/containers/Dialogs/BadDebtDialog/BadDebtForm.tsx similarity index 100% rename from src/containers/Dialogs/BadDebtDialog/BadDebtForm.tsx rename to apps/client/src/containers/Dialogs/BadDebtDialog/BadDebtForm.tsx diff --git a/src/containers/Dialogs/BadDebtDialog/BadDebtFormContent.tsx b/apps/client/src/containers/Dialogs/BadDebtDialog/BadDebtFormContent.tsx similarity index 100% rename from src/containers/Dialogs/BadDebtDialog/BadDebtFormContent.tsx rename to apps/client/src/containers/Dialogs/BadDebtDialog/BadDebtFormContent.tsx diff --git a/src/containers/Dialogs/BadDebtDialog/BadDebtFormFields.tsx b/apps/client/src/containers/Dialogs/BadDebtDialog/BadDebtFormFields.tsx similarity index 100% rename from src/containers/Dialogs/BadDebtDialog/BadDebtFormFields.tsx rename to apps/client/src/containers/Dialogs/BadDebtDialog/BadDebtFormFields.tsx diff --git a/src/containers/Dialogs/BadDebtDialog/BadDebtFormFloatingActions.tsx b/apps/client/src/containers/Dialogs/BadDebtDialog/BadDebtFormFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/BadDebtDialog/BadDebtFormFloatingActions.tsx rename to apps/client/src/containers/Dialogs/BadDebtDialog/BadDebtFormFloatingActions.tsx diff --git a/src/containers/Dialogs/BadDebtDialog/BadDebtFormProvider.tsx b/apps/client/src/containers/Dialogs/BadDebtDialog/BadDebtFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/BadDebtDialog/BadDebtFormProvider.tsx rename to apps/client/src/containers/Dialogs/BadDebtDialog/BadDebtFormProvider.tsx diff --git a/src/containers/Dialogs/BadDebtDialog/index.tsx b/apps/client/src/containers/Dialogs/BadDebtDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/BadDebtDialog/index.tsx rename to apps/client/src/containers/Dialogs/BadDebtDialog/index.tsx diff --git a/src/containers/Dialogs/BadDebtDialog/utils.tsx b/apps/client/src/containers/Dialogs/BadDebtDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/BadDebtDialog/utils.tsx rename to apps/client/src/containers/Dialogs/BadDebtDialog/utils.tsx diff --git a/src/containers/Dialogs/BillNumberDialog/BillNumberDialogContent.tsx b/apps/client/src/containers/Dialogs/BillNumberDialog/BillNumberDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/BillNumberDialog/BillNumberDialogContent.tsx rename to apps/client/src/containers/Dialogs/BillNumberDialog/BillNumberDialogContent.tsx diff --git a/src/containers/Dialogs/BillNumberDialog/index.tsx b/apps/client/src/containers/Dialogs/BillNumberDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/BillNumberDialog/index.tsx rename to apps/client/src/containers/Dialogs/BillNumberDialog/index.tsx diff --git a/src/containers/Dialogs/BranchActivateDialog/BranchActivateDialogContent.tsx b/apps/client/src/containers/Dialogs/BranchActivateDialog/BranchActivateDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/BranchActivateDialog/BranchActivateDialogContent.tsx rename to apps/client/src/containers/Dialogs/BranchActivateDialog/BranchActivateDialogContent.tsx diff --git a/src/containers/Dialogs/BranchActivateDialog/BranchActivateForm.tsx b/apps/client/src/containers/Dialogs/BranchActivateDialog/BranchActivateForm.tsx similarity index 100% rename from src/containers/Dialogs/BranchActivateDialog/BranchActivateForm.tsx rename to apps/client/src/containers/Dialogs/BranchActivateDialog/BranchActivateForm.tsx diff --git a/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormContent.tsx b/apps/client/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormContent.tsx similarity index 100% rename from src/containers/Dialogs/BranchActivateDialog/BranchActivateFormContent.tsx rename to apps/client/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormContent.tsx diff --git a/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormFloatingActions.tsx b/apps/client/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/BranchActivateDialog/BranchActivateFormFloatingActions.tsx rename to apps/client/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormFloatingActions.tsx diff --git a/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormProvider.tsx b/apps/client/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/BranchActivateDialog/BranchActivateFormProvider.tsx rename to apps/client/src/containers/Dialogs/BranchActivateDialog/BranchActivateFormProvider.tsx diff --git a/src/containers/Dialogs/BranchActivateDialog/index.tsx b/apps/client/src/containers/Dialogs/BranchActivateDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/BranchActivateDialog/index.tsx rename to apps/client/src/containers/Dialogs/BranchActivateDialog/index.tsx diff --git a/src/containers/Dialogs/BranchFormDialog/BranchForm.schema.tsx b/apps/client/src/containers/Dialogs/BranchFormDialog/BranchForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/BranchFormDialog/BranchForm.schema.tsx rename to apps/client/src/containers/Dialogs/BranchFormDialog/BranchForm.schema.tsx diff --git a/src/containers/Dialogs/BranchFormDialog/BranchForm.tsx b/apps/client/src/containers/Dialogs/BranchFormDialog/BranchForm.tsx similarity index 100% rename from src/containers/Dialogs/BranchFormDialog/BranchForm.tsx rename to apps/client/src/containers/Dialogs/BranchFormDialog/BranchForm.tsx diff --git a/src/containers/Dialogs/BranchFormDialog/BranchFormContent.tsx b/apps/client/src/containers/Dialogs/BranchFormDialog/BranchFormContent.tsx similarity index 100% rename from src/containers/Dialogs/BranchFormDialog/BranchFormContent.tsx rename to apps/client/src/containers/Dialogs/BranchFormDialog/BranchFormContent.tsx diff --git a/src/containers/Dialogs/BranchFormDialog/BranchFormDialogContent.tsx b/apps/client/src/containers/Dialogs/BranchFormDialog/BranchFormDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/BranchFormDialog/BranchFormDialogContent.tsx rename to apps/client/src/containers/Dialogs/BranchFormDialog/BranchFormDialogContent.tsx diff --git a/src/containers/Dialogs/BranchFormDialog/BranchFormFields.tsx b/apps/client/src/containers/Dialogs/BranchFormDialog/BranchFormFields.tsx similarity index 100% rename from src/containers/Dialogs/BranchFormDialog/BranchFormFields.tsx rename to apps/client/src/containers/Dialogs/BranchFormDialog/BranchFormFields.tsx diff --git a/src/containers/Dialogs/BranchFormDialog/BranchFormFloatingActions.tsx b/apps/client/src/containers/Dialogs/BranchFormDialog/BranchFormFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/BranchFormDialog/BranchFormFloatingActions.tsx rename to apps/client/src/containers/Dialogs/BranchFormDialog/BranchFormFloatingActions.tsx diff --git a/src/containers/Dialogs/BranchFormDialog/BranchFormProvider.tsx b/apps/client/src/containers/Dialogs/BranchFormDialog/BranchFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/BranchFormDialog/BranchFormProvider.tsx rename to apps/client/src/containers/Dialogs/BranchFormDialog/BranchFormProvider.tsx diff --git a/src/containers/Dialogs/BranchFormDialog/index.tsx b/apps/client/src/containers/Dialogs/BranchFormDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/BranchFormDialog/index.tsx rename to apps/client/src/containers/Dialogs/BranchFormDialog/index.tsx diff --git a/src/containers/Dialogs/BranchFormDialog/utils.tsx b/apps/client/src/containers/Dialogs/BranchFormDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/BranchFormDialog/utils.tsx rename to apps/client/src/containers/Dialogs/BranchFormDialog/utils.tsx diff --git a/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateDialogContent.tsx b/apps/client/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateDialogContent.tsx rename to apps/client/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateDialogContent.tsx diff --git a/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateForm.tsx b/apps/client/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateForm.tsx similarity index 100% rename from src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateForm.tsx rename to apps/client/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateForm.tsx diff --git a/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateProvider.tsx b/apps/client/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateProvider.tsx similarity index 100% rename from src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateProvider.tsx rename to apps/client/src/containers/Dialogs/ContactDuplicateDialog/ContactDuplicateProvider.tsx diff --git a/src/containers/Dialogs/ContactDuplicateDialog/index.tsx b/apps/client/src/containers/Dialogs/ContactDuplicateDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/ContactDuplicateDialog/index.tsx rename to apps/client/src/containers/Dialogs/ContactDuplicateDialog/index.tsx diff --git a/src/containers/Dialogs/CreditNoteNumberDialog/CreditNoteNumberDialogContent.tsx b/apps/client/src/containers/Dialogs/CreditNoteNumberDialog/CreditNoteNumberDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/CreditNoteNumberDialog/CreditNoteNumberDialogContent.tsx rename to apps/client/src/containers/Dialogs/CreditNoteNumberDialog/CreditNoteNumberDialogContent.tsx diff --git a/src/containers/Dialogs/CreditNoteNumberDialog/CreditNoteNumberDialogProvider.tsx b/apps/client/src/containers/Dialogs/CreditNoteNumberDialog/CreditNoteNumberDialogProvider.tsx similarity index 100% rename from src/containers/Dialogs/CreditNoteNumberDialog/CreditNoteNumberDialogProvider.tsx rename to apps/client/src/containers/Dialogs/CreditNoteNumberDialog/CreditNoteNumberDialogProvider.tsx diff --git a/src/containers/Dialogs/CreditNoteNumberDialog/index.tsx b/apps/client/src/containers/Dialogs/CreditNoteNumberDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/CreditNoteNumberDialog/index.tsx rename to apps/client/src/containers/Dialogs/CreditNoteNumberDialog/index.tsx diff --git a/src/containers/Dialogs/CreditNotePdfPreviewDialog/CreditNotePdfPreviewDialogContent.tsx b/apps/client/src/containers/Dialogs/CreditNotePdfPreviewDialog/CreditNotePdfPreviewDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/CreditNotePdfPreviewDialog/CreditNotePdfPreviewDialogContent.tsx rename to apps/client/src/containers/Dialogs/CreditNotePdfPreviewDialog/CreditNotePdfPreviewDialogContent.tsx diff --git a/src/containers/Dialogs/CreditNotePdfPreviewDialog/index.tsx b/apps/client/src/containers/Dialogs/CreditNotePdfPreviewDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/CreditNotePdfPreviewDialog/index.tsx rename to apps/client/src/containers/Dialogs/CreditNotePdfPreviewDialog/index.tsx diff --git a/src/containers/Dialogs/CurrencyFormDialog/CurrencyForm.schema.tsx b/apps/client/src/containers/Dialogs/CurrencyFormDialog/CurrencyForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/CurrencyFormDialog/CurrencyForm.schema.tsx rename to apps/client/src/containers/Dialogs/CurrencyFormDialog/CurrencyForm.schema.tsx diff --git a/src/containers/Dialogs/CurrencyFormDialog/CurrencyForm.tsx b/apps/client/src/containers/Dialogs/CurrencyFormDialog/CurrencyForm.tsx similarity index 100% rename from src/containers/Dialogs/CurrencyFormDialog/CurrencyForm.tsx rename to apps/client/src/containers/Dialogs/CurrencyFormDialog/CurrencyForm.tsx diff --git a/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormContent.tsx b/apps/client/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormContent.tsx similarity index 100% rename from src/containers/Dialogs/CurrencyFormDialog/CurrencyFormContent.tsx rename to apps/client/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormContent.tsx diff --git a/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormDialogContent.tsx b/apps/client/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/CurrencyFormDialog/CurrencyFormDialogContent.tsx rename to apps/client/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormDialogContent.tsx diff --git a/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormFields.tsx b/apps/client/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormFields.tsx similarity index 100% rename from src/containers/Dialogs/CurrencyFormDialog/CurrencyFormFields.tsx rename to apps/client/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormFields.tsx diff --git a/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormFooter.tsx b/apps/client/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormFooter.tsx similarity index 100% rename from src/containers/Dialogs/CurrencyFormDialog/CurrencyFormFooter.tsx rename to apps/client/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormFooter.tsx diff --git a/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormProvider.tsx b/apps/client/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/CurrencyFormDialog/CurrencyFormProvider.tsx rename to apps/client/src/containers/Dialogs/CurrencyFormDialog/CurrencyFormProvider.tsx diff --git a/src/containers/Dialogs/CurrencyFormDialog/index.tsx b/apps/client/src/containers/Dialogs/CurrencyFormDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/CurrencyFormDialog/index.tsx rename to apps/client/src/containers/Dialogs/CurrencyFormDialog/index.tsx diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceDialogContent.tsx b/apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceDialogContent.tsx rename to apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceDialogContent.tsx diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFields.tsx b/apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFields.tsx similarity index 100% rename from src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFields.tsx rename to apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFields.tsx diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceForm.schema.tsx b/apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceForm.schema.tsx rename to apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceForm.schema.tsx diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceForm.tsx b/apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceForm.tsx similarity index 100% rename from src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceForm.tsx rename to apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceForm.tsx diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormContent.tsx b/apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormContent.tsx similarity index 100% rename from src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormContent.tsx rename to apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormContent.tsx diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormFloatingActions.tsx b/apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormFloatingActions.tsx rename to apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormFloatingActions.tsx diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormProvider.tsx b/apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormProvider.tsx rename to apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/CustomerOpeningBalanceFormProvider.tsx diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/index.tsx b/apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/CustomerOpeningBalanceDialog/index.tsx rename to apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/index.tsx diff --git a/src/containers/Dialogs/CustomerOpeningBalanceDialog/utils.tsx b/apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/CustomerOpeningBalanceDialog/utils.tsx rename to apps/client/src/containers/Dialogs/CustomerOpeningBalanceDialog/utils.tsx diff --git a/src/containers/Dialogs/EstimateNumberDialog/EstimateNumberDialogContent.tsx b/apps/client/src/containers/Dialogs/EstimateNumberDialog/EstimateNumberDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/EstimateNumberDialog/EstimateNumberDialogContent.tsx rename to apps/client/src/containers/Dialogs/EstimateNumberDialog/EstimateNumberDialogContent.tsx diff --git a/src/containers/Dialogs/EstimateNumberDialog/index.tsx b/apps/client/src/containers/Dialogs/EstimateNumberDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/EstimateNumberDialog/index.tsx rename to apps/client/src/containers/Dialogs/EstimateNumberDialog/index.tsx diff --git a/src/containers/Dialogs/EstimatePdfPreviewDialog/EstimatePdfPreviewDialogContent.tsx b/apps/client/src/containers/Dialogs/EstimatePdfPreviewDialog/EstimatePdfPreviewDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/EstimatePdfPreviewDialog/EstimatePdfPreviewDialogContent.tsx rename to apps/client/src/containers/Dialogs/EstimatePdfPreviewDialog/EstimatePdfPreviewDialogContent.tsx diff --git a/src/containers/Dialogs/EstimatePdfPreviewDialog/index.tsx b/apps/client/src/containers/Dialogs/EstimatePdfPreviewDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/EstimatePdfPreviewDialog/index.tsx rename to apps/client/src/containers/Dialogs/EstimatePdfPreviewDialog/index.tsx diff --git a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateForm.schema.tsx b/apps/client/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateForm.schema.tsx rename to apps/client/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateForm.schema.tsx diff --git a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateForm.tsx b/apps/client/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateForm.tsx similarity index 100% rename from src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateForm.tsx rename to apps/client/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateForm.tsx diff --git a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormContent.tsx b/apps/client/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormContent.tsx similarity index 100% rename from src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormContent.tsx rename to apps/client/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormContent.tsx diff --git a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormDialogContent.tsx b/apps/client/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormDialogContent.tsx rename to apps/client/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormDialogContent.tsx diff --git a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormFields.tsx b/apps/client/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormFields.tsx similarity index 100% rename from src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormFields.tsx rename to apps/client/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormFields.tsx diff --git a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormFooter.tsx b/apps/client/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormFooter.tsx similarity index 100% rename from src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormFooter.tsx rename to apps/client/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormFooter.tsx diff --git a/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormProvider.tsx b/apps/client/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormProvider.tsx rename to apps/client/src/containers/Dialogs/ExchangeRateFormDialog/ExchangeRateFormProvider.tsx diff --git a/src/containers/Dialogs/ExchangeRateFormDialog/index.tsx b/apps/client/src/containers/Dialogs/ExchangeRateFormDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/ExchangeRateFormDialog/index.tsx rename to apps/client/src/containers/Dialogs/ExchangeRateFormDialog/index.tsx diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/DecrementAdjustmentFields.tsx b/apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/DecrementAdjustmentFields.tsx similarity index 100% rename from src/containers/Dialogs/InventoryAdjustmentFormDialog/DecrementAdjustmentFields.tsx rename to apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/DecrementAdjustmentFields.tsx diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/IncrementAdjustmentFields.tsx b/apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/IncrementAdjustmentFields.tsx similarity index 100% rename from src/containers/Dialogs/InventoryAdjustmentFormDialog/IncrementAdjustmentFields.tsx rename to apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/IncrementAdjustmentFields.tsx diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFloatingActions.tsx b/apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFloatingActions.tsx rename to apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFloatingActions.tsx diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentForm.schema.tsx b/apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentForm.schema.tsx rename to apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentForm.schema.tsx diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentForm.tsx b/apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentForm.tsx similarity index 100% rename from src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentForm.tsx rename to apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentForm.tsx diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormContent.tsx b/apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormContent.tsx similarity index 100% rename from src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormContent.tsx rename to apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormContent.tsx diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormDialogContent.tsx b/apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormDialogContent.tsx rename to apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormDialogContent.tsx diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormDialogFields.tsx b/apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormDialogFields.tsx similarity index 100% rename from src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormDialogFields.tsx rename to apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormDialogFields.tsx diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormProvider.tsx b/apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormProvider.tsx rename to apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentFormProvider.tsx diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentQuantityFields.tsx b/apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentQuantityFields.tsx similarity index 100% rename from src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentQuantityFields.tsx rename to apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/InventoryAdjustmentQuantityFields.tsx diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/index.tsx b/apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/InventoryAdjustmentFormDialog/index.tsx rename to apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/index.tsx diff --git a/src/containers/Dialogs/InventoryAdjustmentFormDialog/utils.tsx b/apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/InventoryAdjustmentFormDialog/utils.tsx rename to apps/client/src/containers/Dialogs/InventoryAdjustmentFormDialog/utils.tsx diff --git a/src/containers/Dialogs/InviteUserDialog/InviteUserDialog.schema.tsx b/apps/client/src/containers/Dialogs/InviteUserDialog/InviteUserDialog.schema.tsx similarity index 100% rename from src/containers/Dialogs/InviteUserDialog/InviteUserDialog.schema.tsx rename to apps/client/src/containers/Dialogs/InviteUserDialog/InviteUserDialog.schema.tsx diff --git a/src/containers/Dialogs/InviteUserDialog/InviteUserDialogContent.tsx b/apps/client/src/containers/Dialogs/InviteUserDialog/InviteUserDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/InviteUserDialog/InviteUserDialogContent.tsx rename to apps/client/src/containers/Dialogs/InviteUserDialog/InviteUserDialogContent.tsx diff --git a/src/containers/Dialogs/InviteUserDialog/InviteUserForm.tsx b/apps/client/src/containers/Dialogs/InviteUserDialog/InviteUserForm.tsx similarity index 100% rename from src/containers/Dialogs/InviteUserDialog/InviteUserForm.tsx rename to apps/client/src/containers/Dialogs/InviteUserDialog/InviteUserForm.tsx diff --git a/src/containers/Dialogs/InviteUserDialog/InviteUserFormContent.tsx b/apps/client/src/containers/Dialogs/InviteUserDialog/InviteUserFormContent.tsx similarity index 100% rename from src/containers/Dialogs/InviteUserDialog/InviteUserFormContent.tsx rename to apps/client/src/containers/Dialogs/InviteUserDialog/InviteUserFormContent.tsx diff --git a/src/containers/Dialogs/InviteUserDialog/InviteUserFormProvider.tsx b/apps/client/src/containers/Dialogs/InviteUserDialog/InviteUserFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/InviteUserDialog/InviteUserFormProvider.tsx rename to apps/client/src/containers/Dialogs/InviteUserDialog/InviteUserFormProvider.tsx diff --git a/src/containers/Dialogs/InviteUserDialog/index.tsx b/apps/client/src/containers/Dialogs/InviteUserDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/InviteUserDialog/index.tsx rename to apps/client/src/containers/Dialogs/InviteUserDialog/index.tsx diff --git a/src/containers/Dialogs/InviteUserDialog/utils.tsx b/apps/client/src/containers/Dialogs/InviteUserDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/InviteUserDialog/utils.tsx rename to apps/client/src/containers/Dialogs/InviteUserDialog/utils.tsx diff --git a/src/containers/Dialogs/InvoiceNumberDialog/InvoiceNumberDialogContent.tsx b/apps/client/src/containers/Dialogs/InvoiceNumberDialog/InvoiceNumberDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/InvoiceNumberDialog/InvoiceNumberDialogContent.tsx rename to apps/client/src/containers/Dialogs/InvoiceNumberDialog/InvoiceNumberDialogContent.tsx diff --git a/src/containers/Dialogs/InvoiceNumberDialog/InvoiceNumberDialogProvider.tsx b/apps/client/src/containers/Dialogs/InvoiceNumberDialog/InvoiceNumberDialogProvider.tsx similarity index 100% rename from src/containers/Dialogs/InvoiceNumberDialog/InvoiceNumberDialogProvider.tsx rename to apps/client/src/containers/Dialogs/InvoiceNumberDialog/InvoiceNumberDialogProvider.tsx diff --git a/src/containers/Dialogs/InvoiceNumberDialog/index.tsx b/apps/client/src/containers/Dialogs/InvoiceNumberDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/InvoiceNumberDialog/index.tsx rename to apps/client/src/containers/Dialogs/InvoiceNumberDialog/index.tsx diff --git a/src/containers/Dialogs/InvoicePdfPreviewDialog/InvoicePdfPreviewDialogContent.tsx b/apps/client/src/containers/Dialogs/InvoicePdfPreviewDialog/InvoicePdfPreviewDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/InvoicePdfPreviewDialog/InvoicePdfPreviewDialogContent.tsx rename to apps/client/src/containers/Dialogs/InvoicePdfPreviewDialog/InvoicePdfPreviewDialogContent.tsx diff --git a/src/containers/Dialogs/InvoicePdfPreviewDialog/index.tsx b/apps/client/src/containers/Dialogs/InvoicePdfPreviewDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/InvoicePdfPreviewDialog/index.tsx rename to apps/client/src/containers/Dialogs/InvoicePdfPreviewDialog/index.tsx diff --git a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryForm.tsx b/apps/client/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryForm.tsx similarity index 100% rename from src/containers/Dialogs/ItemCategoryDialog/ItemCategoryForm.tsx rename to apps/client/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryForm.tsx diff --git a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormContent.tsx b/apps/client/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormContent.tsx similarity index 100% rename from src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormContent.tsx rename to apps/client/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormContent.tsx diff --git a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormDialogContent.tsx b/apps/client/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormDialogContent.tsx rename to apps/client/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormDialogContent.tsx diff --git a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormFields.tsx b/apps/client/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormFields.tsx similarity index 100% rename from src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormFields.tsx rename to apps/client/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormFields.tsx diff --git a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormFooter.tsx b/apps/client/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormFooter.tsx similarity index 100% rename from src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormFooter.tsx rename to apps/client/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryFormFooter.tsx diff --git a/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryProvider.tsx b/apps/client/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryProvider.tsx similarity index 100% rename from src/containers/Dialogs/ItemCategoryDialog/ItemCategoryProvider.tsx rename to apps/client/src/containers/Dialogs/ItemCategoryDialog/ItemCategoryProvider.tsx diff --git a/src/containers/Dialogs/ItemCategoryDialog/index.tsx b/apps/client/src/containers/Dialogs/ItemCategoryDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/ItemCategoryDialog/index.tsx rename to apps/client/src/containers/Dialogs/ItemCategoryDialog/index.tsx diff --git a/src/containers/Dialogs/ItemCategoryDialog/itemCategoryForm.schema.tsx b/apps/client/src/containers/Dialogs/ItemCategoryDialog/itemCategoryForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/ItemCategoryDialog/itemCategoryForm.schema.tsx rename to apps/client/src/containers/Dialogs/ItemCategoryDialog/itemCategoryForm.schema.tsx diff --git a/src/containers/Dialogs/JournalNumberDialog/JournalNumberDialogContent.tsx b/apps/client/src/containers/Dialogs/JournalNumberDialog/JournalNumberDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/JournalNumberDialog/JournalNumberDialogContent.tsx rename to apps/client/src/containers/Dialogs/JournalNumberDialog/JournalNumberDialogContent.tsx diff --git a/src/containers/Dialogs/JournalNumberDialog/index.tsx b/apps/client/src/containers/Dialogs/JournalNumberDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/JournalNumberDialog/index.tsx rename to apps/client/src/containers/Dialogs/JournalNumberDialog/index.tsx diff --git a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsDialogContent.tsx b/apps/client/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsDialogContent.tsx rename to apps/client/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsDialogContent.tsx diff --git a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsForm.schema.tsx b/apps/client/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsForm.schema.tsx rename to apps/client/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsForm.schema.tsx diff --git a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsForm.tsx b/apps/client/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsForm.tsx similarity index 100% rename from src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsForm.tsx rename to apps/client/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsForm.tsx diff --git a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormContent.tsx b/apps/client/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormContent.tsx similarity index 100% rename from src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormContent.tsx rename to apps/client/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormContent.tsx diff --git a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormFields.tsx b/apps/client/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormFields.tsx similarity index 100% rename from src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormFields.tsx rename to apps/client/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormFields.tsx diff --git a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormFloatingActions.tsx b/apps/client/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormFloatingActions.tsx rename to apps/client/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormFloatingActions.tsx diff --git a/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormProvider.tsx b/apps/client/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormProvider.tsx rename to apps/client/src/containers/Dialogs/LockingTransactionsDialog/LockingTransactionsFormProvider.tsx diff --git a/src/containers/Dialogs/LockingTransactionsDialog/index.tsx b/apps/client/src/containers/Dialogs/LockingTransactionsDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/LockingTransactionsDialog/index.tsx rename to apps/client/src/containers/Dialogs/LockingTransactionsDialog/index.tsx diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInContentFields.tsx b/apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInContentFields.tsx similarity index 100% rename from src/containers/Dialogs/MoneyInDialog/MoneyInContentFields.tsx rename to apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInContentFields.tsx diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInDialogContent.tsx b/apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/MoneyInDialog/MoneyInDialogContent.tsx rename to apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInDialogContent.tsx diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInDialogProvider.tsx b/apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInDialogProvider.tsx similarity index 100% rename from src/containers/Dialogs/MoneyInDialog/MoneyInDialogProvider.tsx rename to apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInDialogProvider.tsx diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInFloatingActions.tsx b/apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/MoneyInDialog/MoneyInFloatingActions.tsx rename to apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInFloatingActions.tsx diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInForm.schema.tsx b/apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/MoneyInDialog/MoneyInForm.schema.tsx rename to apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInForm.schema.tsx diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInForm.tsx b/apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInForm.tsx similarity index 100% rename from src/containers/Dialogs/MoneyInDialog/MoneyInForm.tsx rename to apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInForm.tsx diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInFormContent.tsx b/apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInFormContent.tsx similarity index 100% rename from src/containers/Dialogs/MoneyInDialog/MoneyInFormContent.tsx rename to apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInFormContent.tsx diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInFormDialog.tsx b/apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInFormDialog.tsx similarity index 100% rename from src/containers/Dialogs/MoneyInDialog/MoneyInFormDialog.tsx rename to apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInFormDialog.tsx diff --git a/src/containers/Dialogs/MoneyInDialog/MoneyInFormFields.tsx b/apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInFormFields.tsx similarity index 100% rename from src/containers/Dialogs/MoneyInDialog/MoneyInFormFields.tsx rename to apps/client/src/containers/Dialogs/MoneyInDialog/MoneyInFormFields.tsx diff --git a/src/containers/Dialogs/MoneyInDialog/OtherIncome/OtherIncomeFormFields.tsx b/apps/client/src/containers/Dialogs/MoneyInDialog/OtherIncome/OtherIncomeFormFields.tsx similarity index 100% rename from src/containers/Dialogs/MoneyInDialog/OtherIncome/OtherIncomeFormFields.tsx rename to apps/client/src/containers/Dialogs/MoneyInDialog/OtherIncome/OtherIncomeFormFields.tsx diff --git a/src/containers/Dialogs/MoneyInDialog/OwnerContribution/OwnerContributionFormFields.tsx b/apps/client/src/containers/Dialogs/MoneyInDialog/OwnerContribution/OwnerContributionFormFields.tsx similarity index 100% rename from src/containers/Dialogs/MoneyInDialog/OwnerContribution/OwnerContributionFormFields.tsx rename to apps/client/src/containers/Dialogs/MoneyInDialog/OwnerContribution/OwnerContributionFormFields.tsx diff --git a/src/containers/Dialogs/MoneyInDialog/TransactionTypeFields.tsx b/apps/client/src/containers/Dialogs/MoneyInDialog/TransactionTypeFields.tsx similarity index 100% rename from src/containers/Dialogs/MoneyInDialog/TransactionTypeFields.tsx rename to apps/client/src/containers/Dialogs/MoneyInDialog/TransactionTypeFields.tsx diff --git a/src/containers/Dialogs/MoneyInDialog/TransferFromAccount/TransferFromAccountFormFields.tsx b/apps/client/src/containers/Dialogs/MoneyInDialog/TransferFromAccount/TransferFromAccountFormFields.tsx similarity index 100% rename from src/containers/Dialogs/MoneyInDialog/TransferFromAccount/TransferFromAccountFormFields.tsx rename to apps/client/src/containers/Dialogs/MoneyInDialog/TransferFromAccount/TransferFromAccountFormFields.tsx diff --git a/src/containers/Dialogs/MoneyInDialog/index.tsx b/apps/client/src/containers/Dialogs/MoneyInDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/MoneyInDialog/index.tsx rename to apps/client/src/containers/Dialogs/MoneyInDialog/index.tsx diff --git a/src/containers/Dialogs/MoneyInDialog/utils.tsx b/apps/client/src/containers/Dialogs/MoneyInDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/MoneyInDialog/utils.tsx rename to apps/client/src/containers/Dialogs/MoneyInDialog/utils.tsx diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutContentFields.tsx b/apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutContentFields.tsx similarity index 100% rename from src/containers/Dialogs/MoneyOutDialog/MoneyOutContentFields.tsx rename to apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutContentFields.tsx diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutDialogContent.tsx b/apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/MoneyOutDialog/MoneyOutDialogContent.tsx rename to apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutDialogContent.tsx diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutDialogProvider.tsx b/apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutDialogProvider.tsx similarity index 100% rename from src/containers/Dialogs/MoneyOutDialog/MoneyOutDialogProvider.tsx rename to apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutDialogProvider.tsx diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutFloatingActions.tsx b/apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/MoneyOutDialog/MoneyOutFloatingActions.tsx rename to apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutFloatingActions.tsx diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutForm.schema.tsx b/apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/MoneyOutDialog/MoneyOutForm.schema.tsx rename to apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutForm.schema.tsx diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutForm.tsx b/apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutForm.tsx similarity index 100% rename from src/containers/Dialogs/MoneyOutDialog/MoneyOutForm.tsx rename to apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutForm.tsx diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormContent.tsx b/apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormContent.tsx similarity index 100% rename from src/containers/Dialogs/MoneyOutDialog/MoneyOutFormContent.tsx rename to apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormContent.tsx diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormDialog.tsx b/apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormDialog.tsx similarity index 100% rename from src/containers/Dialogs/MoneyOutDialog/MoneyOutFormDialog.tsx rename to apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormDialog.tsx diff --git a/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormFields.tsx b/apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormFields.tsx similarity index 100% rename from src/containers/Dialogs/MoneyOutDialog/MoneyOutFormFields.tsx rename to apps/client/src/containers/Dialogs/MoneyOutDialog/MoneyOutFormFields.tsx diff --git a/src/containers/Dialogs/MoneyOutDialog/OtherExpense/OtherExpnseFormFields.tsx b/apps/client/src/containers/Dialogs/MoneyOutDialog/OtherExpense/OtherExpnseFormFields.tsx similarity index 100% rename from src/containers/Dialogs/MoneyOutDialog/OtherExpense/OtherExpnseFormFields.tsx rename to apps/client/src/containers/Dialogs/MoneyOutDialog/OtherExpense/OtherExpnseFormFields.tsx diff --git a/src/containers/Dialogs/MoneyOutDialog/OwnerDrawings/OwnerDrawingsFormFields.tsx b/apps/client/src/containers/Dialogs/MoneyOutDialog/OwnerDrawings/OwnerDrawingsFormFields.tsx similarity index 100% rename from src/containers/Dialogs/MoneyOutDialog/OwnerDrawings/OwnerDrawingsFormFields.tsx rename to apps/client/src/containers/Dialogs/MoneyOutDialog/OwnerDrawings/OwnerDrawingsFormFields.tsx diff --git a/src/containers/Dialogs/MoneyOutDialog/TransactionTypeFields.tsx b/apps/client/src/containers/Dialogs/MoneyOutDialog/TransactionTypeFields.tsx similarity index 100% rename from src/containers/Dialogs/MoneyOutDialog/TransactionTypeFields.tsx rename to apps/client/src/containers/Dialogs/MoneyOutDialog/TransactionTypeFields.tsx diff --git a/src/containers/Dialogs/MoneyOutDialog/TransferToAccount/TransferToAccountFormFields.tsx b/apps/client/src/containers/Dialogs/MoneyOutDialog/TransferToAccount/TransferToAccountFormFields.tsx similarity index 100% rename from src/containers/Dialogs/MoneyOutDialog/TransferToAccount/TransferToAccountFormFields.tsx rename to apps/client/src/containers/Dialogs/MoneyOutDialog/TransferToAccount/TransferToAccountFormFields.tsx diff --git a/src/containers/Dialogs/MoneyOutDialog/index.tsx b/apps/client/src/containers/Dialogs/MoneyOutDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/MoneyOutDialog/index.tsx rename to apps/client/src/containers/Dialogs/MoneyOutDialog/index.tsx diff --git a/src/containers/Dialogs/MoneyOutDialog/utils.tsx b/apps/client/src/containers/Dialogs/MoneyOutDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/MoneyOutDialog/utils.tsx rename to apps/client/src/containers/Dialogs/MoneyOutDialog/utils.tsx diff --git a/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSDialogContent.tsx b/apps/client/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSDialogContent.tsx rename to apps/client/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSDialogContent.tsx diff --git a/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSForm.tsx b/apps/client/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSForm.tsx similarity index 100% rename from src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSForm.tsx rename to apps/client/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSForm.tsx diff --git a/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSFormProvider.tsx b/apps/client/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSFormProvider.tsx rename to apps/client/src/containers/Dialogs/NotifyEstimateViaSMSDialog/NotifyEstimateViaSMSFormProvider.tsx diff --git a/src/containers/Dialogs/NotifyEstimateViaSMSDialog/index.tsx b/apps/client/src/containers/Dialogs/NotifyEstimateViaSMSDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/NotifyEstimateViaSMSDialog/index.tsx rename to apps/client/src/containers/Dialogs/NotifyEstimateViaSMSDialog/index.tsx diff --git a/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSDialogContent.tsx b/apps/client/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSDialogContent.tsx rename to apps/client/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSDialogContent.tsx diff --git a/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSForm.tsx b/apps/client/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSForm.tsx similarity index 100% rename from src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSForm.tsx rename to apps/client/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSForm.tsx diff --git a/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSFormProvider.tsx b/apps/client/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSFormProvider.tsx rename to apps/client/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/NotifyInvoiceViaSMSFormProvider.tsx diff --git a/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/index.tsx b/apps/client/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/NotifyInvoiceViaSMSDialog/index.tsx rename to apps/client/src/containers/Dialogs/NotifyInvoiceViaSMSDialog/index.tsx diff --git a/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaFormProvider.tsx b/apps/client/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaFormProvider.tsx rename to apps/client/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaFormProvider.tsx diff --git a/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaSMSContent.tsx b/apps/client/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaSMSContent.tsx similarity index 100% rename from src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaSMSContent.tsx rename to apps/client/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaSMSContent.tsx diff --git a/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaSMSForm.tsx b/apps/client/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaSMSForm.tsx similarity index 100% rename from src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaSMSForm.tsx rename to apps/client/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/NotifyPaymentReceiveViaSMSForm.tsx diff --git a/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/index.tsx b/apps/client/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/index.tsx rename to apps/client/src/containers/Dialogs/NotifyPaymentReceiveViaSMSDialog/index.tsx diff --git a/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSDialogContent.tsx b/apps/client/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSDialogContent.tsx rename to apps/client/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSDialogContent.tsx diff --git a/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSForm.tsx b/apps/client/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSForm.tsx similarity index 100% rename from src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSForm.tsx rename to apps/client/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSForm.tsx diff --git a/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSFormProvider.tsx b/apps/client/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSFormProvider.tsx rename to apps/client/src/containers/Dialogs/NotifyReceiptViaSMSDialog/NotifyReceiptViaSMSFormProvider.tsx diff --git a/src/containers/Dialogs/NotifyReceiptViaSMSDialog/index.tsx b/apps/client/src/containers/Dialogs/NotifyReceiptViaSMSDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/NotifyReceiptViaSMSDialog/index.tsx rename to apps/client/src/containers/Dialogs/NotifyReceiptViaSMSDialog/index.tsx diff --git a/src/containers/Dialogs/PaymentReceiveNumberDialog/PaymentReceiveNumberDialogContent.tsx b/apps/client/src/containers/Dialogs/PaymentReceiveNumberDialog/PaymentReceiveNumberDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/PaymentReceiveNumberDialog/PaymentReceiveNumberDialogContent.tsx rename to apps/client/src/containers/Dialogs/PaymentReceiveNumberDialog/PaymentReceiveNumberDialogContent.tsx diff --git a/src/containers/Dialogs/PaymentReceiveNumberDialog/index.tsx b/apps/client/src/containers/Dialogs/PaymentReceiveNumberDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/PaymentReceiveNumberDialog/index.tsx rename to apps/client/src/containers/Dialogs/PaymentReceiveNumberDialog/index.tsx diff --git a/src/containers/Dialogs/PaymentReceivePdfPreviewDialog/PaymentReceivePdfPreviewContent.tsx b/apps/client/src/containers/Dialogs/PaymentReceivePdfPreviewDialog/PaymentReceivePdfPreviewContent.tsx similarity index 100% rename from src/containers/Dialogs/PaymentReceivePdfPreviewDialog/PaymentReceivePdfPreviewContent.tsx rename to apps/client/src/containers/Dialogs/PaymentReceivePdfPreviewDialog/PaymentReceivePdfPreviewContent.tsx diff --git a/src/containers/Dialogs/PaymentReceivePdfPreviewDialog/index.tsx b/apps/client/src/containers/Dialogs/PaymentReceivePdfPreviewDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/PaymentReceivePdfPreviewDialog/index.tsx rename to apps/client/src/containers/Dialogs/PaymentReceivePdfPreviewDialog/index.tsx diff --git a/src/containers/Dialogs/PaymentViaVoucherDialog/PaymentViaVoucherDialogContent.tsx b/apps/client/src/containers/Dialogs/PaymentViaVoucherDialog/PaymentViaVoucherDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/PaymentViaVoucherDialog/PaymentViaVoucherDialogContent.tsx rename to apps/client/src/containers/Dialogs/PaymentViaVoucherDialog/PaymentViaVoucherDialogContent.tsx diff --git a/src/containers/Dialogs/PaymentViaVoucherDialog/PaymentViaVoucherForm.tsx b/apps/client/src/containers/Dialogs/PaymentViaVoucherDialog/PaymentViaVoucherForm.tsx similarity index 100% rename from src/containers/Dialogs/PaymentViaVoucherDialog/PaymentViaVoucherForm.tsx rename to apps/client/src/containers/Dialogs/PaymentViaVoucherDialog/PaymentViaVoucherForm.tsx diff --git a/src/containers/Dialogs/PaymentViaVoucherDialog/index.tsx b/apps/client/src/containers/Dialogs/PaymentViaVoucherDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/PaymentViaVoucherDialog/index.tsx rename to apps/client/src/containers/Dialogs/PaymentViaVoucherDialog/index.tsx diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMade.schema.tsx b/apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMade.schema.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMade.schema.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMade.schema.tsx diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFloatingActions.tsx b/apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFloatingActions.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFloatingActions.tsx diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeForm.tsx b/apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeForm.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeForm.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeForm.tsx diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormContent.tsx b/apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormContent.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormContent.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormContent.tsx diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormDialogContent.tsx b/apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormDialogContent.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormDialogContent.tsx diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormFields.tsx b/apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormFields.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormFields.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormFields.tsx diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormProvider.tsx b/apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormProvider.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/QuickPaymentMadeFormProvider.tsx diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/index.tsx b/apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentMadeFormDialog/index.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/index.tsx diff --git a/src/containers/Dialogs/QuickPaymentMadeFormDialog/utils.tsx b/apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentMadeFormDialog/utils.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentMadeFormDialog/utils.tsx diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceive.schema.tsx b/apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceive.schema.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceive.schema.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceive.schema.tsx diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFloatingActions.tsx b/apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFloatingActions.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFloatingActions.tsx diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveForm.tsx b/apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveForm.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveForm.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveForm.tsx diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormContent.tsx b/apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormContent.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormContent.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormContent.tsx diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormDialogContent.tsx b/apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormDialogContent.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormDialogContent.tsx diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormFields.tsx b/apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormFields.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormFields.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormFields.tsx diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormProvider.tsx b/apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormProvider.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/QuickPaymentReceiveFormProvider.tsx diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/index.tsx b/apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentReceiveFormDialog/index.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/index.tsx diff --git a/src/containers/Dialogs/QuickPaymentReceiveFormDialog/utils.tsx b/apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/QuickPaymentReceiveFormDialog/utils.tsx rename to apps/client/src/containers/Dialogs/QuickPaymentReceiveFormDialog/utils.tsx diff --git a/src/containers/Dialogs/ReceiptNumberDialog/ReceiptNumberDialogContent.tsx b/apps/client/src/containers/Dialogs/ReceiptNumberDialog/ReceiptNumberDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/ReceiptNumberDialog/ReceiptNumberDialogContent.tsx rename to apps/client/src/containers/Dialogs/ReceiptNumberDialog/ReceiptNumberDialogContent.tsx diff --git a/src/containers/Dialogs/ReceiptNumberDialog/index.tsx b/apps/client/src/containers/Dialogs/ReceiptNumberDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/ReceiptNumberDialog/index.tsx rename to apps/client/src/containers/Dialogs/ReceiptNumberDialog/index.tsx diff --git a/src/containers/Dialogs/ReceiptPdfPreviewDialog/ReceiptPdfPreviewDialogContent.tsx b/apps/client/src/containers/Dialogs/ReceiptPdfPreviewDialog/ReceiptPdfPreviewDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/ReceiptPdfPreviewDialog/ReceiptPdfPreviewDialogContent.tsx rename to apps/client/src/containers/Dialogs/ReceiptPdfPreviewDialog/ReceiptPdfPreviewDialogContent.tsx diff --git a/src/containers/Dialogs/ReceiptPdfPreviewDialog/index.tsx b/apps/client/src/containers/Dialogs/ReceiptPdfPreviewDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/ReceiptPdfPreviewDialog/index.tsx rename to apps/client/src/containers/Dialogs/ReceiptPdfPreviewDialog/index.tsx diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteDialogContent.tsx b/apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteDialogContent.tsx rename to apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteDialogContent.tsx diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteEntriesTable.tsx b/apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteEntriesTable.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteEntriesTable.tsx rename to apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteEntriesTable.tsx diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteForm.schema.tsx b/apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteForm.schema.tsx rename to apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteForm.schema.tsx diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteForm.tsx b/apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteForm.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteForm.tsx rename to apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteForm.tsx diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormContent.tsx b/apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormContent.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormContent.tsx rename to apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormContent.tsx diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormFields.tsx b/apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormFields.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormFields.tsx rename to apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormFields.tsx diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormFloatingActions.tsx b/apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormFloatingActions.tsx rename to apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormFloatingActions.tsx diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormProvider.tsx b/apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormProvider.tsx rename to apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/ReconcileCreditNoteFormProvider.tsx diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/index.tsx b/apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileCreditNoteDialog/index.tsx rename to apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/index.tsx diff --git a/src/containers/Dialogs/ReconcileCreditNoteDialog/utils.tsx b/apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileCreditNoteDialog/utils.tsx rename to apps/client/src/containers/Dialogs/ReconcileCreditNoteDialog/utils.tsx diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditDialogContent.tsx b/apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditDialogContent.tsx rename to apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditDialogContent.tsx diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditEntriesTable.tsx b/apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditEntriesTable.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditEntriesTable.tsx rename to apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditEntriesTable.tsx diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFloatingActions.tsx b/apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFloatingActions.tsx rename to apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFloatingActions.tsx diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditForm.schema.tsx b/apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditForm.schema.tsx rename to apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditForm.schema.tsx diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditForm.tsx b/apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditForm.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditForm.tsx rename to apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditForm.tsx diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormContent.tsx b/apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormContent.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormContent.tsx rename to apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormContent.tsx diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormFields.tsx b/apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormFields.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormFields.tsx rename to apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormFields.tsx diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormProvider.tsx b/apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormProvider.tsx rename to apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/ReconcileVendorCreditFormProvider.tsx diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/index.tsx b/apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileVendorCreditDialog/index.tsx rename to apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/index.tsx diff --git a/src/containers/Dialogs/ReconcileVendorCreditDialog/utils.tsx b/apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/ReconcileVendorCreditDialog/utils.tsx rename to apps/client/src/containers/Dialogs/ReconcileVendorCreditDialog/utils.tsx diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteDialogContent.tsx b/apps/client/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteDialogContent.tsx rename to apps/client/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteDialogContent.tsx diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFloatingActions.tsx b/apps/client/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFloatingActions.tsx rename to apps/client/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFloatingActions.tsx diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteForm.schema.tsx b/apps/client/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteForm.schema.tsx rename to apps/client/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteForm.schema.tsx diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteForm.tsx b/apps/client/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteForm.tsx similarity index 100% rename from src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteForm.tsx rename to apps/client/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteForm.tsx diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormContent.tsx b/apps/client/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormContent.tsx similarity index 100% rename from src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormContent.tsx rename to apps/client/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormContent.tsx diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormFields.tsx b/apps/client/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormFields.tsx similarity index 100% rename from src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormFields.tsx rename to apps/client/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormFields.tsx diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormProvider.tsx b/apps/client/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormProvider.tsx rename to apps/client/src/containers/Dialogs/RefundCreditNoteDialog/RefundCreditNoteFormProvider.tsx diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/index.tsx b/apps/client/src/containers/Dialogs/RefundCreditNoteDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/RefundCreditNoteDialog/index.tsx rename to apps/client/src/containers/Dialogs/RefundCreditNoteDialog/index.tsx diff --git a/src/containers/Dialogs/RefundCreditNoteDialog/utils.tsx b/apps/client/src/containers/Dialogs/RefundCreditNoteDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/RefundCreditNoteDialog/utils.tsx rename to apps/client/src/containers/Dialogs/RefundCreditNoteDialog/utils.tsx diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditDialogContent.tsx b/apps/client/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditDialogContent.tsx rename to apps/client/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditDialogContent.tsx diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFloatingActions.tsx b/apps/client/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFloatingActions.tsx rename to apps/client/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFloatingActions.tsx diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditForm.schema.tsx b/apps/client/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditForm.schema.tsx rename to apps/client/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditForm.schema.tsx diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditForm.tsx b/apps/client/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditForm.tsx similarity index 100% rename from src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditForm.tsx rename to apps/client/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditForm.tsx diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormContent.tsx b/apps/client/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormContent.tsx similarity index 100% rename from src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormContent.tsx rename to apps/client/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormContent.tsx diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormFields.tsx b/apps/client/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormFields.tsx similarity index 100% rename from src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormFields.tsx rename to apps/client/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormFields.tsx diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormProvider.tsx b/apps/client/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormProvider.tsx rename to apps/client/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormProvider.tsx diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/index.tsx b/apps/client/src/containers/Dialogs/RefundVendorCreditDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/RefundVendorCreditDialog/index.tsx rename to apps/client/src/containers/Dialogs/RefundVendorCreditDialog/index.tsx diff --git a/src/containers/Dialogs/RefundVendorCreditDialog/utils.tsx b/apps/client/src/containers/Dialogs/RefundVendorCreditDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/RefundVendorCreditDialog/utils.tsx rename to apps/client/src/containers/Dialogs/RefundVendorCreditDialog/utils.tsx diff --git a/src/containers/Dialogs/SMSMessageDialog/SMSMessageDialogContent.tsx b/apps/client/src/containers/Dialogs/SMSMessageDialog/SMSMessageDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/SMSMessageDialog/SMSMessageDialogContent.tsx rename to apps/client/src/containers/Dialogs/SMSMessageDialog/SMSMessageDialogContent.tsx diff --git a/src/containers/Dialogs/SMSMessageDialog/SMSMessageDialogProvider.tsx b/apps/client/src/containers/Dialogs/SMSMessageDialog/SMSMessageDialogProvider.tsx similarity index 100% rename from src/containers/Dialogs/SMSMessageDialog/SMSMessageDialogProvider.tsx rename to apps/client/src/containers/Dialogs/SMSMessageDialog/SMSMessageDialogProvider.tsx diff --git a/src/containers/Dialogs/SMSMessageDialog/SMSMessageForm.schema.tsx b/apps/client/src/containers/Dialogs/SMSMessageDialog/SMSMessageForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/SMSMessageDialog/SMSMessageForm.schema.tsx rename to apps/client/src/containers/Dialogs/SMSMessageDialog/SMSMessageForm.schema.tsx diff --git a/src/containers/Dialogs/SMSMessageDialog/SMSMessageForm.tsx b/apps/client/src/containers/Dialogs/SMSMessageDialog/SMSMessageForm.tsx similarity index 100% rename from src/containers/Dialogs/SMSMessageDialog/SMSMessageForm.tsx rename to apps/client/src/containers/Dialogs/SMSMessageDialog/SMSMessageForm.tsx diff --git a/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormContent.tsx b/apps/client/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormContent.tsx similarity index 100% rename from src/containers/Dialogs/SMSMessageDialog/SMSMessageFormContent.tsx rename to apps/client/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormContent.tsx diff --git a/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormFields.tsx b/apps/client/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormFields.tsx similarity index 100% rename from src/containers/Dialogs/SMSMessageDialog/SMSMessageFormFields.tsx rename to apps/client/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormFields.tsx diff --git a/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormFloatingActions.tsx b/apps/client/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/SMSMessageDialog/SMSMessageFormFloatingActions.tsx rename to apps/client/src/containers/Dialogs/SMSMessageDialog/SMSMessageFormFloatingActions.tsx diff --git a/src/containers/Dialogs/SMSMessageDialog/index.tsx b/apps/client/src/containers/Dialogs/SMSMessageDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/SMSMessageDialog/index.tsx rename to apps/client/src/containers/Dialogs/SMSMessageDialog/index.tsx diff --git a/src/containers/Dialogs/SMSMessageDialog/utils.tsx b/apps/client/src/containers/Dialogs/SMSMessageDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/SMSMessageDialog/utils.tsx rename to apps/client/src/containers/Dialogs/SMSMessageDialog/utils.tsx diff --git a/src/containers/Dialogs/TransactionNumberDialog/TransactionNumberDialogContent.tsx b/apps/client/src/containers/Dialogs/TransactionNumberDialog/TransactionNumberDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/TransactionNumberDialog/TransactionNumberDialogContent.tsx rename to apps/client/src/containers/Dialogs/TransactionNumberDialog/TransactionNumberDialogContent.tsx diff --git a/src/containers/Dialogs/TransactionNumberDialog/TransactionNumberDialogProvider.tsx b/apps/client/src/containers/Dialogs/TransactionNumberDialog/TransactionNumberDialogProvider.tsx similarity index 100% rename from src/containers/Dialogs/TransactionNumberDialog/TransactionNumberDialogProvider.tsx rename to apps/client/src/containers/Dialogs/TransactionNumberDialog/TransactionNumberDialogProvider.tsx diff --git a/src/containers/Dialogs/TransactionNumberDialog/index.tsx b/apps/client/src/containers/Dialogs/TransactionNumberDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/TransactionNumberDialog/index.tsx rename to apps/client/src/containers/Dialogs/TransactionNumberDialog/index.tsx diff --git a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsDialogContent.tsx b/apps/client/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsDialogContent.tsx rename to apps/client/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsDialogContent.tsx diff --git a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsForm.schema.tsx b/apps/client/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsForm.schema.tsx rename to apps/client/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsForm.schema.tsx diff --git a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsForm.tsx b/apps/client/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsForm.tsx similarity index 100% rename from src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsForm.tsx rename to apps/client/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsForm.tsx diff --git a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormContent.tsx b/apps/client/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormContent.tsx similarity index 100% rename from src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormContent.tsx rename to apps/client/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormContent.tsx diff --git a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormFields.tsx b/apps/client/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormFields.tsx similarity index 100% rename from src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormFields.tsx rename to apps/client/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormFields.tsx diff --git a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormFloatingActions.tsx b/apps/client/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormFloatingActions.tsx rename to apps/client/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormFloatingActions.tsx diff --git a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormProvider.tsx b/apps/client/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormProvider.tsx rename to apps/client/src/containers/Dialogs/UnlockingPartialTransactionsDialog/UnlockingPartialTransactionsFormProvider.tsx diff --git a/src/containers/Dialogs/UnlockingPartialTransactionsDialog/index.tsx b/apps/client/src/containers/Dialogs/UnlockingPartialTransactionsDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/UnlockingPartialTransactionsDialog/index.tsx rename to apps/client/src/containers/Dialogs/UnlockingPartialTransactionsDialog/index.tsx diff --git a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsDialogContent.tsx b/apps/client/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsDialogContent.tsx rename to apps/client/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsDialogContent.tsx diff --git a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsForm.schema.tsx b/apps/client/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsForm.schema.tsx rename to apps/client/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsForm.schema.tsx diff --git a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsForm.tsx b/apps/client/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsForm.tsx similarity index 100% rename from src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsForm.tsx rename to apps/client/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsForm.tsx diff --git a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormContent.tsx b/apps/client/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormContent.tsx similarity index 100% rename from src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormContent.tsx rename to apps/client/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormContent.tsx diff --git a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormFields.tsx b/apps/client/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormFields.tsx similarity index 100% rename from src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormFields.tsx rename to apps/client/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormFields.tsx diff --git a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormFloatingActions.tsx b/apps/client/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormFloatingActions.tsx rename to apps/client/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormFloatingActions.tsx diff --git a/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormProvider.tsx b/apps/client/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormProvider.tsx rename to apps/client/src/containers/Dialogs/UnlockingTransactionsDialog/UnlockingTransactionsFormProvider.tsx diff --git a/src/containers/Dialogs/UnlockingTransactionsDialog/index.tsx b/apps/client/src/containers/Dialogs/UnlockingTransactionsDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/UnlockingTransactionsDialog/index.tsx rename to apps/client/src/containers/Dialogs/UnlockingTransactionsDialog/index.tsx diff --git a/src/containers/Dialogs/UserFormDialog.connector.tsx b/apps/client/src/containers/Dialogs/UserFormDialog.connector.tsx similarity index 100% rename from src/containers/Dialogs/UserFormDialog.connector.tsx rename to apps/client/src/containers/Dialogs/UserFormDialog.connector.tsx diff --git a/src/containers/Dialogs/UserFormDialog/UserForm.schema.tsx b/apps/client/src/containers/Dialogs/UserFormDialog/UserForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/UserFormDialog/UserForm.schema.tsx rename to apps/client/src/containers/Dialogs/UserFormDialog/UserForm.schema.tsx diff --git a/src/containers/Dialogs/UserFormDialog/UserForm.tsx b/apps/client/src/containers/Dialogs/UserFormDialog/UserForm.tsx similarity index 100% rename from src/containers/Dialogs/UserFormDialog/UserForm.tsx rename to apps/client/src/containers/Dialogs/UserFormDialog/UserForm.tsx diff --git a/src/containers/Dialogs/UserFormDialog/UserFormContent.tsx b/apps/client/src/containers/Dialogs/UserFormDialog/UserFormContent.tsx similarity index 100% rename from src/containers/Dialogs/UserFormDialog/UserFormContent.tsx rename to apps/client/src/containers/Dialogs/UserFormDialog/UserFormContent.tsx diff --git a/src/containers/Dialogs/UserFormDialog/UserFormDialogContent.tsx b/apps/client/src/containers/Dialogs/UserFormDialog/UserFormDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/UserFormDialog/UserFormDialogContent.tsx rename to apps/client/src/containers/Dialogs/UserFormDialog/UserFormDialogContent.tsx diff --git a/src/containers/Dialogs/UserFormDialog/UserFormProvider.tsx b/apps/client/src/containers/Dialogs/UserFormDialog/UserFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/UserFormDialog/UserFormProvider.tsx rename to apps/client/src/containers/Dialogs/UserFormDialog/UserFormProvider.tsx diff --git a/src/containers/Dialogs/UserFormDialog/components.tsx b/apps/client/src/containers/Dialogs/UserFormDialog/components.tsx similarity index 100% rename from src/containers/Dialogs/UserFormDialog/components.tsx rename to apps/client/src/containers/Dialogs/UserFormDialog/components.tsx diff --git a/src/containers/Dialogs/UserFormDialog/index.tsx b/apps/client/src/containers/Dialogs/UserFormDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/UserFormDialog/index.tsx rename to apps/client/src/containers/Dialogs/UserFormDialog/index.tsx diff --git a/src/containers/Dialogs/UserFormDialog/utils.tsx b/apps/client/src/containers/Dialogs/UserFormDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/UserFormDialog/utils.tsx rename to apps/client/src/containers/Dialogs/UserFormDialog/utils.tsx diff --git a/src/containers/Dialogs/UsersListDialog.connector.tsx b/apps/client/src/containers/Dialogs/UsersListDialog.connector.tsx similarity index 100% rename from src/containers/Dialogs/UsersListDialog.connector.tsx rename to apps/client/src/containers/Dialogs/UsersListDialog.connector.tsx diff --git a/src/containers/Dialogs/VendorCreditNumberDialog/VendorCreditNumberDialogContent.tsx b/apps/client/src/containers/Dialogs/VendorCreditNumberDialog/VendorCreditNumberDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/VendorCreditNumberDialog/VendorCreditNumberDialogContent.tsx rename to apps/client/src/containers/Dialogs/VendorCreditNumberDialog/VendorCreditNumberDialogContent.tsx diff --git a/src/containers/Dialogs/VendorCreditNumberDialog/VendorCreditNumberDilaogProvider.tsx b/apps/client/src/containers/Dialogs/VendorCreditNumberDialog/VendorCreditNumberDilaogProvider.tsx similarity index 100% rename from src/containers/Dialogs/VendorCreditNumberDialog/VendorCreditNumberDilaogProvider.tsx rename to apps/client/src/containers/Dialogs/VendorCreditNumberDialog/VendorCreditNumberDilaogProvider.tsx diff --git a/src/containers/Dialogs/VendorCreditNumberDialog/index.tsx b/apps/client/src/containers/Dialogs/VendorCreditNumberDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/VendorCreditNumberDialog/index.tsx rename to apps/client/src/containers/Dialogs/VendorCreditNumberDialog/index.tsx diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceDialogContent.tsx b/apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceDialogContent.tsx rename to apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceDialogContent.tsx diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceForm.schema.tsx b/apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceForm.schema.tsx rename to apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceForm.schema.tsx diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceForm.tsx b/apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceForm.tsx similarity index 100% rename from src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceForm.tsx rename to apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceForm.tsx diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormContent.tsx b/apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormContent.tsx similarity index 100% rename from src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormContent.tsx rename to apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormContent.tsx diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormFields.tsx b/apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormFields.tsx similarity index 100% rename from src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormFields.tsx rename to apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormFields.tsx diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormFloatingActions.tsx b/apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormFloatingActions.tsx rename to apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormFloatingActions.tsx diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormProvider.tsx b/apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormProvider.tsx rename to apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/VendorOpeningBalanceFormProvider.tsx diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/index.tsx b/apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/VendorOpeningBalanceDialog/index.tsx rename to apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/index.tsx diff --git a/src/containers/Dialogs/VendorOpeningBalanceDialog/utils.tsx b/apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/VendorOpeningBalanceDialog/utils.tsx rename to apps/client/src/containers/Dialogs/VendorOpeningBalanceDialog/utils.tsx diff --git a/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateDialogContent.tsx b/apps/client/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateDialogContent.tsx rename to apps/client/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateDialogContent.tsx diff --git a/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateForm.tsx b/apps/client/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateForm.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateForm.tsx rename to apps/client/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateForm.tsx diff --git a/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormContent.tsx b/apps/client/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormContent.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormContent.tsx rename to apps/client/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormContent.tsx diff --git a/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormFloatingActions.tsx b/apps/client/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormFloatingActions.tsx rename to apps/client/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormFloatingActions.tsx diff --git a/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormProvider.tsx b/apps/client/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormProvider.tsx rename to apps/client/src/containers/Dialogs/WarehouseActivateDialog/WarehouseActivateFormProvider.tsx diff --git a/src/containers/Dialogs/WarehouseActivateDialog/index.tsx b/apps/client/src/containers/Dialogs/WarehouseActivateDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseActivateDialog/index.tsx rename to apps/client/src/containers/Dialogs/WarehouseActivateDialog/index.tsx diff --git a/src/containers/Dialogs/WarehouseFormDialog/WarehouseForm.schema.tsx b/apps/client/src/containers/Dialogs/WarehouseFormDialog/WarehouseForm.schema.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseFormDialog/WarehouseForm.schema.tsx rename to apps/client/src/containers/Dialogs/WarehouseFormDialog/WarehouseForm.schema.tsx diff --git a/src/containers/Dialogs/WarehouseFormDialog/WarehouseForm.tsx b/apps/client/src/containers/Dialogs/WarehouseFormDialog/WarehouseForm.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseFormDialog/WarehouseForm.tsx rename to apps/client/src/containers/Dialogs/WarehouseFormDialog/WarehouseForm.tsx diff --git a/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormContent.tsx b/apps/client/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormContent.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseFormDialog/WarehouseFormContent.tsx rename to apps/client/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormContent.tsx diff --git a/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormDialogContent.tsx b/apps/client/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseFormDialog/WarehouseFormDialogContent.tsx rename to apps/client/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormDialogContent.tsx diff --git a/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormFields.tsx b/apps/client/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormFields.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseFormDialog/WarehouseFormFields.tsx rename to apps/client/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormFields.tsx diff --git a/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormFloatingActions.tsx b/apps/client/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormFloatingActions.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseFormDialog/WarehouseFormFloatingActions.tsx rename to apps/client/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormFloatingActions.tsx diff --git a/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormProvider.tsx b/apps/client/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormProvider.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseFormDialog/WarehouseFormProvider.tsx rename to apps/client/src/containers/Dialogs/WarehouseFormDialog/WarehouseFormProvider.tsx diff --git a/src/containers/Dialogs/WarehouseFormDialog/index.tsx b/apps/client/src/containers/Dialogs/WarehouseFormDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseFormDialog/index.tsx rename to apps/client/src/containers/Dialogs/WarehouseFormDialog/index.tsx diff --git a/src/containers/Dialogs/WarehouseFormDialog/utils.tsx b/apps/client/src/containers/Dialogs/WarehouseFormDialog/utils.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseFormDialog/utils.tsx rename to apps/client/src/containers/Dialogs/WarehouseFormDialog/utils.tsx diff --git a/src/containers/Dialogs/WarehouseTransferNumberDialog/WarehouseTransferNumberDialogContent.tsx b/apps/client/src/containers/Dialogs/WarehouseTransferNumberDialog/WarehouseTransferNumberDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseTransferNumberDialog/WarehouseTransferNumberDialogContent.tsx rename to apps/client/src/containers/Dialogs/WarehouseTransferNumberDialog/WarehouseTransferNumberDialogContent.tsx diff --git a/src/containers/Dialogs/WarehouseTransferNumberDialog/WarehouseTransferNumberDialogProvider.tsx b/apps/client/src/containers/Dialogs/WarehouseTransferNumberDialog/WarehouseTransferNumberDialogProvider.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseTransferNumberDialog/WarehouseTransferNumberDialogProvider.tsx rename to apps/client/src/containers/Dialogs/WarehouseTransferNumberDialog/WarehouseTransferNumberDialogProvider.tsx diff --git a/src/containers/Dialogs/WarehouseTransferNumberDialog/index.tsx b/apps/client/src/containers/Dialogs/WarehouseTransferNumberDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/WarehouseTransferNumberDialog/index.tsx rename to apps/client/src/containers/Dialogs/WarehouseTransferNumberDialog/index.tsx diff --git a/src/containers/Dialogs/keyboardShortcutsDialog/KeyboardShortcutsDialogContent.tsx b/apps/client/src/containers/Dialogs/keyboardShortcutsDialog/KeyboardShortcutsDialogContent.tsx similarity index 100% rename from src/containers/Dialogs/keyboardShortcutsDialog/KeyboardShortcutsDialogContent.tsx rename to apps/client/src/containers/Dialogs/keyboardShortcutsDialog/KeyboardShortcutsDialogContent.tsx diff --git a/src/containers/Dialogs/keyboardShortcutsDialog/KeyboardShortcutsFooter.tsx b/apps/client/src/containers/Dialogs/keyboardShortcutsDialog/KeyboardShortcutsFooter.tsx similarity index 100% rename from src/containers/Dialogs/keyboardShortcutsDialog/KeyboardShortcutsFooter.tsx rename to apps/client/src/containers/Dialogs/keyboardShortcutsDialog/KeyboardShortcutsFooter.tsx diff --git a/src/containers/Dialogs/keyboardShortcutsDialog/index.tsx b/apps/client/src/containers/Dialogs/keyboardShortcutsDialog/index.tsx similarity index 100% rename from src/containers/Dialogs/keyboardShortcutsDialog/index.tsx rename to apps/client/src/containers/Dialogs/keyboardShortcutsDialog/index.tsx diff --git a/src/containers/Drawer/withDrawerActions.tsx b/apps/client/src/containers/Drawer/withDrawerActions.tsx similarity index 100% rename from src/containers/Drawer/withDrawerActions.tsx rename to apps/client/src/containers/Drawer/withDrawerActions.tsx diff --git a/src/containers/Drawer/withDrawers.tsx b/apps/client/src/containers/Drawer/withDrawers.tsx similarity index 100% rename from src/containers/Drawer/withDrawers.tsx rename to apps/client/src/containers/Drawer/withDrawers.tsx diff --git a/src/containers/Drawers/AccountDrawer/AccountDrawerActionBar.tsx b/apps/client/src/containers/Drawers/AccountDrawer/AccountDrawerActionBar.tsx similarity index 100% rename from src/containers/Drawers/AccountDrawer/AccountDrawerActionBar.tsx rename to apps/client/src/containers/Drawers/AccountDrawer/AccountDrawerActionBar.tsx diff --git a/src/containers/Drawers/AccountDrawer/AccountDrawerContent.tsx b/apps/client/src/containers/Drawers/AccountDrawer/AccountDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/AccountDrawer/AccountDrawerContent.tsx rename to apps/client/src/containers/Drawers/AccountDrawer/AccountDrawerContent.tsx diff --git a/src/containers/Drawers/AccountDrawer/AccountDrawerDetails.tsx b/apps/client/src/containers/Drawers/AccountDrawer/AccountDrawerDetails.tsx similarity index 100% rename from src/containers/Drawers/AccountDrawer/AccountDrawerDetails.tsx rename to apps/client/src/containers/Drawers/AccountDrawer/AccountDrawerDetails.tsx diff --git a/src/containers/Drawers/AccountDrawer/AccountDrawerHeader.tsx b/apps/client/src/containers/Drawers/AccountDrawer/AccountDrawerHeader.tsx similarity index 100% rename from src/containers/Drawers/AccountDrawer/AccountDrawerHeader.tsx rename to apps/client/src/containers/Drawers/AccountDrawer/AccountDrawerHeader.tsx diff --git a/src/containers/Drawers/AccountDrawer/AccountDrawerProvider.tsx b/apps/client/src/containers/Drawers/AccountDrawer/AccountDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/AccountDrawer/AccountDrawerProvider.tsx rename to apps/client/src/containers/Drawers/AccountDrawer/AccountDrawerProvider.tsx diff --git a/src/containers/Drawers/AccountDrawer/AccountDrawerTable.tsx b/apps/client/src/containers/Drawers/AccountDrawer/AccountDrawerTable.tsx similarity index 100% rename from src/containers/Drawers/AccountDrawer/AccountDrawerTable.tsx rename to apps/client/src/containers/Drawers/AccountDrawer/AccountDrawerTable.tsx diff --git a/src/containers/Drawers/AccountDrawer/index.tsx b/apps/client/src/containers/Drawers/AccountDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/AccountDrawer/index.tsx rename to apps/client/src/containers/Drawers/AccountDrawer/index.tsx diff --git a/src/containers/Drawers/AccountDrawer/utils.tsx b/apps/client/src/containers/Drawers/AccountDrawer/utils.tsx similarity index 100% rename from src/containers/Drawers/AccountDrawer/utils.tsx rename to apps/client/src/containers/Drawers/AccountDrawer/utils.tsx diff --git a/src/containers/Drawers/BillDrawer/BillDetailActionsBar.tsx b/apps/client/src/containers/Drawers/BillDrawer/BillDetailActionsBar.tsx similarity index 100% rename from src/containers/Drawers/BillDrawer/BillDetailActionsBar.tsx rename to apps/client/src/containers/Drawers/BillDrawer/BillDetailActionsBar.tsx diff --git a/src/containers/Drawers/BillDrawer/BillDetailFooter.tsx b/apps/client/src/containers/Drawers/BillDrawer/BillDetailFooter.tsx similarity index 100% rename from src/containers/Drawers/BillDrawer/BillDetailFooter.tsx rename to apps/client/src/containers/Drawers/BillDrawer/BillDetailFooter.tsx diff --git a/src/containers/Drawers/BillDrawer/BillDetailHeader.tsx b/apps/client/src/containers/Drawers/BillDrawer/BillDetailHeader.tsx similarity index 100% rename from src/containers/Drawers/BillDrawer/BillDetailHeader.tsx rename to apps/client/src/containers/Drawers/BillDrawer/BillDetailHeader.tsx diff --git a/src/containers/Drawers/BillDrawer/BillDetailTab.tsx b/apps/client/src/containers/Drawers/BillDrawer/BillDetailTab.tsx similarity index 100% rename from src/containers/Drawers/BillDrawer/BillDetailTab.tsx rename to apps/client/src/containers/Drawers/BillDrawer/BillDetailTab.tsx diff --git a/src/containers/Drawers/BillDrawer/BillDetailTable.tsx b/apps/client/src/containers/Drawers/BillDrawer/BillDetailTable.tsx similarity index 100% rename from src/containers/Drawers/BillDrawer/BillDetailTable.tsx rename to apps/client/src/containers/Drawers/BillDrawer/BillDetailTable.tsx diff --git a/src/containers/Drawers/BillDrawer/BillDetailTableFooter.tsx b/apps/client/src/containers/Drawers/BillDrawer/BillDetailTableFooter.tsx similarity index 100% rename from src/containers/Drawers/BillDrawer/BillDetailTableFooter.tsx rename to apps/client/src/containers/Drawers/BillDrawer/BillDetailTableFooter.tsx diff --git a/src/containers/Drawers/BillDrawer/BillDrawerContent.tsx b/apps/client/src/containers/Drawers/BillDrawer/BillDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/BillDrawer/BillDrawerContent.tsx rename to apps/client/src/containers/Drawers/BillDrawer/BillDrawerContent.tsx diff --git a/src/containers/Drawers/BillDrawer/BillDrawerDetails.tsx b/apps/client/src/containers/Drawers/BillDrawer/BillDrawerDetails.tsx similarity index 100% rename from src/containers/Drawers/BillDrawer/BillDrawerDetails.tsx rename to apps/client/src/containers/Drawers/BillDrawer/BillDrawerDetails.tsx diff --git a/src/containers/Drawers/BillDrawer/BillDrawerProvider.tsx b/apps/client/src/containers/Drawers/BillDrawer/BillDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/BillDrawer/BillDrawerProvider.tsx rename to apps/client/src/containers/Drawers/BillDrawer/BillDrawerProvider.tsx diff --git a/src/containers/Drawers/BillDrawer/BillGLEntriesTable.tsx b/apps/client/src/containers/Drawers/BillDrawer/BillGLEntriesTable.tsx similarity index 100% rename from src/containers/Drawers/BillDrawer/BillGLEntriesTable.tsx rename to apps/client/src/containers/Drawers/BillDrawer/BillGLEntriesTable.tsx diff --git a/src/containers/Drawers/BillDrawer/BillPaymentTransactions/BillPaymentTransactionTable.tsx b/apps/client/src/containers/Drawers/BillDrawer/BillPaymentTransactions/BillPaymentTransactionTable.tsx similarity index 100% rename from src/containers/Drawers/BillDrawer/BillPaymentTransactions/BillPaymentTransactionTable.tsx rename to apps/client/src/containers/Drawers/BillDrawer/BillPaymentTransactions/BillPaymentTransactionTable.tsx diff --git a/src/containers/Drawers/BillDrawer/BillPaymentTransactions/components.tsx b/apps/client/src/containers/Drawers/BillDrawer/BillPaymentTransactions/components.tsx similarity index 100% rename from src/containers/Drawers/BillDrawer/BillPaymentTransactions/components.tsx rename to apps/client/src/containers/Drawers/BillDrawer/BillPaymentTransactions/components.tsx diff --git a/src/containers/Drawers/BillDrawer/LocatedLandedCostTable.tsx b/apps/client/src/containers/Drawers/BillDrawer/LocatedLandedCostTable.tsx similarity index 100% rename from src/containers/Drawers/BillDrawer/LocatedLandedCostTable.tsx rename to apps/client/src/containers/Drawers/BillDrawer/LocatedLandedCostTable.tsx diff --git a/src/containers/Drawers/BillDrawer/components.tsx b/apps/client/src/containers/Drawers/BillDrawer/components.tsx similarity index 100% rename from src/containers/Drawers/BillDrawer/components.tsx rename to apps/client/src/containers/Drawers/BillDrawer/components.tsx diff --git a/src/containers/Drawers/BillDrawer/index.tsx b/apps/client/src/containers/Drawers/BillDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/BillDrawer/index.tsx rename to apps/client/src/containers/Drawers/BillDrawer/index.tsx diff --git a/src/containers/Drawers/BillDrawer/utils.tsx b/apps/client/src/containers/Drawers/BillDrawer/utils.tsx similarity index 100% rename from src/containers/Drawers/BillDrawer/utils.tsx rename to apps/client/src/containers/Drawers/BillDrawer/utils.tsx diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerActionBar.tsx b/apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerActionBar.tsx similarity index 100% rename from src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerActionBar.tsx rename to apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerActionBar.tsx diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerContent.tsx b/apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerContent.tsx rename to apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerContent.tsx diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerDetails.tsx b/apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerDetails.tsx similarity index 100% rename from src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerDetails.tsx rename to apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerDetails.tsx diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerFooter.tsx b/apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerFooter.tsx similarity index 100% rename from src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerFooter.tsx rename to apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerFooter.tsx diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerHeader.tsx b/apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerHeader.tsx similarity index 100% rename from src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerHeader.tsx rename to apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerHeader.tsx diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerProvider.tsx b/apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerProvider.tsx rename to apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerProvider.tsx diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerTable.tsx b/apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerTable.tsx similarity index 100% rename from src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerTable.tsx rename to apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/CashflowTransactionDrawerTable.tsx diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/index.tsx b/apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/CashflowTransactionDetailDrawer/index.tsx rename to apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/index.tsx diff --git a/src/containers/Drawers/CashflowTransactionDetailDrawer/utils.tsx b/apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/utils.tsx similarity index 100% rename from src/containers/Drawers/CashflowTransactionDetailDrawer/utils.tsx rename to apps/client/src/containers/Drawers/CashflowTransactionDetailDrawer/utils.tsx diff --git a/src/containers/Drawers/ContactDetailDrawer/ContactDetail.tsx b/apps/client/src/containers/Drawers/ContactDetailDrawer/ContactDetail.tsx similarity index 100% rename from src/containers/Drawers/ContactDetailDrawer/ContactDetail.tsx rename to apps/client/src/containers/Drawers/ContactDetailDrawer/ContactDetail.tsx diff --git a/src/containers/Drawers/ContactDetailDrawer/ContactDetailActionsBar.tsx b/apps/client/src/containers/Drawers/ContactDetailDrawer/ContactDetailActionsBar.tsx similarity index 100% rename from src/containers/Drawers/ContactDetailDrawer/ContactDetailActionsBar.tsx rename to apps/client/src/containers/Drawers/ContactDetailDrawer/ContactDetailActionsBar.tsx diff --git a/src/containers/Drawers/ContactDetailDrawer/ContactDetailDrawerContent.tsx b/apps/client/src/containers/Drawers/ContactDetailDrawer/ContactDetailDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/ContactDetailDrawer/ContactDetailDrawerContent.tsx rename to apps/client/src/containers/Drawers/ContactDetailDrawer/ContactDetailDrawerContent.tsx diff --git a/src/containers/Drawers/ContactDetailDrawer/ContactDetailDrawerProvider.tsx b/apps/client/src/containers/Drawers/ContactDetailDrawer/ContactDetailDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/ContactDetailDrawer/ContactDetailDrawerProvider.tsx rename to apps/client/src/containers/Drawers/ContactDetailDrawer/ContactDetailDrawerProvider.tsx diff --git a/src/containers/Drawers/ContactDetailDrawer/ContactDetailList.tsx b/apps/client/src/containers/Drawers/ContactDetailDrawer/ContactDetailList.tsx similarity index 100% rename from src/containers/Drawers/ContactDetailDrawer/ContactDetailList.tsx rename to apps/client/src/containers/Drawers/ContactDetailDrawer/ContactDetailList.tsx diff --git a/src/containers/Drawers/ContactDetailDrawer/index.tsx b/apps/client/src/containers/Drawers/ContactDetailDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/ContactDetailDrawer/index.tsx rename to apps/client/src/containers/Drawers/ContactDetailDrawer/index.tsx diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetail.tsx b/apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetail.tsx similarity index 100% rename from src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetail.tsx rename to apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetail.tsx diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailActionsBar.tsx b/apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailActionsBar.tsx similarity index 100% rename from src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailActionsBar.tsx rename to apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailActionsBar.tsx diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailDrawerContent.tsx b/apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailDrawerContent.tsx rename to apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailDrawerContent.tsx diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailDrawerProvider.tsx b/apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailDrawerProvider.tsx rename to apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailDrawerProvider.tsx diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailFooter.tsx b/apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailFooter.tsx similarity index 100% rename from src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailFooter.tsx rename to apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailFooter.tsx diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailHeader.tsx b/apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailHeader.tsx similarity index 100% rename from src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailHeader.tsx rename to apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailHeader.tsx diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailPanel.tsx b/apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailPanel.tsx similarity index 100% rename from src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailPanel.tsx rename to apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailPanel.tsx diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailTable.tsx b/apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailTable.tsx similarity index 100% rename from src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailTable.tsx rename to apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailTable.tsx diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailTableFooter.tsx b/apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailTableFooter.tsx similarity index 100% rename from src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailTableFooter.tsx rename to apps/client/src/containers/Drawers/CreditNoteDetailDrawer/CreditNoteDetailTableFooter.tsx diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/JournalEntriesTransactions/JournalEntriesTransactionsTable.tsx b/apps/client/src/containers/Drawers/CreditNoteDetailDrawer/JournalEntriesTransactions/JournalEntriesTransactionsTable.tsx similarity index 100% rename from src/containers/Drawers/CreditNoteDetailDrawer/JournalEntriesTransactions/JournalEntriesTransactionsTable.tsx rename to apps/client/src/containers/Drawers/CreditNoteDetailDrawer/JournalEntriesTransactions/JournalEntriesTransactionsTable.tsx diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/JournalEntriesTransactions/components.tsx b/apps/client/src/containers/Drawers/CreditNoteDetailDrawer/JournalEntriesTransactions/components.tsx similarity index 100% rename from src/containers/Drawers/CreditNoteDetailDrawer/JournalEntriesTransactions/components.tsx rename to apps/client/src/containers/Drawers/CreditNoteDetailDrawer/JournalEntriesTransactions/components.tsx diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/ReconcileCreditNoteTransactions/ReconcileCreditNoteTransactionsTable.tsx b/apps/client/src/containers/Drawers/CreditNoteDetailDrawer/ReconcileCreditNoteTransactions/ReconcileCreditNoteTransactionsTable.tsx similarity index 100% rename from src/containers/Drawers/CreditNoteDetailDrawer/ReconcileCreditNoteTransactions/ReconcileCreditNoteTransactionsTable.tsx rename to apps/client/src/containers/Drawers/CreditNoteDetailDrawer/ReconcileCreditNoteTransactions/ReconcileCreditNoteTransactionsTable.tsx diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/ReconcileCreditNoteTransactions/components.tsx b/apps/client/src/containers/Drawers/CreditNoteDetailDrawer/ReconcileCreditNoteTransactions/components.tsx similarity index 100% rename from src/containers/Drawers/CreditNoteDetailDrawer/ReconcileCreditNoteTransactions/components.tsx rename to apps/client/src/containers/Drawers/CreditNoteDetailDrawer/ReconcileCreditNoteTransactions/components.tsx diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/RefundCreditNoteTransactions/RefundCreditNoteTransactionsTable.tsx b/apps/client/src/containers/Drawers/CreditNoteDetailDrawer/RefundCreditNoteTransactions/RefundCreditNoteTransactionsTable.tsx similarity index 100% rename from src/containers/Drawers/CreditNoteDetailDrawer/RefundCreditNoteTransactions/RefundCreditNoteTransactionsTable.tsx rename to apps/client/src/containers/Drawers/CreditNoteDetailDrawer/RefundCreditNoteTransactions/RefundCreditNoteTransactionsTable.tsx diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/RefundCreditNoteTransactions/components.tsx b/apps/client/src/containers/Drawers/CreditNoteDetailDrawer/RefundCreditNoteTransactions/components.tsx similarity index 100% rename from src/containers/Drawers/CreditNoteDetailDrawer/RefundCreditNoteTransactions/components.tsx rename to apps/client/src/containers/Drawers/CreditNoteDetailDrawer/RefundCreditNoteTransactions/components.tsx diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/index.tsx b/apps/client/src/containers/Drawers/CreditNoteDetailDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/CreditNoteDetailDrawer/index.tsx rename to apps/client/src/containers/Drawers/CreditNoteDetailDrawer/index.tsx diff --git a/src/containers/Drawers/CreditNoteDetailDrawer/utils.tsx b/apps/client/src/containers/Drawers/CreditNoteDetailDrawer/utils.tsx similarity index 100% rename from src/containers/Drawers/CreditNoteDetailDrawer/utils.tsx rename to apps/client/src/containers/Drawers/CreditNoteDetailDrawer/utils.tsx diff --git a/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetails.tsx b/apps/client/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetails.tsx similarity index 100% rename from src/containers/Drawers/CustomerDetailsDrawer/CustomerDetails.tsx rename to apps/client/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetails.tsx diff --git a/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsActionsBar.tsx b/apps/client/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsActionsBar.tsx similarity index 100% rename from src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsActionsBar.tsx rename to apps/client/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsActionsBar.tsx diff --git a/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawer.module.scss b/apps/client/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawer.module.scss similarity index 100% rename from src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawer.module.scss rename to apps/client/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawer.module.scss diff --git a/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawerContent.tsx b/apps/client/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawerContent.tsx rename to apps/client/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawerContent.tsx diff --git a/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawerProvider.tsx b/apps/client/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawerProvider.tsx rename to apps/client/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsDrawerProvider.tsx diff --git a/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsHeader.tsx b/apps/client/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsHeader.tsx similarity index 100% rename from src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsHeader.tsx rename to apps/client/src/containers/Drawers/CustomerDetailsDrawer/CustomerDetailsHeader.tsx diff --git a/src/containers/Drawers/CustomerDetailsDrawer/index.tsx b/apps/client/src/containers/Drawers/CustomerDetailsDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/CustomerDetailsDrawer/index.tsx rename to apps/client/src/containers/Drawers/CustomerDetailsDrawer/index.tsx diff --git a/src/containers/Drawers/CustomerDetailsDrawer/utils.tsx b/apps/client/src/containers/Drawers/CustomerDetailsDrawer/utils.tsx similarity index 100% rename from src/containers/Drawers/CustomerDetailsDrawer/utils.tsx rename to apps/client/src/containers/Drawers/CustomerDetailsDrawer/utils.tsx diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetail.tsx b/apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetail.tsx similarity index 100% rename from src/containers/Drawers/EstimateDetailDrawer/EstimateDetail.tsx rename to apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetail.tsx diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailActionsBar.tsx b/apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailActionsBar.tsx similarity index 100% rename from src/containers/Drawers/EstimateDetailDrawer/EstimateDetailActionsBar.tsx rename to apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailActionsBar.tsx diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailDrawerContent.tsx b/apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/EstimateDetailDrawer/EstimateDetailDrawerContent.tsx rename to apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailDrawerContent.tsx diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailDrawerProvider.tsx b/apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/EstimateDetailDrawer/EstimateDetailDrawerProvider.tsx rename to apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailDrawerProvider.tsx diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailFooter.tsx b/apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailFooter.tsx similarity index 100% rename from src/containers/Drawers/EstimateDetailDrawer/EstimateDetailFooter.tsx rename to apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailFooter.tsx diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailHeader.tsx b/apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailHeader.tsx similarity index 100% rename from src/containers/Drawers/EstimateDetailDrawer/EstimateDetailHeader.tsx rename to apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailHeader.tsx diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailPanel.tsx b/apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailPanel.tsx similarity index 100% rename from src/containers/Drawers/EstimateDetailDrawer/EstimateDetailPanel.tsx rename to apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailPanel.tsx diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailTable.tsx b/apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailTable.tsx similarity index 100% rename from src/containers/Drawers/EstimateDetailDrawer/EstimateDetailTable.tsx rename to apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailTable.tsx diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailTableFooter.tsx b/apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailTableFooter.tsx similarity index 100% rename from src/containers/Drawers/EstimateDetailDrawer/EstimateDetailTableFooter.tsx rename to apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDetailTableFooter.tsx diff --git a/src/containers/Drawers/EstimateDetailDrawer/EstimateDrawerClasses.tsx b/apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDrawerClasses.tsx similarity index 100% rename from src/containers/Drawers/EstimateDetailDrawer/EstimateDrawerClasses.tsx rename to apps/client/src/containers/Drawers/EstimateDetailDrawer/EstimateDrawerClasses.tsx diff --git a/src/containers/Drawers/EstimateDetailDrawer/components.tsx b/apps/client/src/containers/Drawers/EstimateDetailDrawer/components.tsx similarity index 100% rename from src/containers/Drawers/EstimateDetailDrawer/components.tsx rename to apps/client/src/containers/Drawers/EstimateDetailDrawer/components.tsx diff --git a/src/containers/Drawers/EstimateDetailDrawer/index.tsx b/apps/client/src/containers/Drawers/EstimateDetailDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/EstimateDetailDrawer/index.tsx rename to apps/client/src/containers/Drawers/EstimateDetailDrawer/index.tsx diff --git a/src/containers/Drawers/EstimateDetailDrawer/utils.tsx b/apps/client/src/containers/Drawers/EstimateDetailDrawer/utils.tsx similarity index 100% rename from src/containers/Drawers/EstimateDetailDrawer/utils.tsx rename to apps/client/src/containers/Drawers/EstimateDetailDrawer/utils.tsx diff --git a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerActionBar.tsx b/apps/client/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerActionBar.tsx similarity index 100% rename from src/containers/Drawers/ExpenseDrawer/ExpenseDrawerActionBar.tsx rename to apps/client/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerActionBar.tsx diff --git a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerContent.tsx b/apps/client/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/ExpenseDrawer/ExpenseDrawerContent.tsx rename to apps/client/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerContent.tsx diff --git a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerDetails.tsx b/apps/client/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerDetails.tsx similarity index 100% rename from src/containers/Drawers/ExpenseDrawer/ExpenseDrawerDetails.tsx rename to apps/client/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerDetails.tsx diff --git a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerFooter.tsx b/apps/client/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerFooter.tsx similarity index 100% rename from src/containers/Drawers/ExpenseDrawer/ExpenseDrawerFooter.tsx rename to apps/client/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerFooter.tsx diff --git a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerHeader.tsx b/apps/client/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerHeader.tsx similarity index 100% rename from src/containers/Drawers/ExpenseDrawer/ExpenseDrawerHeader.tsx rename to apps/client/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerHeader.tsx diff --git a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerProvider.tsx b/apps/client/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/ExpenseDrawer/ExpenseDrawerProvider.tsx rename to apps/client/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerProvider.tsx diff --git a/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerTable.tsx b/apps/client/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerTable.tsx similarity index 100% rename from src/containers/Drawers/ExpenseDrawer/ExpenseDrawerTable.tsx rename to apps/client/src/containers/Drawers/ExpenseDrawer/ExpenseDrawerTable.tsx diff --git a/src/containers/Drawers/ExpenseDrawer/components.tsx b/apps/client/src/containers/Drawers/ExpenseDrawer/components.tsx similarity index 100% rename from src/containers/Drawers/ExpenseDrawer/components.tsx rename to apps/client/src/containers/Drawers/ExpenseDrawer/components.tsx diff --git a/src/containers/Drawers/ExpenseDrawer/index.tsx b/apps/client/src/containers/Drawers/ExpenseDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/ExpenseDrawer/index.tsx rename to apps/client/src/containers/Drawers/ExpenseDrawer/index.tsx diff --git a/src/containers/Drawers/ExpenseDrawer/utils.tsx b/apps/client/src/containers/Drawers/ExpenseDrawer/utils.tsx similarity index 100% rename from src/containers/Drawers/ExpenseDrawer/utils.tsx rename to apps/client/src/containers/Drawers/ExpenseDrawer/utils.tsx diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetail.tsx b/apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetail.tsx similarity index 100% rename from src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetail.tsx rename to apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetail.tsx diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailActionsBar.tsx b/apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailActionsBar.tsx similarity index 100% rename from src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailActionsBar.tsx rename to apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailActionsBar.tsx diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailGLEntriesPanel.tsx b/apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailGLEntriesPanel.tsx similarity index 100% rename from src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailGLEntriesPanel.tsx rename to apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailGLEntriesPanel.tsx diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailHeader.tsx b/apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailHeader.tsx similarity index 100% rename from src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailHeader.tsx rename to apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailHeader.tsx diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailTab.tsx b/apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailTab.tsx similarity index 100% rename from src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailTab.tsx rename to apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailTab.tsx diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailTable.tsx b/apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailTable.tsx similarity index 100% rename from src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailTable.tsx rename to apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDetailTable.tsx diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDrawerContent.tsx b/apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDrawerContent.tsx rename to apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDrawerContent.tsx diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDrawerProvider.tsx b/apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDrawerProvider.tsx rename to apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/InventoryAdjustmentDrawerProvider.tsx diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/index.tsx b/apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/InventoryAdjustmentDetailDrawer/index.tsx rename to apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/index.tsx diff --git a/src/containers/Drawers/InventoryAdjustmentDetailDrawer/utils.tsx b/apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/utils.tsx similarity index 100% rename from src/containers/Drawers/InventoryAdjustmentDetailDrawer/utils.tsx rename to apps/client/src/containers/Drawers/InventoryAdjustmentDetailDrawer/utils.tsx diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetail.tsx b/apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetail.tsx similarity index 100% rename from src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetail.tsx rename to apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetail.tsx diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailActionsBar.tsx b/apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailActionsBar.tsx similarity index 100% rename from src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailActionsBar.tsx rename to apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailActionsBar.tsx diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailDrawerContent.tsx b/apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailDrawerContent.tsx rename to apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailDrawerContent.tsx diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailDrawerProvider.tsx b/apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailDrawerProvider.tsx rename to apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailDrawerProvider.tsx diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailFooter.tsx b/apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailFooter.tsx similarity index 100% rename from src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailFooter.tsx rename to apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailFooter.tsx diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailHeader.tsx b/apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailHeader.tsx similarity index 100% rename from src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailHeader.tsx rename to apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailHeader.tsx diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTab.tsx b/apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTab.tsx similarity index 100% rename from src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTab.tsx rename to apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTab.tsx diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTable.tsx b/apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTable.tsx similarity index 100% rename from src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTable.tsx rename to apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTable.tsx diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTableFooter.tsx b/apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTableFooter.tsx similarity index 100% rename from src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTableFooter.tsx rename to apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceDetailTableFooter.tsx diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoiceGLEntriesTable.tsx b/apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceGLEntriesTable.tsx similarity index 100% rename from src/containers/Drawers/InvoiceDetailDrawer/InvoiceGLEntriesTable.tsx rename to apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoiceGLEntriesTable.tsx diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoicePaymentTransactions/InvoicePaymentTransactionsTable.tsx b/apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoicePaymentTransactions/InvoicePaymentTransactionsTable.tsx similarity index 100% rename from src/containers/Drawers/InvoiceDetailDrawer/InvoicePaymentTransactions/InvoicePaymentTransactionsTable.tsx rename to apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoicePaymentTransactions/InvoicePaymentTransactionsTable.tsx diff --git a/src/containers/Drawers/InvoiceDetailDrawer/InvoicePaymentTransactions/components.tsx b/apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoicePaymentTransactions/components.tsx similarity index 100% rename from src/containers/Drawers/InvoiceDetailDrawer/InvoicePaymentTransactions/components.tsx rename to apps/client/src/containers/Drawers/InvoiceDetailDrawer/InvoicePaymentTransactions/components.tsx diff --git a/src/containers/Drawers/InvoiceDetailDrawer/index.tsx b/apps/client/src/containers/Drawers/InvoiceDetailDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/InvoiceDetailDrawer/index.tsx rename to apps/client/src/containers/Drawers/InvoiceDetailDrawer/index.tsx diff --git a/src/containers/Drawers/InvoiceDetailDrawer/utils.tsx b/apps/client/src/containers/Drawers/InvoiceDetailDrawer/utils.tsx similarity index 100% rename from src/containers/Drawers/InvoiceDetailDrawer/utils.tsx rename to apps/client/src/containers/Drawers/InvoiceDetailDrawer/utils.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemContentDetails.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/ItemContentDetails.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/ItemContentDetails.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/ItemContentDetails.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemDetailActionsBar.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/ItemDetailActionsBar.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/ItemDetailActionsBar.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/ItemDetailActionsBar.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemDetailDrawerContent.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/ItemDetailDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/ItemDetailDrawerContent.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/ItemDetailDrawerContent.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemDetailDrawerProvider.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/ItemDetailDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/ItemDetailDrawerProvider.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/ItemDetailDrawerProvider.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemDetailHeader.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/ItemDetailHeader.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/ItemDetailHeader.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/ItemDetailHeader.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemDetailTab.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/ItemDetailTab.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/ItemDetailTab.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/ItemDetailTab.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/BillPaymentTransactions/components.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/BillPaymentTransactions/components.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/BillPaymentTransactions/components.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/BillPaymentTransactions/components.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/BillPaymentTransactions/index.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/BillPaymentTransactions/index.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/BillPaymentTransactions/index.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/BillPaymentTransactions/index.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/EstimatePaymentTransactions/components.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/EstimatePaymentTransactions/components.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/EstimatePaymentTransactions/components.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/EstimatePaymentTransactions/components.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/EstimatePaymentTransactions/index.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/EstimatePaymentTransactions/index.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/EstimatePaymentTransactions/index.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/EstimatePaymentTransactions/index.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/InvoicePaymentTransactions/components.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/InvoicePaymentTransactions/components.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/InvoicePaymentTransactions/components.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/InvoicePaymentTransactions/components.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/InvoicePaymentTransactions/index.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/InvoicePaymentTransactions/index.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/InvoicePaymentTransactions/index.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/InvoicePaymentTransactions/index.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ItemPaymentTransactionContent.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ItemPaymentTransactionContent.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ItemPaymentTransactionContent.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ItemPaymentTransactionContent.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ReceiptPaymentTransactions/components.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ReceiptPaymentTransactions/components.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ReceiptPaymentTransactions/components.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ReceiptPaymentTransactions/components.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ReceiptPaymentTransactions/index.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ReceiptPaymentTransactions/index.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ReceiptPaymentTransactions/index.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/ReceiptPaymentTransactions/index.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/index.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/index.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/index.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/index.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/utils.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/utils.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/utils.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/ItemPaymentTransactions/utils.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/WarehousesLocations/components.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/WarehousesLocations/components.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/WarehousesLocations/components.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/WarehousesLocations/components.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/WarehousesLocations/index.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/WarehousesLocations/index.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/WarehousesLocations/index.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/WarehousesLocations/index.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/index.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/index.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/index.tsx diff --git a/src/containers/Drawers/ItemDetailDrawer/utlis.tsx b/apps/client/src/containers/Drawers/ItemDetailDrawer/utlis.tsx similarity index 100% rename from src/containers/Drawers/ItemDetailDrawer/utlis.tsx rename to apps/client/src/containers/Drawers/ItemDetailDrawer/utlis.tsx diff --git a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerActionBar.tsx b/apps/client/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerActionBar.tsx similarity index 100% rename from src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerActionBar.tsx rename to apps/client/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerActionBar.tsx diff --git a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerContent.tsx b/apps/client/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerContent.tsx rename to apps/client/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerContent.tsx diff --git a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerDetails.tsx b/apps/client/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerDetails.tsx similarity index 100% rename from src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerDetails.tsx rename to apps/client/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerDetails.tsx diff --git a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerFooter.tsx b/apps/client/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerFooter.tsx similarity index 100% rename from src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerFooter.tsx rename to apps/client/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerFooter.tsx diff --git a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerHeader.tsx b/apps/client/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerHeader.tsx similarity index 100% rename from src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerHeader.tsx rename to apps/client/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerHeader.tsx diff --git a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerProvider.tsx b/apps/client/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerProvider.tsx rename to apps/client/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerProvider.tsx diff --git a/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerTable.tsx b/apps/client/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerTable.tsx similarity index 100% rename from src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerTable.tsx rename to apps/client/src/containers/Drawers/ManualJournalDrawer/ManualJournalDrawerTable.tsx diff --git a/src/containers/Drawers/ManualJournalDrawer/index.tsx b/apps/client/src/containers/Drawers/ManualJournalDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/ManualJournalDrawer/index.tsx rename to apps/client/src/containers/Drawers/ManualJournalDrawer/index.tsx diff --git a/src/containers/Drawers/ManualJournalDrawer/utils.tsx b/apps/client/src/containers/Drawers/ManualJournalDrawer/utils.tsx similarity index 100% rename from src/containers/Drawers/ManualJournalDrawer/utils.tsx rename to apps/client/src/containers/Drawers/ManualJournalDrawer/utils.tsx diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailActionsBar.tsx b/apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailActionsBar.tsx similarity index 100% rename from src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailActionsBar.tsx rename to apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailActionsBar.tsx diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailContent.tsx b/apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailContent.tsx similarity index 100% rename from src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailContent.tsx rename to apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailContent.tsx diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailFooter.tsx b/apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailFooter.tsx similarity index 100% rename from src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailFooter.tsx rename to apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailFooter.tsx diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailHeader.tsx b/apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailHeader.tsx similarity index 100% rename from src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailHeader.tsx rename to apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailHeader.tsx diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailProvider.tsx b/apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailProvider.tsx similarity index 100% rename from src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailProvider.tsx rename to apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailProvider.tsx diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTab.tsx b/apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTab.tsx similarity index 100% rename from src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTab.tsx rename to apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTab.tsx diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTable.tsx b/apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTable.tsx similarity index 100% rename from src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTable.tsx rename to apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTable.tsx diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTableFooter.tsx b/apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTableFooter.tsx similarity index 100% rename from src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTableFooter.tsx rename to apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetailTableFooter.tsx diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetails.tsx b/apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetails.tsx similarity index 100% rename from src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetails.tsx rename to apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDetails.tsx diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDrawer.module.scss b/apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDrawer.module.scss similarity index 100% rename from src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDrawer.module.scss rename to apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeDrawer.module.scss diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeGLEntriesPanel.tsx b/apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeGLEntriesPanel.tsx similarity index 100% rename from src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeGLEntriesPanel.tsx rename to apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/PaymentMadeGLEntriesPanel.tsx diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/index.tsx b/apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/PaymentMadeDetailDrawer/index.tsx rename to apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/index.tsx diff --git a/src/containers/Drawers/PaymentMadeDetailDrawer/utils.tsx b/apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/utils.tsx similarity index 100% rename from src/containers/Drawers/PaymentMadeDetailDrawer/utils.tsx rename to apps/client/src/containers/Drawers/PaymentMadeDetailDrawer/utils.tsx diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveActionsBar.tsx b/apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveActionsBar.tsx similarity index 100% rename from src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveActionsBar.tsx rename to apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveActionsBar.tsx diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetail.tsx b/apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetail.tsx similarity index 100% rename from src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetail.tsx rename to apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetail.tsx diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailContent.tsx b/apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailContent.tsx similarity index 100% rename from src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailContent.tsx rename to apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailContent.tsx diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailFooter.tsx b/apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailFooter.tsx similarity index 100% rename from src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailFooter.tsx rename to apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailFooter.tsx diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailHeader.tsx b/apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailHeader.tsx similarity index 100% rename from src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailHeader.tsx rename to apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailHeader.tsx diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailProvider.tsx b/apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailProvider.tsx similarity index 100% rename from src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailProvider.tsx rename to apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailProvider.tsx diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTab.tsx b/apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTab.tsx similarity index 100% rename from src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTab.tsx rename to apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTab.tsx diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTable.tsx b/apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTable.tsx similarity index 100% rename from src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTable.tsx rename to apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTable.tsx diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTableFooter.tsx b/apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTableFooter.tsx similarity index 100% rename from src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTableFooter.tsx rename to apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDetailTableFooter.tsx diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDrawer.module.scss b/apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDrawer.module.scss similarity index 100% rename from src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDrawer.module.scss rename to apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveDrawer.module.scss diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveGLEntriesPanel.tsx b/apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveGLEntriesPanel.tsx similarity index 100% rename from src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveGLEntriesPanel.tsx rename to apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/PaymentReceiveGLEntriesPanel.tsx diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/index.tsx b/apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/PaymentReceiveDetailDrawer/index.tsx rename to apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/index.tsx diff --git a/src/containers/Drawers/PaymentReceiveDetailDrawer/utils.tsx b/apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/utils.tsx similarity index 100% rename from src/containers/Drawers/PaymentReceiveDetailDrawer/utils.tsx rename to apps/client/src/containers/Drawers/PaymentReceiveDetailDrawer/utils.tsx diff --git a/src/containers/Drawers/QuickCreateCustomerDrawer/QuickCreateCustomerDrawerContent.tsx b/apps/client/src/containers/Drawers/QuickCreateCustomerDrawer/QuickCreateCustomerDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/QuickCreateCustomerDrawer/QuickCreateCustomerDrawerContent.tsx rename to apps/client/src/containers/Drawers/QuickCreateCustomerDrawer/QuickCreateCustomerDrawerContent.tsx diff --git a/src/containers/Drawers/QuickCreateCustomerDrawer/QuickCustomerFormDrawer.tsx b/apps/client/src/containers/Drawers/QuickCreateCustomerDrawer/QuickCustomerFormDrawer.tsx similarity index 100% rename from src/containers/Drawers/QuickCreateCustomerDrawer/QuickCustomerFormDrawer.tsx rename to apps/client/src/containers/Drawers/QuickCreateCustomerDrawer/QuickCustomerFormDrawer.tsx diff --git a/src/containers/Drawers/QuickCreateCustomerDrawer/index.tsx b/apps/client/src/containers/Drawers/QuickCreateCustomerDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/QuickCreateCustomerDrawer/index.tsx rename to apps/client/src/containers/Drawers/QuickCreateCustomerDrawer/index.tsx diff --git a/src/containers/Drawers/QuickCreateItemDrawer/QuickCreateItemDrawerContent.tsx b/apps/client/src/containers/Drawers/QuickCreateItemDrawer/QuickCreateItemDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/QuickCreateItemDrawer/QuickCreateItemDrawerContent.tsx rename to apps/client/src/containers/Drawers/QuickCreateItemDrawer/QuickCreateItemDrawerContent.tsx diff --git a/src/containers/Drawers/QuickCreateItemDrawer/QuickCreateItemDrawerForm.tsx b/apps/client/src/containers/Drawers/QuickCreateItemDrawer/QuickCreateItemDrawerForm.tsx similarity index 100% rename from src/containers/Drawers/QuickCreateItemDrawer/QuickCreateItemDrawerForm.tsx rename to apps/client/src/containers/Drawers/QuickCreateItemDrawer/QuickCreateItemDrawerForm.tsx diff --git a/src/containers/Drawers/QuickCreateItemDrawer/index.tsx b/apps/client/src/containers/Drawers/QuickCreateItemDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/QuickCreateItemDrawer/index.tsx rename to apps/client/src/containers/Drawers/QuickCreateItemDrawer/index.tsx diff --git a/src/containers/Drawers/QuickWriteVendorDrawer/QuickVendorFormDrawer.tsx b/apps/client/src/containers/Drawers/QuickWriteVendorDrawer/QuickVendorFormDrawer.tsx similarity index 100% rename from src/containers/Drawers/QuickWriteVendorDrawer/QuickVendorFormDrawer.tsx rename to apps/client/src/containers/Drawers/QuickWriteVendorDrawer/QuickVendorFormDrawer.tsx diff --git a/src/containers/Drawers/QuickWriteVendorDrawer/QuickWriteVendorDrawerContent.tsx b/apps/client/src/containers/Drawers/QuickWriteVendorDrawer/QuickWriteVendorDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/QuickWriteVendorDrawer/QuickWriteVendorDrawerContent.tsx rename to apps/client/src/containers/Drawers/QuickWriteVendorDrawer/QuickWriteVendorDrawerContent.tsx diff --git a/src/containers/Drawers/QuickWriteVendorDrawer/index.tsx b/apps/client/src/containers/Drawers/QuickWriteVendorDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/QuickWriteVendorDrawer/index.tsx rename to apps/client/src/containers/Drawers/QuickWriteVendorDrawer/index.tsx diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetail.tsx b/apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetail.tsx similarity index 100% rename from src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetail.tsx rename to apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetail.tsx diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailActionBar.tsx b/apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailActionBar.tsx similarity index 100% rename from src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailActionBar.tsx rename to apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailActionBar.tsx diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailDrawerContent.tsx b/apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailDrawerContent.tsx rename to apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailDrawerContent.tsx diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailDrawerProvider.tsx b/apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailDrawerProvider.tsx rename to apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailDrawerProvider.tsx diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailFooter.tsx b/apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailFooter.tsx similarity index 100% rename from src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailFooter.tsx rename to apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailFooter.tsx diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailHeader.tsx b/apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailHeader.tsx similarity index 100% rename from src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailHeader.tsx rename to apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailHeader.tsx diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTab.tsx b/apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTab.tsx similarity index 100% rename from src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTab.tsx rename to apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTab.tsx diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTable.tsx b/apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTable.tsx similarity index 100% rename from src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTable.tsx rename to apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTable.tsx diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTableFooter.tsx b/apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTableFooter.tsx similarity index 100% rename from src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTableFooter.tsx rename to apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailTableFooter.tsx diff --git a/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailsGLEntriesPanel.tsx b/apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailsGLEntriesPanel.tsx similarity index 100% rename from src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailsGLEntriesPanel.tsx rename to apps/client/src/containers/Drawers/ReceiptDetailDrawer/ReceiptDetailsGLEntriesPanel.tsx diff --git a/src/containers/Drawers/ReceiptDetailDrawer/components.tsx b/apps/client/src/containers/Drawers/ReceiptDetailDrawer/components.tsx similarity index 100% rename from src/containers/Drawers/ReceiptDetailDrawer/components.tsx rename to apps/client/src/containers/Drawers/ReceiptDetailDrawer/components.tsx diff --git a/src/containers/Drawers/ReceiptDetailDrawer/index.tsx b/apps/client/src/containers/Drawers/ReceiptDetailDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/ReceiptDetailDrawer/index.tsx rename to apps/client/src/containers/Drawers/ReceiptDetailDrawer/index.tsx diff --git a/src/containers/Drawers/ReceiptDetailDrawer/utils.tsx b/apps/client/src/containers/Drawers/ReceiptDetailDrawer/utils.tsx similarity index 100% rename from src/containers/Drawers/ReceiptDetailDrawer/utils.tsx rename to apps/client/src/containers/Drawers/ReceiptDetailDrawer/utils.tsx diff --git a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetail.tsx b/apps/client/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetail.tsx similarity index 100% rename from src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetail.tsx rename to apps/client/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetail.tsx diff --git a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailActionsBar.tsx b/apps/client/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailActionsBar.tsx similarity index 100% rename from src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailActionsBar.tsx rename to apps/client/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailActionsBar.tsx diff --git a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailHeader.tsx b/apps/client/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailHeader.tsx similarity index 100% rename from src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailHeader.tsx rename to apps/client/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailHeader.tsx diff --git a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailTab.tsx b/apps/client/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailTab.tsx similarity index 100% rename from src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailTab.tsx rename to apps/client/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDetailTab.tsx diff --git a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDrawerContent.tsx b/apps/client/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDrawerContent.tsx rename to apps/client/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDrawerContent.tsx diff --git a/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDrawerProvider.tsx b/apps/client/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDrawerProvider.tsx rename to apps/client/src/containers/Drawers/RefundCreditNoteDetailDrawer/RefundCreditNoteDrawerProvider.tsx diff --git a/src/containers/Drawers/RefundCreditNoteDetailDrawer/index.tsx b/apps/client/src/containers/Drawers/RefundCreditNoteDetailDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/RefundCreditNoteDetailDrawer/index.tsx rename to apps/client/src/containers/Drawers/RefundCreditNoteDetailDrawer/index.tsx diff --git a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetail.tsx b/apps/client/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetail.tsx similarity index 100% rename from src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetail.tsx rename to apps/client/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetail.tsx diff --git a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailActionsBar.tsx b/apps/client/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailActionsBar.tsx similarity index 100% rename from src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailActionsBar.tsx rename to apps/client/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailActionsBar.tsx diff --git a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailHeader.tsx b/apps/client/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailHeader.tsx similarity index 100% rename from src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailHeader.tsx rename to apps/client/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailHeader.tsx diff --git a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailTab.tsx b/apps/client/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailTab.tsx similarity index 100% rename from src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailTab.tsx rename to apps/client/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDetailTab.tsx diff --git a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDrawerContent.tsx b/apps/client/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDrawerContent.tsx rename to apps/client/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDrawerContent.tsx diff --git a/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDrawerProvider.tsx b/apps/client/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDrawerProvider.tsx rename to apps/client/src/containers/Drawers/RefundVendorCreditDetailDrawer/RefundVendorCreditDrawerProvider.tsx diff --git a/src/containers/Drawers/RefundVendorCreditDetailDrawer/index.tsx b/apps/client/src/containers/Drawers/RefundVendorCreditDetailDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/RefundVendorCreditDetailDrawer/index.tsx rename to apps/client/src/containers/Drawers/RefundVendorCreditDetailDrawer/index.tsx diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/JournalEntriesTransactions/JournalEntriesTransactionsTable.tsx b/apps/client/src/containers/Drawers/VendorCreditDetailDrawer/JournalEntriesTransactions/JournalEntriesTransactionsTable.tsx similarity index 100% rename from src/containers/Drawers/VendorCreditDetailDrawer/JournalEntriesTransactions/JournalEntriesTransactionsTable.tsx rename to apps/client/src/containers/Drawers/VendorCreditDetailDrawer/JournalEntriesTransactions/JournalEntriesTransactionsTable.tsx diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/JournalEntriesTransactions/components.tsx b/apps/client/src/containers/Drawers/VendorCreditDetailDrawer/JournalEntriesTransactions/components.tsx similarity index 100% rename from src/containers/Drawers/VendorCreditDetailDrawer/JournalEntriesTransactions/components.tsx rename to apps/client/src/containers/Drawers/VendorCreditDetailDrawer/JournalEntriesTransactions/components.tsx diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/ReconcileVendorCreditTransactions/ReconcileVendorCreditTransactionsTable.tsx b/apps/client/src/containers/Drawers/VendorCreditDetailDrawer/ReconcileVendorCreditTransactions/ReconcileVendorCreditTransactionsTable.tsx similarity index 100% rename from src/containers/Drawers/VendorCreditDetailDrawer/ReconcileVendorCreditTransactions/ReconcileVendorCreditTransactionsTable.tsx rename to apps/client/src/containers/Drawers/VendorCreditDetailDrawer/ReconcileVendorCreditTransactions/ReconcileVendorCreditTransactionsTable.tsx diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/ReconcileVendorCreditTransactions/components.tsx b/apps/client/src/containers/Drawers/VendorCreditDetailDrawer/ReconcileVendorCreditTransactions/components.tsx similarity index 100% rename from src/containers/Drawers/VendorCreditDetailDrawer/ReconcileVendorCreditTransactions/components.tsx rename to apps/client/src/containers/Drawers/VendorCreditDetailDrawer/ReconcileVendorCreditTransactions/components.tsx diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/RefundVendorCreditTransactions/RefundVendorCreditTransactionsTable.tsx b/apps/client/src/containers/Drawers/VendorCreditDetailDrawer/RefundVendorCreditTransactions/RefundVendorCreditTransactionsTable.tsx similarity index 100% rename from src/containers/Drawers/VendorCreditDetailDrawer/RefundVendorCreditTransactions/RefundVendorCreditTransactionsTable.tsx rename to apps/client/src/containers/Drawers/VendorCreditDetailDrawer/RefundVendorCreditTransactions/RefundVendorCreditTransactionsTable.tsx diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/RefundVendorCreditTransactions/components.tsx b/apps/client/src/containers/Drawers/VendorCreditDetailDrawer/RefundVendorCreditTransactions/components.tsx similarity index 100% rename from src/containers/Drawers/VendorCreditDetailDrawer/RefundVendorCreditTransactions/components.tsx rename to apps/client/src/containers/Drawers/VendorCreditDetailDrawer/RefundVendorCreditTransactions/components.tsx diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetail.tsx b/apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetail.tsx similarity index 100% rename from src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetail.tsx rename to apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetail.tsx diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailActionsBar.tsx b/apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailActionsBar.tsx similarity index 100% rename from src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailActionsBar.tsx rename to apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailActionsBar.tsx diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerContent.tsx b/apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerContent.tsx rename to apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerContent.tsx diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerFooter.tsx b/apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerFooter.tsx similarity index 100% rename from src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerFooter.tsx rename to apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerFooter.tsx diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerProvider.tsx b/apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerProvider.tsx rename to apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailDrawerProvider.tsx diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailFooter.tsx b/apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailFooter.tsx similarity index 100% rename from src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailFooter.tsx rename to apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailFooter.tsx diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailHeader.tsx b/apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailHeader.tsx similarity index 100% rename from src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailHeader.tsx rename to apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailHeader.tsx diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailPanel.tsx b/apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailPanel.tsx similarity index 100% rename from src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailPanel.tsx rename to apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailPanel.tsx diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailTable.tsx b/apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailTable.tsx similarity index 100% rename from src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailTable.tsx rename to apps/client/src/containers/Drawers/VendorCreditDetailDrawer/VendorCreditDetailTable.tsx diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/index.tsx b/apps/client/src/containers/Drawers/VendorCreditDetailDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/VendorCreditDetailDrawer/index.tsx rename to apps/client/src/containers/Drawers/VendorCreditDetailDrawer/index.tsx diff --git a/src/containers/Drawers/VendorCreditDetailDrawer/utils.tsx b/apps/client/src/containers/Drawers/VendorCreditDetailDrawer/utils.tsx similarity index 100% rename from src/containers/Drawers/VendorCreditDetailDrawer/utils.tsx rename to apps/client/src/containers/Drawers/VendorCreditDetailDrawer/utils.tsx diff --git a/src/containers/Drawers/VendorDetailsDrawer/VendorDetails.tsx b/apps/client/src/containers/Drawers/VendorDetailsDrawer/VendorDetails.tsx similarity index 100% rename from src/containers/Drawers/VendorDetailsDrawer/VendorDetails.tsx rename to apps/client/src/containers/Drawers/VendorDetailsDrawer/VendorDetails.tsx diff --git a/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsActionsBar.tsx b/apps/client/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsActionsBar.tsx similarity index 100% rename from src/containers/Drawers/VendorDetailsDrawer/VendorDetailsActionsBar.tsx rename to apps/client/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsActionsBar.tsx diff --git a/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawer.module.scss b/apps/client/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawer.module.scss similarity index 100% rename from src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawer.module.scss rename to apps/client/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawer.module.scss diff --git a/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawerContent.tsx b/apps/client/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawerContent.tsx rename to apps/client/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawerContent.tsx diff --git a/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawerProvider.tsx b/apps/client/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawerProvider.tsx rename to apps/client/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsDrawerProvider.tsx diff --git a/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsHeader.tsx b/apps/client/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsHeader.tsx similarity index 100% rename from src/containers/Drawers/VendorDetailsDrawer/VendorDetailsHeader.tsx rename to apps/client/src/containers/Drawers/VendorDetailsDrawer/VendorDetailsHeader.tsx diff --git a/src/containers/Drawers/VendorDetailsDrawer/index.tsx b/apps/client/src/containers/Drawers/VendorDetailsDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/VendorDetailsDrawer/index.tsx rename to apps/client/src/containers/Drawers/VendorDetailsDrawer/index.tsx diff --git a/src/containers/Drawers/VendorDetailsDrawer/utils.tsx b/apps/client/src/containers/Drawers/VendorDetailsDrawer/utils.tsx similarity index 100% rename from src/containers/Drawers/VendorDetailsDrawer/utils.tsx rename to apps/client/src/containers/Drawers/VendorDetailsDrawer/utils.tsx diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetail.tsx b/apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetail.tsx similarity index 100% rename from src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetail.tsx rename to apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetail.tsx diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailActionsBar.tsx b/apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailActionsBar.tsx similarity index 100% rename from src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailActionsBar.tsx rename to apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailActionsBar.tsx diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailDrawerContent.tsx b/apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailDrawerContent.tsx similarity index 100% rename from src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailDrawerContent.tsx rename to apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailDrawerContent.tsx diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailDrawerProvider.tsx b/apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailDrawerProvider.tsx similarity index 100% rename from src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailDrawerProvider.tsx rename to apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailDrawerProvider.tsx diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailHeader.tsx b/apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailHeader.tsx similarity index 100% rename from src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailHeader.tsx rename to apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailHeader.tsx diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailPanel.tsx b/apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailPanel.tsx similarity index 100% rename from src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailPanel.tsx rename to apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailPanel.tsx diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailTable.tsx b/apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailTable.tsx similarity index 100% rename from src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailTable.tsx rename to apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/WarehouseTransferDetailTable.tsx diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/index.tsx b/apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/index.tsx similarity index 100% rename from src/containers/Drawers/WarehouseTransferDetailDrawer/index.tsx rename to apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/index.tsx diff --git a/src/containers/Drawers/WarehouseTransferDetailDrawer/utils.tsx b/apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/utils.tsx similarity index 100% rename from src/containers/Drawers/WarehouseTransferDetailDrawer/utils.tsx rename to apps/client/src/containers/Drawers/WarehouseTransferDetailDrawer/utils.tsx diff --git a/src/containers/Drawers/components.tsx b/apps/client/src/containers/Drawers/components.tsx similarity index 100% rename from src/containers/Drawers/components.tsx rename to apps/client/src/containers/Drawers/components.tsx diff --git a/src/containers/Entries/ItemsEntriesTable.tsx b/apps/client/src/containers/Entries/ItemsEntriesTable.tsx similarity index 100% rename from src/containers/Entries/ItemsEntriesTable.tsx rename to apps/client/src/containers/Entries/ItemsEntriesTable.tsx diff --git a/src/containers/Entries/components.tsx b/apps/client/src/containers/Entries/components.tsx similarity index 100% rename from src/containers/Entries/components.tsx rename to apps/client/src/containers/Entries/components.tsx diff --git a/src/containers/Entries/utils.tsx b/apps/client/src/containers/Entries/utils.tsx similarity index 100% rename from src/containers/Entries/utils.tsx rename to apps/client/src/containers/Entries/utils.tsx diff --git a/src/containers/ExchangeRates/ExchangeRateActionsBar.tsx b/apps/client/src/containers/ExchangeRates/ExchangeRateActionsBar.tsx similarity index 100% rename from src/containers/ExchangeRates/ExchangeRateActionsBar.tsx rename to apps/client/src/containers/ExchangeRates/ExchangeRateActionsBar.tsx diff --git a/src/containers/ExchangeRates/ExchangeRateTable.tsx b/apps/client/src/containers/ExchangeRates/ExchangeRateTable.tsx similarity index 100% rename from src/containers/ExchangeRates/ExchangeRateTable.tsx rename to apps/client/src/containers/ExchangeRates/ExchangeRateTable.tsx diff --git a/src/containers/ExchangeRates/ExchangeRatesAlerts.tsx b/apps/client/src/containers/ExchangeRates/ExchangeRatesAlerts.tsx similarity index 100% rename from src/containers/ExchangeRates/ExchangeRatesAlerts.tsx rename to apps/client/src/containers/ExchangeRates/ExchangeRatesAlerts.tsx diff --git a/src/containers/ExchangeRates/ExchangeRatesList.tsx b/apps/client/src/containers/ExchangeRates/ExchangeRatesList.tsx similarity index 100% rename from src/containers/ExchangeRates/ExchangeRatesList.tsx rename to apps/client/src/containers/ExchangeRates/ExchangeRatesList.tsx diff --git a/src/containers/ExchangeRates/ExchangeRatesProvider.tsx b/apps/client/src/containers/ExchangeRates/ExchangeRatesProvider.tsx similarity index 100% rename from src/containers/ExchangeRates/ExchangeRatesProvider.tsx rename to apps/client/src/containers/ExchangeRates/ExchangeRatesProvider.tsx diff --git a/src/containers/ExchangeRates/components.tsx b/apps/client/src/containers/ExchangeRates/components.tsx similarity index 100% rename from src/containers/ExchangeRates/components.tsx rename to apps/client/src/containers/ExchangeRates/components.tsx diff --git a/src/containers/ExchangeRates/withExchangeRateDetail.tsx b/apps/client/src/containers/ExchangeRates/withExchangeRateDetail.tsx similarity index 100% rename from src/containers/ExchangeRates/withExchangeRateDetail.tsx rename to apps/client/src/containers/ExchangeRates/withExchangeRateDetail.tsx diff --git a/src/containers/ExchangeRates/withExchangeRates.tsx b/apps/client/src/containers/ExchangeRates/withExchangeRates.tsx similarity index 100% rename from src/containers/ExchangeRates/withExchangeRates.tsx rename to apps/client/src/containers/ExchangeRates/withExchangeRates.tsx diff --git a/src/containers/ExchangeRates/withExchangeRatesActions.tsx b/apps/client/src/containers/ExchangeRates/withExchangeRatesActions.tsx similarity index 100% rename from src/containers/ExchangeRates/withExchangeRatesActions.tsx rename to apps/client/src/containers/ExchangeRates/withExchangeRatesActions.tsx diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFloatingActions.tsx b/apps/client/src/containers/Expenses/ExpenseForm/ExpenseFloatingActions.tsx similarity index 100% rename from src/containers/Expenses/ExpenseForm/ExpenseFloatingActions.tsx rename to apps/client/src/containers/Expenses/ExpenseForm/ExpenseFloatingActions.tsx diff --git a/src/containers/Expenses/ExpenseForm/ExpenseForm.schema.tsx b/apps/client/src/containers/Expenses/ExpenseForm/ExpenseForm.schema.tsx similarity index 100% rename from src/containers/Expenses/ExpenseForm/ExpenseForm.schema.tsx rename to apps/client/src/containers/Expenses/ExpenseForm/ExpenseForm.schema.tsx diff --git a/src/containers/Expenses/ExpenseForm/ExpenseForm.tsx b/apps/client/src/containers/Expenses/ExpenseForm/ExpenseForm.tsx similarity index 100% rename from src/containers/Expenses/ExpenseForm/ExpenseForm.tsx rename to apps/client/src/containers/Expenses/ExpenseForm/ExpenseForm.tsx diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormBody.tsx b/apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormBody.tsx similarity index 100% rename from src/containers/Expenses/ExpenseForm/ExpenseFormBody.tsx rename to apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormBody.tsx diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormEntriesField.tsx b/apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormEntriesField.tsx similarity index 100% rename from src/containers/Expenses/ExpenseForm/ExpenseFormEntriesField.tsx rename to apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormEntriesField.tsx diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormEntriesTable.tsx b/apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormEntriesTable.tsx similarity index 100% rename from src/containers/Expenses/ExpenseForm/ExpenseFormEntriesTable.tsx rename to apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormEntriesTable.tsx diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormFooter.tsx b/apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormFooter.tsx similarity index 100% rename from src/containers/Expenses/ExpenseForm/ExpenseFormFooter.tsx rename to apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormFooter.tsx diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormFooterLeft.tsx b/apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormFooterLeft.tsx similarity index 100% rename from src/containers/Expenses/ExpenseForm/ExpenseFormFooterLeft.tsx rename to apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormFooterLeft.tsx diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormFooterRight.tsx b/apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormFooterRight.tsx similarity index 100% rename from src/containers/Expenses/ExpenseForm/ExpenseFormFooterRight.tsx rename to apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormFooterRight.tsx diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormHeader.tsx b/apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormHeader.tsx similarity index 100% rename from src/containers/Expenses/ExpenseForm/ExpenseFormHeader.tsx rename to apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormHeader.tsx diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormHeaderFields.tsx b/apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormHeaderFields.tsx similarity index 100% rename from src/containers/Expenses/ExpenseForm/ExpenseFormHeaderFields.tsx rename to apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormHeaderFields.tsx diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormPage.tsx b/apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormPage.tsx similarity index 100% rename from src/containers/Expenses/ExpenseForm/ExpenseFormPage.tsx rename to apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormPage.tsx diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormPageProvider.tsx b/apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormPageProvider.tsx similarity index 100% rename from src/containers/Expenses/ExpenseForm/ExpenseFormPageProvider.tsx rename to apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormPageProvider.tsx diff --git a/src/containers/Expenses/ExpenseForm/ExpenseFormTopBar.tsx b/apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormTopBar.tsx similarity index 100% rename from src/containers/Expenses/ExpenseForm/ExpenseFormTopBar.tsx rename to apps/client/src/containers/Expenses/ExpenseForm/ExpenseFormTopBar.tsx diff --git a/src/containers/Expenses/ExpenseForm/components.tsx b/apps/client/src/containers/Expenses/ExpenseForm/components.tsx similarity index 100% rename from src/containers/Expenses/ExpenseForm/components.tsx rename to apps/client/src/containers/Expenses/ExpenseForm/components.tsx diff --git a/src/containers/Expenses/ExpenseForm/utils.tsx b/apps/client/src/containers/Expenses/ExpenseForm/utils.tsx similarity index 100% rename from src/containers/Expenses/ExpenseForm/utils.tsx rename to apps/client/src/containers/Expenses/ExpenseForm/utils.tsx diff --git a/src/containers/Expenses/ExpenseUniversalSearch.tsx b/apps/client/src/containers/Expenses/ExpenseUniversalSearch.tsx similarity index 100% rename from src/containers/Expenses/ExpenseUniversalSearch.tsx rename to apps/client/src/containers/Expenses/ExpenseUniversalSearch.tsx diff --git a/src/containers/Expenses/ExpensesAlerts.tsx b/apps/client/src/containers/Expenses/ExpensesAlerts.tsx similarity index 100% rename from src/containers/Expenses/ExpensesAlerts.tsx rename to apps/client/src/containers/Expenses/ExpensesAlerts.tsx diff --git a/src/containers/Expenses/ExpensesLanding/ExpenseActionsBar.tsx b/apps/client/src/containers/Expenses/ExpensesLanding/ExpenseActionsBar.tsx similarity index 100% rename from src/containers/Expenses/ExpensesLanding/ExpenseActionsBar.tsx rename to apps/client/src/containers/Expenses/ExpensesLanding/ExpenseActionsBar.tsx diff --git a/src/containers/Expenses/ExpensesLanding/ExpenseDataTable.tsx b/apps/client/src/containers/Expenses/ExpensesLanding/ExpenseDataTable.tsx similarity index 100% rename from src/containers/Expenses/ExpensesLanding/ExpenseDataTable.tsx rename to apps/client/src/containers/Expenses/ExpensesLanding/ExpenseDataTable.tsx diff --git a/src/containers/Expenses/ExpensesLanding/ExpenseViewTabs.tsx b/apps/client/src/containers/Expenses/ExpensesLanding/ExpenseViewTabs.tsx similarity index 100% rename from src/containers/Expenses/ExpensesLanding/ExpenseViewTabs.tsx rename to apps/client/src/containers/Expenses/ExpensesLanding/ExpenseViewTabs.tsx diff --git a/src/containers/Expenses/ExpensesLanding/ExpensesEmptyStatus.tsx b/apps/client/src/containers/Expenses/ExpensesLanding/ExpensesEmptyStatus.tsx similarity index 100% rename from src/containers/Expenses/ExpensesLanding/ExpensesEmptyStatus.tsx rename to apps/client/src/containers/Expenses/ExpensesLanding/ExpensesEmptyStatus.tsx diff --git a/src/containers/Expenses/ExpensesLanding/ExpensesList.tsx b/apps/client/src/containers/Expenses/ExpensesLanding/ExpensesList.tsx similarity index 100% rename from src/containers/Expenses/ExpensesLanding/ExpensesList.tsx rename to apps/client/src/containers/Expenses/ExpensesLanding/ExpensesList.tsx diff --git a/src/containers/Expenses/ExpensesLanding/ExpensesListProvider.tsx b/apps/client/src/containers/Expenses/ExpensesLanding/ExpensesListProvider.tsx similarity index 100% rename from src/containers/Expenses/ExpensesLanding/ExpensesListProvider.tsx rename to apps/client/src/containers/Expenses/ExpensesLanding/ExpensesListProvider.tsx diff --git a/src/containers/Expenses/ExpensesLanding/components.tsx b/apps/client/src/containers/Expenses/ExpensesLanding/components.tsx similarity index 100% rename from src/containers/Expenses/ExpensesLanding/components.tsx rename to apps/client/src/containers/Expenses/ExpensesLanding/components.tsx diff --git a/src/containers/Expenses/ExpensesLanding/withExpenses.tsx b/apps/client/src/containers/Expenses/ExpensesLanding/withExpenses.tsx similarity index 100% rename from src/containers/Expenses/ExpensesLanding/withExpenses.tsx rename to apps/client/src/containers/Expenses/ExpensesLanding/withExpenses.tsx diff --git a/src/containers/Expenses/ExpensesLanding/withExpensesActions.tsx b/apps/client/src/containers/Expenses/ExpensesLanding/withExpensesActions.tsx similarity index 100% rename from src/containers/Expenses/ExpensesLanding/withExpensesActions.tsx rename to apps/client/src/containers/Expenses/ExpensesLanding/withExpensesActions.tsx diff --git a/src/containers/Expenses/withExpenseDetail.tsx b/apps/client/src/containers/Expenses/withExpenseDetail.tsx similarity index 100% rename from src/containers/Expenses/withExpenseDetail.tsx rename to apps/client/src/containers/Expenses/withExpenseDetail.tsx diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummary.tsx b/apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummary.tsx similarity index 100% rename from src/containers/FinancialStatements/APAgingSummary/APAgingSummary.tsx rename to apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummary.tsx diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryActionsBar.tsx b/apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/APAgingSummary/APAgingSummaryActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryActionsBar.tsx diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryBody.tsx b/apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryBody.tsx similarity index 100% rename from src/containers/FinancialStatements/APAgingSummary/APAgingSummaryBody.tsx rename to apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryBody.tsx diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryGeneralProvider.tsx b/apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryGeneralProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/APAgingSummary/APAgingSummaryGeneralProvider.tsx rename to apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryGeneralProvider.tsx diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeader.tsx b/apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeader.tsx rename to apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeader.tsx diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderDimensions.tsx b/apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderDimensions.tsx similarity index 100% rename from src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderDimensions.tsx rename to apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderDimensions.tsx diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderDimensionsProvider.tsx b/apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderDimensionsProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderDimensionsProvider.tsx rename to apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderDimensionsProvider.tsx diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderGeneral.tsx b/apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderGeneral.tsx similarity index 100% rename from src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderGeneral.tsx rename to apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderGeneral.tsx diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderGeneralContent.tsx b/apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderGeneralContent.tsx similarity index 100% rename from src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderGeneralContent.tsx rename to apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryHeaderGeneralContent.tsx diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryProvider.tsx b/apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/APAgingSummary/APAgingSummaryProvider.tsx rename to apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryProvider.tsx diff --git a/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryTable.tsx b/apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryTable.tsx similarity index 100% rename from src/containers/FinancialStatements/APAgingSummary/APAgingSummaryTable.tsx rename to apps/client/src/containers/FinancialStatements/APAgingSummary/APAgingSummaryTable.tsx diff --git a/src/containers/FinancialStatements/APAgingSummary/common.tsx b/apps/client/src/containers/FinancialStatements/APAgingSummary/common.tsx similarity index 100% rename from src/containers/FinancialStatements/APAgingSummary/common.tsx rename to apps/client/src/containers/FinancialStatements/APAgingSummary/common.tsx diff --git a/src/containers/FinancialStatements/APAgingSummary/components.tsx b/apps/client/src/containers/FinancialStatements/APAgingSummary/components.tsx similarity index 100% rename from src/containers/FinancialStatements/APAgingSummary/components.tsx rename to apps/client/src/containers/FinancialStatements/APAgingSummary/components.tsx diff --git a/src/containers/FinancialStatements/APAgingSummary/constants.tsx b/apps/client/src/containers/FinancialStatements/APAgingSummary/constants.tsx similarity index 100% rename from src/containers/FinancialStatements/APAgingSummary/constants.tsx rename to apps/client/src/containers/FinancialStatements/APAgingSummary/constants.tsx diff --git a/src/containers/FinancialStatements/APAgingSummary/withAPAgingSummary.tsx b/apps/client/src/containers/FinancialStatements/APAgingSummary/withAPAgingSummary.tsx similarity index 100% rename from src/containers/FinancialStatements/APAgingSummary/withAPAgingSummary.tsx rename to apps/client/src/containers/FinancialStatements/APAgingSummary/withAPAgingSummary.tsx diff --git a/src/containers/FinancialStatements/APAgingSummary/withAPAgingSummaryActions.tsx b/apps/client/src/containers/FinancialStatements/APAgingSummary/withAPAgingSummaryActions.tsx similarity index 100% rename from src/containers/FinancialStatements/APAgingSummary/withAPAgingSummaryActions.tsx rename to apps/client/src/containers/FinancialStatements/APAgingSummary/withAPAgingSummaryActions.tsx diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummary.tsx b/apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummary.tsx similarity index 100% rename from src/containers/FinancialStatements/ARAgingSummary/ARAgingSummary.tsx rename to apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummary.tsx diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryActionsBar.tsx b/apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryActionsBar.tsx diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryBody.tsx b/apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryBody.tsx similarity index 100% rename from src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryBody.tsx rename to apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryBody.tsx diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryGeneralProvider.tsx b/apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryGeneralProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryGeneralProvider.tsx rename to apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryGeneralProvider.tsx diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeader.tsx b/apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeader.tsx rename to apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeader.tsx diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderDimensions.tsx b/apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderDimensions.tsx similarity index 100% rename from src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderDimensions.tsx rename to apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderDimensions.tsx diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderDimensionsProvider.tsx b/apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderDimensionsProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderDimensionsProvider.tsx rename to apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderDimensionsProvider.tsx diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderGeneral.tsx b/apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderGeneral.tsx similarity index 100% rename from src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderGeneral.tsx rename to apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderGeneral.tsx diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderGeneralContent.tsx b/apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderGeneralContent.tsx similarity index 100% rename from src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderGeneralContent.tsx rename to apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryHeaderGeneralContent.tsx diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryProvider.tsx b/apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryProvider.tsx rename to apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryProvider.tsx diff --git a/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryTable.tsx b/apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryTable.tsx similarity index 100% rename from src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryTable.tsx rename to apps/client/src/containers/FinancialStatements/ARAgingSummary/ARAgingSummaryTable.tsx diff --git a/src/containers/FinancialStatements/ARAgingSummary/common.tsx b/apps/client/src/containers/FinancialStatements/ARAgingSummary/common.tsx similarity index 100% rename from src/containers/FinancialStatements/ARAgingSummary/common.tsx rename to apps/client/src/containers/FinancialStatements/ARAgingSummary/common.tsx diff --git a/src/containers/FinancialStatements/ARAgingSummary/components.tsx b/apps/client/src/containers/FinancialStatements/ARAgingSummary/components.tsx similarity index 100% rename from src/containers/FinancialStatements/ARAgingSummary/components.tsx rename to apps/client/src/containers/FinancialStatements/ARAgingSummary/components.tsx diff --git a/src/containers/FinancialStatements/ARAgingSummary/constants.tsx b/apps/client/src/containers/FinancialStatements/ARAgingSummary/constants.tsx similarity index 100% rename from src/containers/FinancialStatements/ARAgingSummary/constants.tsx rename to apps/client/src/containers/FinancialStatements/ARAgingSummary/constants.tsx diff --git a/src/containers/FinancialStatements/ARAgingSummary/withARAgingSummary.tsx b/apps/client/src/containers/FinancialStatements/ARAgingSummary/withARAgingSummary.tsx similarity index 100% rename from src/containers/FinancialStatements/ARAgingSummary/withARAgingSummary.tsx rename to apps/client/src/containers/FinancialStatements/ARAgingSummary/withARAgingSummary.tsx diff --git a/src/containers/FinancialStatements/ARAgingSummary/withARAgingSummaryActions.tsx b/apps/client/src/containers/FinancialStatements/ARAgingSummary/withARAgingSummaryActions.tsx similarity index 100% rename from src/containers/FinancialStatements/ARAgingSummary/withARAgingSummaryActions.tsx rename to apps/client/src/containers/FinancialStatements/ARAgingSummary/withARAgingSummaryActions.tsx diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheet.tsx b/apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheet.tsx similarity index 100% rename from src/containers/FinancialStatements/BalanceSheet/BalanceSheet.tsx rename to apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheet.tsx diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetActionsBar.tsx b/apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/BalanceSheet/BalanceSheetActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetActionsBar.tsx diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetBody.tsx b/apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetBody.tsx similarity index 100% rename from src/containers/FinancialStatements/BalanceSheet/BalanceSheetBody.tsx rename to apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetBody.tsx diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeader.tsx b/apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeader.tsx rename to apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeader.tsx diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderComparisonPanal.tsx b/apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderComparisonPanal.tsx similarity index 100% rename from src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderComparisonPanal.tsx rename to apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderComparisonPanal.tsx diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderDimensionsPanel.tsx b/apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderDimensionsPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderDimensionsPanel.tsx rename to apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderDimensionsPanel.tsx diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderDimensionsProvider.tsx b/apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderDimensionsProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderDimensionsProvider.tsx rename to apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderDimensionsProvider.tsx diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderGeneralPanal.tsx b/apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderGeneralPanal.tsx similarity index 100% rename from src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderGeneralPanal.tsx rename to apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetHeaderGeneralPanal.tsx diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetProvider.tsx b/apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/BalanceSheet/BalanceSheetProvider.tsx rename to apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetProvider.tsx diff --git a/src/containers/FinancialStatements/BalanceSheet/BalanceSheetTable.tsx b/apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetTable.tsx similarity index 100% rename from src/containers/FinancialStatements/BalanceSheet/BalanceSheetTable.tsx rename to apps/client/src/containers/FinancialStatements/BalanceSheet/BalanceSheetTable.tsx diff --git a/src/containers/FinancialStatements/BalanceSheet/components.tsx b/apps/client/src/containers/FinancialStatements/BalanceSheet/components.tsx similarity index 100% rename from src/containers/FinancialStatements/BalanceSheet/components.tsx rename to apps/client/src/containers/FinancialStatements/BalanceSheet/components.tsx diff --git a/src/containers/FinancialStatements/BalanceSheet/dynamicColumns.tsx b/apps/client/src/containers/FinancialStatements/BalanceSheet/dynamicColumns.tsx similarity index 100% rename from src/containers/FinancialStatements/BalanceSheet/dynamicColumns.tsx rename to apps/client/src/containers/FinancialStatements/BalanceSheet/dynamicColumns.tsx diff --git a/src/containers/FinancialStatements/BalanceSheet/utils.tsx b/apps/client/src/containers/FinancialStatements/BalanceSheet/utils.tsx similarity index 100% rename from src/containers/FinancialStatements/BalanceSheet/utils.tsx rename to apps/client/src/containers/FinancialStatements/BalanceSheet/utils.tsx diff --git a/src/containers/FinancialStatements/BalanceSheet/withBalanceSheet.tsx b/apps/client/src/containers/FinancialStatements/BalanceSheet/withBalanceSheet.tsx similarity index 100% rename from src/containers/FinancialStatements/BalanceSheet/withBalanceSheet.tsx rename to apps/client/src/containers/FinancialStatements/BalanceSheet/withBalanceSheet.tsx diff --git a/src/containers/FinancialStatements/BalanceSheet/withBalanceSheetActions.tsx b/apps/client/src/containers/FinancialStatements/BalanceSheet/withBalanceSheetActions.tsx similarity index 100% rename from src/containers/FinancialStatements/BalanceSheet/withBalanceSheetActions.tsx rename to apps/client/src/containers/FinancialStatements/BalanceSheet/withBalanceSheetActions.tsx diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatement.tsx b/apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatement.tsx similarity index 100% rename from src/containers/FinancialStatements/CashFlowStatement/CashFlowStatement.tsx rename to apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatement.tsx diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementActionsBar.tsx b/apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementActionsBar.tsx diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementBody.tsx b/apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementBody.tsx similarity index 100% rename from src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementBody.tsx rename to apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementBody.tsx diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementDimensionsPanel.tsx b/apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementDimensionsPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementDimensionsPanel.tsx rename to apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementDimensionsPanel.tsx diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementDimensionsPanelProvider.tsx b/apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementDimensionsPanelProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementDimensionsPanelProvider.tsx rename to apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementDimensionsPanelProvider.tsx diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementGeneralPanel.tsx b/apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementGeneralPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementGeneralPanel.tsx rename to apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementGeneralPanel.tsx diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementHeader.tsx b/apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementHeader.tsx rename to apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementHeader.tsx diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementProvider.tsx b/apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementProvider.tsx rename to apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementProvider.tsx diff --git a/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementTable.tsx b/apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementTable.tsx similarity index 100% rename from src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementTable.tsx rename to apps/client/src/containers/FinancialStatements/CashFlowStatement/CashFlowStatementTable.tsx diff --git a/src/containers/FinancialStatements/CashFlowStatement/components.tsx b/apps/client/src/containers/FinancialStatements/CashFlowStatement/components.tsx similarity index 100% rename from src/containers/FinancialStatements/CashFlowStatement/components.tsx rename to apps/client/src/containers/FinancialStatements/CashFlowStatement/components.tsx diff --git a/src/containers/FinancialStatements/CashFlowStatement/dynamicColumns.tsx b/apps/client/src/containers/FinancialStatements/CashFlowStatement/dynamicColumns.tsx similarity index 100% rename from src/containers/FinancialStatements/CashFlowStatement/dynamicColumns.tsx rename to apps/client/src/containers/FinancialStatements/CashFlowStatement/dynamicColumns.tsx diff --git a/src/containers/FinancialStatements/CashFlowStatement/utils.tsx b/apps/client/src/containers/FinancialStatements/CashFlowStatement/utils.tsx similarity index 100% rename from src/containers/FinancialStatements/CashFlowStatement/utils.tsx rename to apps/client/src/containers/FinancialStatements/CashFlowStatement/utils.tsx diff --git a/src/containers/FinancialStatements/CashFlowStatement/withCashFlowStatement.tsx b/apps/client/src/containers/FinancialStatements/CashFlowStatement/withCashFlowStatement.tsx similarity index 100% rename from src/containers/FinancialStatements/CashFlowStatement/withCashFlowStatement.tsx rename to apps/client/src/containers/FinancialStatements/CashFlowStatement/withCashFlowStatement.tsx diff --git a/src/containers/FinancialStatements/CashFlowStatement/withCashFlowStatementActions.tsx b/apps/client/src/containers/FinancialStatements/CashFlowStatement/withCashFlowStatementActions.tsx similarity index 100% rename from src/containers/FinancialStatements/CashFlowStatement/withCashFlowStatementActions.tsx rename to apps/client/src/containers/FinancialStatements/CashFlowStatement/withCashFlowStatementActions.tsx diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomerBalanceSummaryBody.tsx b/apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomerBalanceSummaryBody.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersBalanceSummary/CustomerBalanceSummaryBody.tsx rename to apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomerBalanceSummaryBody.tsx diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummary.tsx b/apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummary.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummary.tsx rename to apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummary.tsx diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryActionsBar.tsx b/apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryActionsBar.tsx diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralPanel.tsx b/apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralPanel.tsx rename to apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralPanel.tsx diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralPanelContent.tsx b/apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralPanelContent.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralPanelContent.tsx rename to apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralPanelContent.tsx diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralProvider.tsx b/apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralProvider.tsx rename to apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryGeneralProvider.tsx diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryHeader.tsx b/apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryHeader.tsx rename to apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryHeader.tsx diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryProvider.tsx b/apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryProvider.tsx rename to apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryProvider.tsx diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryTable.tsx b/apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryTable.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryTable.tsx rename to apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/CustomersBalanceSummaryTable.tsx diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/components.tsx b/apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/components.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersBalanceSummary/components.tsx rename to apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/components.tsx diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/utils.tsx b/apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/utils.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersBalanceSummary/utils.tsx rename to apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/utils.tsx diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/withCustomersBalanceSummary.tsx b/apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/withCustomersBalanceSummary.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersBalanceSummary/withCustomersBalanceSummary.tsx rename to apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/withCustomersBalanceSummary.tsx diff --git a/src/containers/FinancialStatements/CustomersBalanceSummary/withCustomersBalanceSummaryActions.tsx b/apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/withCustomersBalanceSummaryActions.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersBalanceSummary/withCustomersBalanceSummaryActions.tsx rename to apps/client/src/containers/FinancialStatements/CustomersBalanceSummary/withCustomersBalanceSummaryActions.tsx diff --git a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactions.tsx b/apps/client/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactions.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersTransactions/CustomersTransactions.tsx rename to apps/client/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactions.tsx diff --git a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsActionsBar.tsx b/apps/client/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsActionsBar.tsx diff --git a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsBody.tsx b/apps/client/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsBody.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsBody.tsx rename to apps/client/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsBody.tsx diff --git a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeader.tsx b/apps/client/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeader.tsx rename to apps/client/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeader.tsx diff --git a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeaderGeneralPanel.tsx b/apps/client/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeaderGeneralPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeaderGeneralPanel.tsx rename to apps/client/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeaderGeneralPanel.tsx diff --git a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeaderGeneralPanelProvider.tsx b/apps/client/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeaderGeneralPanelProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeaderGeneralPanelProvider.tsx rename to apps/client/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsHeaderGeneralPanelProvider.tsx diff --git a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsProvider.tsx b/apps/client/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsProvider.tsx rename to apps/client/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsProvider.tsx diff --git a/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsTable.tsx b/apps/client/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsTable.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsTable.tsx rename to apps/client/src/containers/FinancialStatements/CustomersTransactions/CustomersTransactionsTable.tsx diff --git a/src/containers/FinancialStatements/CustomersTransactions/components.tsx b/apps/client/src/containers/FinancialStatements/CustomersTransactions/components.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersTransactions/components.tsx rename to apps/client/src/containers/FinancialStatements/CustomersTransactions/components.tsx diff --git a/src/containers/FinancialStatements/CustomersTransactions/withCustomersTransactions.tsx b/apps/client/src/containers/FinancialStatements/CustomersTransactions/withCustomersTransactions.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersTransactions/withCustomersTransactions.tsx rename to apps/client/src/containers/FinancialStatements/CustomersTransactions/withCustomersTransactions.tsx diff --git a/src/containers/FinancialStatements/CustomersTransactions/withCustomersTransactionsActions.tsx b/apps/client/src/containers/FinancialStatements/CustomersTransactions/withCustomersTransactionsActions.tsx similarity index 100% rename from src/containers/FinancialStatements/CustomersTransactions/withCustomersTransactionsActions.tsx rename to apps/client/src/containers/FinancialStatements/CustomersTransactions/withCustomersTransactionsActions.tsx diff --git a/src/containers/FinancialStatements/FilterFinancialReports.tsx b/apps/client/src/containers/FinancialStatements/FilterFinancialReports.tsx similarity index 100% rename from src/containers/FinancialStatements/FilterFinancialReports.tsx rename to apps/client/src/containers/FinancialStatements/FilterFinancialReports.tsx diff --git a/src/containers/FinancialStatements/FinancialHeaderLoadingSkeleton.module.scss b/apps/client/src/containers/FinancialStatements/FinancialHeaderLoadingSkeleton.module.scss similarity index 100% rename from src/containers/FinancialStatements/FinancialHeaderLoadingSkeleton.module.scss rename to apps/client/src/containers/FinancialStatements/FinancialHeaderLoadingSkeleton.module.scss diff --git a/src/containers/FinancialStatements/FinancialHeaderLoadingSkeleton.tsx b/apps/client/src/containers/FinancialStatements/FinancialHeaderLoadingSkeleton.tsx similarity index 100% rename from src/containers/FinancialStatements/FinancialHeaderLoadingSkeleton.tsx rename to apps/client/src/containers/FinancialStatements/FinancialHeaderLoadingSkeleton.tsx diff --git a/src/containers/FinancialStatements/FinancialLoadingBar.tsx b/apps/client/src/containers/FinancialStatements/FinancialLoadingBar.tsx similarity index 100% rename from src/containers/FinancialStatements/FinancialLoadingBar.tsx rename to apps/client/src/containers/FinancialStatements/FinancialLoadingBar.tsx diff --git a/src/containers/FinancialStatements/FinancialReportPage.tsx b/apps/client/src/containers/FinancialStatements/FinancialReportPage.tsx similarity index 100% rename from src/containers/FinancialStatements/FinancialReportPage.tsx rename to apps/client/src/containers/FinancialStatements/FinancialReportPage.tsx diff --git a/src/containers/FinancialStatements/FinancialReports.tsx b/apps/client/src/containers/FinancialStatements/FinancialReports.tsx similarity index 100% rename from src/containers/FinancialStatements/FinancialReports.tsx rename to apps/client/src/containers/FinancialStatements/FinancialReports.tsx diff --git a/src/containers/FinancialStatements/FinancialStatementDateRange.tsx b/apps/client/src/containers/FinancialStatements/FinancialStatementDateRange.tsx similarity index 100% rename from src/containers/FinancialStatements/FinancialStatementDateRange.tsx rename to apps/client/src/containers/FinancialStatements/FinancialStatementDateRange.tsx diff --git a/src/containers/FinancialStatements/FinancialStatementHeader.tsx b/apps/client/src/containers/FinancialStatements/FinancialStatementHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/FinancialStatementHeader.tsx rename to apps/client/src/containers/FinancialStatements/FinancialStatementHeader.tsx diff --git a/src/containers/FinancialStatements/FinancialStatementsFilter.tsx b/apps/client/src/containers/FinancialStatements/FinancialStatementsFilter.tsx similarity index 100% rename from src/containers/FinancialStatements/FinancialStatementsFilter.tsx rename to apps/client/src/containers/FinancialStatements/FinancialStatementsFilter.tsx diff --git a/src/containers/FinancialStatements/GeneralLedger/GLHeaderGeneralPaneProvider.tsx b/apps/client/src/containers/FinancialStatements/GeneralLedger/GLHeaderGeneralPaneProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/GeneralLedger/GLHeaderGeneralPaneProvider.tsx rename to apps/client/src/containers/FinancialStatements/GeneralLedger/GLHeaderGeneralPaneProvider.tsx diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedger.tsx b/apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedger.tsx similarity index 100% rename from src/containers/FinancialStatements/GeneralLedger/GeneralLedger.tsx rename to apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedger.tsx diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerActionsBar.tsx b/apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/GeneralLedger/GeneralLedgerActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerActionsBar.tsx diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerBody.tsx b/apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerBody.tsx similarity index 100% rename from src/containers/FinancialStatements/GeneralLedger/GeneralLedgerBody.tsx rename to apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerBody.tsx diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeader.tsx b/apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeader.tsx rename to apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeader.tsx diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderDimensionsPanel.tsx b/apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderDimensionsPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderDimensionsPanel.tsx rename to apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderDimensionsPanel.tsx diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderDimensionsPanelProvider.tsx b/apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderDimensionsPanelProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderDimensionsPanelProvider.tsx rename to apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderDimensionsPanelProvider.tsx diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderGeneralPane.tsx b/apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderGeneralPane.tsx similarity index 100% rename from src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderGeneralPane.tsx rename to apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerHeaderGeneralPane.tsx diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerProvider.tsx b/apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/GeneralLedger/GeneralLedgerProvider.tsx rename to apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerProvider.tsx diff --git a/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerTable.tsx b/apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerTable.tsx similarity index 100% rename from src/containers/FinancialStatements/GeneralLedger/GeneralLedgerTable.tsx rename to apps/client/src/containers/FinancialStatements/GeneralLedger/GeneralLedgerTable.tsx diff --git a/src/containers/FinancialStatements/GeneralLedger/common.tsx b/apps/client/src/containers/FinancialStatements/GeneralLedger/common.tsx similarity index 100% rename from src/containers/FinancialStatements/GeneralLedger/common.tsx rename to apps/client/src/containers/FinancialStatements/GeneralLedger/common.tsx diff --git a/src/containers/FinancialStatements/GeneralLedger/components.tsx b/apps/client/src/containers/FinancialStatements/GeneralLedger/components.tsx similarity index 100% rename from src/containers/FinancialStatements/GeneralLedger/components.tsx rename to apps/client/src/containers/FinancialStatements/GeneralLedger/components.tsx diff --git a/src/containers/FinancialStatements/GeneralLedger/withGeneralLedger.tsx b/apps/client/src/containers/FinancialStatements/GeneralLedger/withGeneralLedger.tsx similarity index 100% rename from src/containers/FinancialStatements/GeneralLedger/withGeneralLedger.tsx rename to apps/client/src/containers/FinancialStatements/GeneralLedger/withGeneralLedger.tsx diff --git a/src/containers/FinancialStatements/GeneralLedger/withGeneralLedgerActions.tsx b/apps/client/src/containers/FinancialStatements/GeneralLedger/withGeneralLedgerActions.tsx similarity index 100% rename from src/containers/FinancialStatements/GeneralLedger/withGeneralLedgerActions.tsx rename to apps/client/src/containers/FinancialStatements/GeneralLedger/withGeneralLedgerActions.tsx diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetails.tsx b/apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetails.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetails.tsx rename to apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetails.tsx diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsActionsBar.tsx b/apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsActionsBar.tsx diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsBody.tsx b/apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsBody.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsBody.tsx rename to apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsBody.tsx diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeader.tsx b/apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeader.tsx rename to apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeader.tsx diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderDimensionsPanel.tsx b/apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderDimensionsPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderDimensionsPanel.tsx rename to apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderDimensionsPanel.tsx diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderDimensionsPanelProvider.tsx b/apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderDimensionsPanelProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderDimensionsPanelProvider.tsx rename to apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderDimensionsPanelProvider.tsx diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderGeneralPanel.tsx b/apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderGeneralPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderGeneralPanel.tsx rename to apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderGeneralPanel.tsx diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderGeneralProvider.tsx b/apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderGeneralProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderGeneralProvider.tsx rename to apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsHeaderGeneralProvider.tsx diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsProvider.tsx b/apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsProvider.tsx rename to apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsProvider.tsx diff --git a/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsTable.tsx b/apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsTable.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsTable.tsx rename to apps/client/src/containers/FinancialStatements/InventoryItemDetails/InventoryItemDetailsTable.tsx diff --git a/src/containers/FinancialStatements/InventoryItemDetails/components.tsx b/apps/client/src/containers/FinancialStatements/InventoryItemDetails/components.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryItemDetails/components.tsx rename to apps/client/src/containers/FinancialStatements/InventoryItemDetails/components.tsx diff --git a/src/containers/FinancialStatements/InventoryItemDetails/utils.tsx b/apps/client/src/containers/FinancialStatements/InventoryItemDetails/utils.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryItemDetails/utils.tsx rename to apps/client/src/containers/FinancialStatements/InventoryItemDetails/utils.tsx diff --git a/src/containers/FinancialStatements/InventoryItemDetails/utils2.tsx b/apps/client/src/containers/FinancialStatements/InventoryItemDetails/utils2.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryItemDetails/utils2.tsx rename to apps/client/src/containers/FinancialStatements/InventoryItemDetails/utils2.tsx diff --git a/src/containers/FinancialStatements/InventoryItemDetails/withInventoryItemDetails.tsx b/apps/client/src/containers/FinancialStatements/InventoryItemDetails/withInventoryItemDetails.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryItemDetails/withInventoryItemDetails.tsx rename to apps/client/src/containers/FinancialStatements/InventoryItemDetails/withInventoryItemDetails.tsx diff --git a/src/containers/FinancialStatements/InventoryItemDetails/withInventoryItemDetailsActions.tsx b/apps/client/src/containers/FinancialStatements/InventoryItemDetails/withInventoryItemDetailsActions.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryItemDetails/withInventoryItemDetailsActions.tsx rename to apps/client/src/containers/FinancialStatements/InventoryItemDetails/withInventoryItemDetailsActions.tsx diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuation.tsx b/apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuation.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryValuation/InventoryValuation.tsx rename to apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuation.tsx diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationActionsBar.tsx b/apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryValuation/InventoryValuationActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationActionsBar.tsx diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationBody.tsx b/apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationBody.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryValuation/InventoryValuationBody.tsx rename to apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationBody.tsx diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeader.tsx b/apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeader.tsx rename to apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeader.tsx diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderDimensionsPanel.tsx b/apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderDimensionsPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderDimensionsPanel.tsx rename to apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderDimensionsPanel.tsx diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderDimensionsPanelProvider.tsx b/apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderDimensionsPanelProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderDimensionsPanelProvider.tsx rename to apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderDimensionsPanelProvider.tsx diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderGeneralPanel.tsx b/apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderGeneralPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderGeneralPanel.tsx rename to apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderGeneralPanel.tsx diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderGeneralPanelProvider.tsx b/apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderGeneralPanelProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderGeneralPanelProvider.tsx rename to apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationHeaderGeneralPanelProvider.tsx diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationProvider.tsx b/apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryValuation/InventoryValuationProvider.tsx rename to apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationProvider.tsx diff --git a/src/containers/FinancialStatements/InventoryValuation/InventoryValuationTable.tsx b/apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationTable.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryValuation/InventoryValuationTable.tsx rename to apps/client/src/containers/FinancialStatements/InventoryValuation/InventoryValuationTable.tsx diff --git a/src/containers/FinancialStatements/InventoryValuation/components.tsx b/apps/client/src/containers/FinancialStatements/InventoryValuation/components.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryValuation/components.tsx rename to apps/client/src/containers/FinancialStatements/InventoryValuation/components.tsx diff --git a/src/containers/FinancialStatements/InventoryValuation/utils.tsx b/apps/client/src/containers/FinancialStatements/InventoryValuation/utils.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryValuation/utils.tsx rename to apps/client/src/containers/FinancialStatements/InventoryValuation/utils.tsx diff --git a/src/containers/FinancialStatements/InventoryValuation/withInventoryValuation.tsx b/apps/client/src/containers/FinancialStatements/InventoryValuation/withInventoryValuation.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryValuation/withInventoryValuation.tsx rename to apps/client/src/containers/FinancialStatements/InventoryValuation/withInventoryValuation.tsx diff --git a/src/containers/FinancialStatements/InventoryValuation/withInventoryValuationActions.tsx b/apps/client/src/containers/FinancialStatements/InventoryValuation/withInventoryValuationActions.tsx similarity index 100% rename from src/containers/FinancialStatements/InventoryValuation/withInventoryValuationActions.tsx rename to apps/client/src/containers/FinancialStatements/InventoryValuation/withInventoryValuationActions.tsx diff --git a/src/containers/FinancialStatements/Journal/Journal.tsx b/apps/client/src/containers/FinancialStatements/Journal/Journal.tsx similarity index 100% rename from src/containers/FinancialStatements/Journal/Journal.tsx rename to apps/client/src/containers/FinancialStatements/Journal/Journal.tsx diff --git a/src/containers/FinancialStatements/Journal/JournalActionsBar.tsx b/apps/client/src/containers/FinancialStatements/Journal/JournalActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/Journal/JournalActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/Journal/JournalActionsBar.tsx diff --git a/src/containers/FinancialStatements/Journal/JournalBody.tsx b/apps/client/src/containers/FinancialStatements/Journal/JournalBody.tsx similarity index 100% rename from src/containers/FinancialStatements/Journal/JournalBody.tsx rename to apps/client/src/containers/FinancialStatements/Journal/JournalBody.tsx diff --git a/src/containers/FinancialStatements/Journal/JournalHeader.tsx b/apps/client/src/containers/FinancialStatements/Journal/JournalHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/Journal/JournalHeader.tsx rename to apps/client/src/containers/FinancialStatements/Journal/JournalHeader.tsx diff --git a/src/containers/FinancialStatements/Journal/JournalProvider.tsx b/apps/client/src/containers/FinancialStatements/Journal/JournalProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/Journal/JournalProvider.tsx rename to apps/client/src/containers/FinancialStatements/Journal/JournalProvider.tsx diff --git a/src/containers/FinancialStatements/Journal/JournalSheetHeaderGeneral.tsx b/apps/client/src/containers/FinancialStatements/Journal/JournalSheetHeaderGeneral.tsx similarity index 100% rename from src/containers/FinancialStatements/Journal/JournalSheetHeaderGeneral.tsx rename to apps/client/src/containers/FinancialStatements/Journal/JournalSheetHeaderGeneral.tsx diff --git a/src/containers/FinancialStatements/Journal/JournalTable.tsx b/apps/client/src/containers/FinancialStatements/Journal/JournalTable.tsx similarity index 100% rename from src/containers/FinancialStatements/Journal/JournalTable.tsx rename to apps/client/src/containers/FinancialStatements/Journal/JournalTable.tsx diff --git a/src/containers/FinancialStatements/Journal/components.tsx b/apps/client/src/containers/FinancialStatements/Journal/components.tsx similarity index 100% rename from src/containers/FinancialStatements/Journal/components.tsx rename to apps/client/src/containers/FinancialStatements/Journal/components.tsx diff --git a/src/containers/FinancialStatements/Journal/utils.tsx b/apps/client/src/containers/FinancialStatements/Journal/utils.tsx similarity index 100% rename from src/containers/FinancialStatements/Journal/utils.tsx rename to apps/client/src/containers/FinancialStatements/Journal/utils.tsx diff --git a/src/containers/FinancialStatements/Journal/withJournal.tsx b/apps/client/src/containers/FinancialStatements/Journal/withJournal.tsx similarity index 100% rename from src/containers/FinancialStatements/Journal/withJournal.tsx rename to apps/client/src/containers/FinancialStatements/Journal/withJournal.tsx diff --git a/src/containers/FinancialStatements/Journal/withJournalActions.tsx b/apps/client/src/containers/FinancialStatements/Journal/withJournalActions.tsx similarity index 100% rename from src/containers/FinancialStatements/Journal/withJournalActions.tsx rename to apps/client/src/containers/FinancialStatements/Journal/withJournalActions.tsx diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossActionsBar.tsx b/apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/ProfitLossSheet/ProfitLossActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossActionsBar.tsx diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossBody.tsx b/apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossBody.tsx similarity index 100% rename from src/containers/FinancialStatements/ProfitLossSheet/ProfitLossBody.tsx rename to apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossBody.tsx diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossProvider.tsx b/apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/ProfitLossSheet/ProfitLossProvider.tsx rename to apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossProvider.tsx diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheet.tsx b/apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheet.tsx similarity index 100% rename from src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheet.tsx rename to apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheet.tsx diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeader.tsx b/apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeader.tsx rename to apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeader.tsx diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderComparisonPanel.tsx b/apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderComparisonPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderComparisonPanel.tsx rename to apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderComparisonPanel.tsx diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderDimensionsPanel.tsx b/apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderDimensionsPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderDimensionsPanel.tsx rename to apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderDimensionsPanel.tsx diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderDimensionsProvider.tsx b/apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderDimensionsProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderDimensionsProvider.tsx rename to apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderDimensionsProvider.tsx diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderGeneralPane.tsx b/apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderGeneralPane.tsx similarity index 100% rename from src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderGeneralPane.tsx rename to apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetHeaderGeneralPane.tsx diff --git a/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetTable.tsx b/apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetTable.tsx similarity index 100% rename from src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetTable.tsx rename to apps/client/src/containers/FinancialStatements/ProfitLossSheet/ProfitLossSheetTable.tsx diff --git a/src/containers/FinancialStatements/ProfitLossSheet/components.tsx b/apps/client/src/containers/FinancialStatements/ProfitLossSheet/components.tsx similarity index 100% rename from src/containers/FinancialStatements/ProfitLossSheet/components.tsx rename to apps/client/src/containers/FinancialStatements/ProfitLossSheet/components.tsx diff --git a/src/containers/FinancialStatements/ProfitLossSheet/dynamicColumns.tsx b/apps/client/src/containers/FinancialStatements/ProfitLossSheet/dynamicColumns.tsx similarity index 100% rename from src/containers/FinancialStatements/ProfitLossSheet/dynamicColumns.tsx rename to apps/client/src/containers/FinancialStatements/ProfitLossSheet/dynamicColumns.tsx diff --git a/src/containers/FinancialStatements/ProfitLossSheet/hooks.tsx b/apps/client/src/containers/FinancialStatements/ProfitLossSheet/hooks.tsx similarity index 100% rename from src/containers/FinancialStatements/ProfitLossSheet/hooks.tsx rename to apps/client/src/containers/FinancialStatements/ProfitLossSheet/hooks.tsx diff --git a/src/containers/FinancialStatements/ProfitLossSheet/utils.tsx b/apps/client/src/containers/FinancialStatements/ProfitLossSheet/utils.tsx similarity index 100% rename from src/containers/FinancialStatements/ProfitLossSheet/utils.tsx rename to apps/client/src/containers/FinancialStatements/ProfitLossSheet/utils.tsx diff --git a/src/containers/FinancialStatements/ProfitLossSheet/withProfitLoss.tsx b/apps/client/src/containers/FinancialStatements/ProfitLossSheet/withProfitLoss.tsx similarity index 100% rename from src/containers/FinancialStatements/ProfitLossSheet/withProfitLoss.tsx rename to apps/client/src/containers/FinancialStatements/ProfitLossSheet/withProfitLoss.tsx diff --git a/src/containers/FinancialStatements/ProfitLossSheet/withProfitLossActions.tsx b/apps/client/src/containers/FinancialStatements/ProfitLossSheet/withProfitLossActions.tsx similarity index 100% rename from src/containers/FinancialStatements/ProfitLossSheet/withProfitLossActions.tsx rename to apps/client/src/containers/FinancialStatements/ProfitLossSheet/withProfitLossActions.tsx diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummary.tsx b/apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummary.tsx similarity index 100% rename from src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummary.tsx rename to apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummary.tsx diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryActionsBar.tsx b/apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryActionsBar.tsx diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryBody.tsx b/apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryBody.tsx similarity index 100% rename from src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryBody.tsx rename to apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryBody.tsx diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryHeader.tsx b/apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryHeader.tsx rename to apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryHeader.tsx diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryHeaderGeneralPanal.tsx b/apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryHeaderGeneralPanal.tsx similarity index 100% rename from src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryHeaderGeneralPanal.tsx rename to apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryHeaderGeneralPanal.tsx diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryProvider.tsx b/apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryProvider.tsx rename to apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryProvider.tsx diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryTable.tsx b/apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryTable.tsx similarity index 100% rename from src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryTable.tsx rename to apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/ProjectProfitabilitySummaryTable.tsx diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/components.tsx b/apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/components.tsx similarity index 100% rename from src/containers/FinancialStatements/ProjectProfitabilitySummary/components.tsx rename to apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/components.tsx diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/constants.ts b/apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/constants.ts similarity index 100% rename from src/containers/FinancialStatements/ProjectProfitabilitySummary/constants.ts rename to apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/constants.ts diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/dynamicColumns.tsx b/apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/dynamicColumns.tsx similarity index 100% rename from src/containers/FinancialStatements/ProjectProfitabilitySummary/dynamicColumns.tsx rename to apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/dynamicColumns.tsx diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/hooks.ts b/apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/hooks.ts similarity index 100% rename from src/containers/FinancialStatements/ProjectProfitabilitySummary/hooks.ts rename to apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/hooks.ts diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/utils.tsx b/apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/utils.tsx similarity index 100% rename from src/containers/FinancialStatements/ProjectProfitabilitySummary/utils.tsx rename to apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/utils.tsx diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/withProjectProfitabilitySummary.tsx b/apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/withProjectProfitabilitySummary.tsx similarity index 100% rename from src/containers/FinancialStatements/ProjectProfitabilitySummary/withProjectProfitabilitySummary.tsx rename to apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/withProjectProfitabilitySummary.tsx diff --git a/src/containers/FinancialStatements/ProjectProfitabilitySummary/withProjectProfitabilitySummaryActions.tsx b/apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/withProjectProfitabilitySummaryActions.tsx similarity index 100% rename from src/containers/FinancialStatements/ProjectProfitabilitySummary/withProjectProfitabilitySummaryActions.tsx rename to apps/client/src/containers/FinancialStatements/ProjectProfitabilitySummary/withProjectProfitabilitySummaryActions.tsx diff --git a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItems.tsx b/apps/client/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItems.tsx similarity index 100% rename from src/containers/FinancialStatements/PurchasesByItems/PurchasesByItems.tsx rename to apps/client/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItems.tsx diff --git a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsActionsBar.tsx b/apps/client/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsActionsBar.tsx diff --git a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsBody.tsx b/apps/client/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsBody.tsx similarity index 100% rename from src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsBody.tsx rename to apps/client/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsBody.tsx diff --git a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsGeneralPanel.tsx b/apps/client/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsGeneralPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsGeneralPanel.tsx rename to apps/client/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsGeneralPanel.tsx diff --git a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsGeneralPanelProvider.tsx b/apps/client/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsGeneralPanelProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsGeneralPanelProvider.tsx rename to apps/client/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsGeneralPanelProvider.tsx diff --git a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsHeader.tsx b/apps/client/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsHeader.tsx rename to apps/client/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsHeader.tsx diff --git a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsProvider.tsx b/apps/client/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsProvider.tsx rename to apps/client/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsProvider.tsx diff --git a/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsTable.tsx b/apps/client/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsTable.tsx similarity index 100% rename from src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsTable.tsx rename to apps/client/src/containers/FinancialStatements/PurchasesByItems/PurchasesByItemsTable.tsx diff --git a/src/containers/FinancialStatements/PurchasesByItems/components.tsx b/apps/client/src/containers/FinancialStatements/PurchasesByItems/components.tsx similarity index 100% rename from src/containers/FinancialStatements/PurchasesByItems/components.tsx rename to apps/client/src/containers/FinancialStatements/PurchasesByItems/components.tsx diff --git a/src/containers/FinancialStatements/PurchasesByItems/utils.tsx b/apps/client/src/containers/FinancialStatements/PurchasesByItems/utils.tsx similarity index 100% rename from src/containers/FinancialStatements/PurchasesByItems/utils.tsx rename to apps/client/src/containers/FinancialStatements/PurchasesByItems/utils.tsx diff --git a/src/containers/FinancialStatements/PurchasesByItems/withPurchasesByItems.tsx b/apps/client/src/containers/FinancialStatements/PurchasesByItems/withPurchasesByItems.tsx similarity index 100% rename from src/containers/FinancialStatements/PurchasesByItems/withPurchasesByItems.tsx rename to apps/client/src/containers/FinancialStatements/PurchasesByItems/withPurchasesByItems.tsx diff --git a/src/containers/FinancialStatements/PurchasesByItems/withPurchasesByItemsActions.tsx b/apps/client/src/containers/FinancialStatements/PurchasesByItems/withPurchasesByItemsActions.tsx similarity index 100% rename from src/containers/FinancialStatements/PurchasesByItems/withPurchasesByItemsActions.tsx rename to apps/client/src/containers/FinancialStatements/PurchasesByItems/withPurchasesByItemsActions.tsx diff --git a/src/containers/FinancialStatements/RadiosAccountingBasis.tsx b/apps/client/src/containers/FinancialStatements/RadiosAccountingBasis.tsx similarity index 100% rename from src/containers/FinancialStatements/RadiosAccountingBasis.tsx rename to apps/client/src/containers/FinancialStatements/RadiosAccountingBasis.tsx diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLoss.tsx b/apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLoss.tsx similarity index 100% rename from src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLoss.tsx rename to apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLoss.tsx diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossActionsBar.tsx b/apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossActionsBar.tsx diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossGeneralPanel.tsx b/apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossGeneralPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossGeneralPanel.tsx rename to apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossGeneralPanel.tsx diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossHeader.tsx b/apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossHeader.tsx rename to apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossHeader.tsx diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossProvider.tsx b/apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossProvider.tsx rename to apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossProvider.tsx diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossTable.tsx b/apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossTable.tsx similarity index 100% rename from src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossTable.tsx rename to apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/RealizedGainOrLossTable.tsx diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/components.tsx b/apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/components.tsx similarity index 100% rename from src/containers/FinancialStatements/RealizedGainOrLoss/components.tsx rename to apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/components.tsx diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/withRealizedGainOrLoss.tsx b/apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/withRealizedGainOrLoss.tsx similarity index 100% rename from src/containers/FinancialStatements/RealizedGainOrLoss/withRealizedGainOrLoss.tsx rename to apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/withRealizedGainOrLoss.tsx diff --git a/src/containers/FinancialStatements/RealizedGainOrLoss/withRealizedGainOrLossActions.tsx b/apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/withRealizedGainOrLossActions.tsx similarity index 100% rename from src/containers/FinancialStatements/RealizedGainOrLoss/withRealizedGainOrLossActions.tsx rename to apps/client/src/containers/FinancialStatements/RealizedGainOrLoss/withRealizedGainOrLossActions.tsx diff --git a/src/containers/FinancialStatements/SalesByItems/SalesByItemProvider.tsx b/apps/client/src/containers/FinancialStatements/SalesByItems/SalesByItemProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/SalesByItems/SalesByItemProvider.tsx rename to apps/client/src/containers/FinancialStatements/SalesByItems/SalesByItemProvider.tsx diff --git a/src/containers/FinancialStatements/SalesByItems/SalesByItems.tsx b/apps/client/src/containers/FinancialStatements/SalesByItems/SalesByItems.tsx similarity index 100% rename from src/containers/FinancialStatements/SalesByItems/SalesByItems.tsx rename to apps/client/src/containers/FinancialStatements/SalesByItems/SalesByItems.tsx diff --git a/src/containers/FinancialStatements/SalesByItems/SalesByItemsActionsBar.tsx b/apps/client/src/containers/FinancialStatements/SalesByItems/SalesByItemsActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/SalesByItems/SalesByItemsActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/SalesByItems/SalesByItemsActionsBar.tsx diff --git a/src/containers/FinancialStatements/SalesByItems/SalesByItemsBody.tsx b/apps/client/src/containers/FinancialStatements/SalesByItems/SalesByItemsBody.tsx similarity index 100% rename from src/containers/FinancialStatements/SalesByItems/SalesByItemsBody.tsx rename to apps/client/src/containers/FinancialStatements/SalesByItems/SalesByItemsBody.tsx diff --git a/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeader.tsx b/apps/client/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/SalesByItems/SalesByItemsHeader.tsx rename to apps/client/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeader.tsx diff --git a/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeaderGeneralPanel.tsx b/apps/client/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeaderGeneralPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/SalesByItems/SalesByItemsHeaderGeneralPanel.tsx rename to apps/client/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeaderGeneralPanel.tsx diff --git a/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeaderGeneralPanelProvider.tsx b/apps/client/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeaderGeneralPanelProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/SalesByItems/SalesByItemsHeaderGeneralPanelProvider.tsx rename to apps/client/src/containers/FinancialStatements/SalesByItems/SalesByItemsHeaderGeneralPanelProvider.tsx diff --git a/src/containers/FinancialStatements/SalesByItems/SalesByItemsTable.tsx b/apps/client/src/containers/FinancialStatements/SalesByItems/SalesByItemsTable.tsx similarity index 100% rename from src/containers/FinancialStatements/SalesByItems/SalesByItemsTable.tsx rename to apps/client/src/containers/FinancialStatements/SalesByItems/SalesByItemsTable.tsx diff --git a/src/containers/FinancialStatements/SalesByItems/components.tsx b/apps/client/src/containers/FinancialStatements/SalesByItems/components.tsx similarity index 100% rename from src/containers/FinancialStatements/SalesByItems/components.tsx rename to apps/client/src/containers/FinancialStatements/SalesByItems/components.tsx diff --git a/src/containers/FinancialStatements/SalesByItems/utils.tsx b/apps/client/src/containers/FinancialStatements/SalesByItems/utils.tsx similarity index 100% rename from src/containers/FinancialStatements/SalesByItems/utils.tsx rename to apps/client/src/containers/FinancialStatements/SalesByItems/utils.tsx diff --git a/src/containers/FinancialStatements/SalesByItems/withSalesByItems.tsx b/apps/client/src/containers/FinancialStatements/SalesByItems/withSalesByItems.tsx similarity index 100% rename from src/containers/FinancialStatements/SalesByItems/withSalesByItems.tsx rename to apps/client/src/containers/FinancialStatements/SalesByItems/withSalesByItems.tsx diff --git a/src/containers/FinancialStatements/SalesByItems/withSalesByItemsActions.tsx b/apps/client/src/containers/FinancialStatements/SalesByItems/withSalesByItemsActions.tsx similarity index 100% rename from src/containers/FinancialStatements/SalesByItems/withSalesByItemsActions.tsx rename to apps/client/src/containers/FinancialStatements/SalesByItems/withSalesByItemsActions.tsx diff --git a/src/containers/FinancialStatements/SelectDisplayColumnsBy.tsx b/apps/client/src/containers/FinancialStatements/SelectDisplayColumnsBy.tsx similarity index 100% rename from src/containers/FinancialStatements/SelectDisplayColumnsBy.tsx rename to apps/client/src/containers/FinancialStatements/SelectDisplayColumnsBy.tsx diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceActionsBar.tsx b/apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceActionsBar.tsx diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceProvider.tsx b/apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceProvider.tsx rename to apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceProvider.tsx diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheet.tsx b/apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheet.tsx similarity index 100% rename from src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheet.tsx rename to apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheet.tsx diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetBody.tsx b/apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetBody.tsx similarity index 100% rename from src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetBody.tsx rename to apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetBody.tsx diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeader.tsx b/apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeader.tsx rename to apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeader.tsx diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderDimensionsPanel.tsx b/apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderDimensionsPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderDimensionsPanel.tsx rename to apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderDimensionsPanel.tsx diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderDimensionsPanelProvider.tsx b/apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderDimensionsPanelProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderDimensionsPanelProvider.tsx rename to apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderDimensionsPanelProvider.tsx diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderGeneralPanel.tsx b/apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderGeneralPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderGeneralPanel.tsx rename to apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetHeaderGeneralPanel.tsx diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetTable.tsx b/apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetTable.tsx similarity index 100% rename from src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetTable.tsx rename to apps/client/src/containers/FinancialStatements/TrialBalanceSheet/TrialBalanceSheetTable.tsx diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/components.tsx b/apps/client/src/containers/FinancialStatements/TrialBalanceSheet/components.tsx similarity index 100% rename from src/containers/FinancialStatements/TrialBalanceSheet/components.tsx rename to apps/client/src/containers/FinancialStatements/TrialBalanceSheet/components.tsx diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/utils.tsx b/apps/client/src/containers/FinancialStatements/TrialBalanceSheet/utils.tsx similarity index 100% rename from src/containers/FinancialStatements/TrialBalanceSheet/utils.tsx rename to apps/client/src/containers/FinancialStatements/TrialBalanceSheet/utils.tsx diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/withTrialBalance.tsx b/apps/client/src/containers/FinancialStatements/TrialBalanceSheet/withTrialBalance.tsx similarity index 100% rename from src/containers/FinancialStatements/TrialBalanceSheet/withTrialBalance.tsx rename to apps/client/src/containers/FinancialStatements/TrialBalanceSheet/withTrialBalance.tsx diff --git a/src/containers/FinancialStatements/TrialBalanceSheet/withTrialBalanceActions.tsx b/apps/client/src/containers/FinancialStatements/TrialBalanceSheet/withTrialBalanceActions.tsx similarity index 100% rename from src/containers/FinancialStatements/TrialBalanceSheet/withTrialBalanceActions.tsx rename to apps/client/src/containers/FinancialStatements/TrialBalanceSheet/withTrialBalanceActions.tsx diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLoss.tsx b/apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLoss.tsx similarity index 100% rename from src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLoss.tsx rename to apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLoss.tsx diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossActionsBar.tsx b/apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossActionsBar.tsx diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossGeneralPanel.tsx b/apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossGeneralPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossGeneralPanel.tsx rename to apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossGeneralPanel.tsx diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossHeader.tsx b/apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossHeader.tsx rename to apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossHeader.tsx diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossProvider.tsx b/apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossProvider.tsx rename to apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossProvider.tsx diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossTable.tsx b/apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossTable.tsx similarity index 100% rename from src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossTable.tsx rename to apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/UnrealizedGainOrLossTable.tsx diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/components.tsx b/apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/components.tsx similarity index 100% rename from src/containers/FinancialStatements/UnrealizedGainOrLoss/components.tsx rename to apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/components.tsx diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/withUnrealizedGainOrLoss.tsx b/apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/withUnrealizedGainOrLoss.tsx similarity index 100% rename from src/containers/FinancialStatements/UnrealizedGainOrLoss/withUnrealizedGainOrLoss.tsx rename to apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/withUnrealizedGainOrLoss.tsx diff --git a/src/containers/FinancialStatements/UnrealizedGainOrLoss/withUnrealizedGainOrLossActions.tsx b/apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/withUnrealizedGainOrLossActions.tsx similarity index 100% rename from src/containers/FinancialStatements/UnrealizedGainOrLoss/withUnrealizedGainOrLossActions.tsx rename to apps/client/src/containers/FinancialStatements/UnrealizedGainOrLoss/withUnrealizedGainOrLossActions.tsx diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummary.tsx b/apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummary.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummary.tsx rename to apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummary.tsx diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryActionsBar.tsx b/apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryActionsBar.tsx diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryBody.tsx b/apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryBody.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryBody.tsx rename to apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryBody.tsx diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeader.tsx b/apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeader.tsx rename to apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeader.tsx diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneral.tsx b/apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneral.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneral.tsx rename to apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneral.tsx diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneralContent.tsx b/apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneralContent.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneralContent.tsx rename to apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneralContent.tsx diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneralProvider.tsx b/apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneralProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneralProvider.tsx rename to apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryHeaderGeneralProvider.tsx diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryProvider.tsx b/apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryProvider.tsx rename to apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryProvider.tsx diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryTable.tsx b/apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryTable.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryTable.tsx rename to apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/VendorsBalanceSummaryTable.tsx diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/components.tsx b/apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/components.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsBalanceSummary/components.tsx rename to apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/components.tsx diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/utils.tsx b/apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/utils.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsBalanceSummary/utils.tsx rename to apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/utils.tsx diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/withVendorsBalanceSummary.tsx b/apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/withVendorsBalanceSummary.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsBalanceSummary/withVendorsBalanceSummary.tsx rename to apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/withVendorsBalanceSummary.tsx diff --git a/src/containers/FinancialStatements/VendorsBalanceSummary/withVendorsBalanceSummaryActions.tsx b/apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/withVendorsBalanceSummaryActions.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsBalanceSummary/withVendorsBalanceSummaryActions.tsx rename to apps/client/src/containers/FinancialStatements/VendorsBalanceSummary/withVendorsBalanceSummaryActions.tsx diff --git a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactions.tsx b/apps/client/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactions.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsTransactions/VendorsTransactions.tsx rename to apps/client/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactions.tsx diff --git a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsActionsBar.tsx b/apps/client/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsActionsBar.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsActionsBar.tsx rename to apps/client/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsActionsBar.tsx diff --git a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsBody.tsx b/apps/client/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsBody.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsBody.tsx rename to apps/client/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsBody.tsx diff --git a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeader.tsx b/apps/client/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeader.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeader.tsx rename to apps/client/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeader.tsx diff --git a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeaderGeneralPanel.tsx b/apps/client/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeaderGeneralPanel.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeaderGeneralPanel.tsx rename to apps/client/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeaderGeneralPanel.tsx diff --git a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeaderGeneralPanelProvider.tsx b/apps/client/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeaderGeneralPanelProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeaderGeneralPanelProvider.tsx rename to apps/client/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsHeaderGeneralPanelProvider.tsx diff --git a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsProvider.tsx b/apps/client/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsProvider.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsProvider.tsx rename to apps/client/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsProvider.tsx diff --git a/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsTable.tsx b/apps/client/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsTable.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsTable.tsx rename to apps/client/src/containers/FinancialStatements/VendorsTransactions/VendorsTransactionsTable.tsx diff --git a/src/containers/FinancialStatements/VendorsTransactions/components.tsx b/apps/client/src/containers/FinancialStatements/VendorsTransactions/components.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsTransactions/components.tsx rename to apps/client/src/containers/FinancialStatements/VendorsTransactions/components.tsx diff --git a/src/containers/FinancialStatements/VendorsTransactions/withVendorsTransaction.tsx b/apps/client/src/containers/FinancialStatements/VendorsTransactions/withVendorsTransaction.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsTransactions/withVendorsTransaction.tsx rename to apps/client/src/containers/FinancialStatements/VendorsTransactions/withVendorsTransaction.tsx diff --git a/src/containers/FinancialStatements/VendorsTransactions/withVendorsTransactionsActions.tsx b/apps/client/src/containers/FinancialStatements/VendorsTransactions/withVendorsTransactionsActions.tsx similarity index 100% rename from src/containers/FinancialStatements/VendorsTransactions/withVendorsTransactionsActions.tsx rename to apps/client/src/containers/FinancialStatements/VendorsTransactions/withVendorsTransactionsActions.tsx diff --git a/src/containers/FinancialStatements/common.tsx b/apps/client/src/containers/FinancialStatements/common.tsx similarity index 100% rename from src/containers/FinancialStatements/common.tsx rename to apps/client/src/containers/FinancialStatements/common.tsx diff --git a/src/containers/FinancialStatements/constants.tsx b/apps/client/src/containers/FinancialStatements/constants.tsx similarity index 100% rename from src/containers/FinancialStatements/constants.tsx rename to apps/client/src/containers/FinancialStatements/constants.tsx diff --git a/src/containers/FinancialStatements/reducers.tsx b/apps/client/src/containers/FinancialStatements/reducers.tsx similarity index 100% rename from src/containers/FinancialStatements/reducers.tsx rename to apps/client/src/containers/FinancialStatements/reducers.tsx diff --git a/src/containers/GlobalErrors/GlobalErrors.tsx b/apps/client/src/containers/GlobalErrors/GlobalErrors.tsx similarity index 100% rename from src/containers/GlobalErrors/GlobalErrors.tsx rename to apps/client/src/containers/GlobalErrors/GlobalErrors.tsx diff --git a/src/containers/GlobalErrors/withGlobalErrors.tsx b/apps/client/src/containers/GlobalErrors/withGlobalErrors.tsx similarity index 100% rename from src/containers/GlobalErrors/withGlobalErrors.tsx rename to apps/client/src/containers/GlobalErrors/withGlobalErrors.tsx diff --git a/src/containers/GlobalErrors/withGlobalErrorsActions.tsx b/apps/client/src/containers/GlobalErrors/withGlobalErrorsActions.tsx similarity index 100% rename from src/containers/GlobalErrors/withGlobalErrorsActions.tsx rename to apps/client/src/containers/GlobalErrors/withGlobalErrorsActions.tsx diff --git a/src/containers/Homepage/AccountsPayableSection.tsx b/apps/client/src/containers/Homepage/AccountsPayableSection.tsx similarity index 100% rename from src/containers/Homepage/AccountsPayableSection.tsx rename to apps/client/src/containers/Homepage/AccountsPayableSection.tsx diff --git a/src/containers/Homepage/AccountsReceivableSection.tsx b/apps/client/src/containers/Homepage/AccountsReceivableSection.tsx similarity index 100% rename from src/containers/Homepage/AccountsReceivableSection.tsx rename to apps/client/src/containers/Homepage/AccountsReceivableSection.tsx diff --git a/src/containers/Homepage/FinancialAccountingSection.tsx b/apps/client/src/containers/Homepage/FinancialAccountingSection.tsx similarity index 100% rename from src/containers/Homepage/FinancialAccountingSection.tsx rename to apps/client/src/containers/Homepage/FinancialAccountingSection.tsx diff --git a/src/containers/Homepage/Homepage.tsx b/apps/client/src/containers/Homepage/Homepage.tsx similarity index 100% rename from src/containers/Homepage/Homepage.tsx rename to apps/client/src/containers/Homepage/Homepage.tsx diff --git a/src/containers/Homepage/HomepageContent.tsx b/apps/client/src/containers/Homepage/HomepageContent.tsx similarity index 100% rename from src/containers/Homepage/HomepageContent.tsx rename to apps/client/src/containers/Homepage/HomepageContent.tsx diff --git a/src/containers/Homepage/ProductsServicesSection.tsx b/apps/client/src/containers/Homepage/ProductsServicesSection.tsx similarity index 100% rename from src/containers/Homepage/ProductsServicesSection.tsx rename to apps/client/src/containers/Homepage/ProductsServicesSection.tsx diff --git a/src/containers/Homepage/ShortcutBoxesSection.tsx b/apps/client/src/containers/Homepage/ShortcutBoxesSection.tsx similarity index 100% rename from src/containers/Homepage/ShortcutBoxesSection.tsx rename to apps/client/src/containers/Homepage/ShortcutBoxesSection.tsx diff --git a/src/containers/Homepage/components.tsx b/apps/client/src/containers/Homepage/components.tsx similarity index 100% rename from src/containers/Homepage/components.tsx rename to apps/client/src/containers/Homepage/components.tsx diff --git a/src/containers/InventoryAdjustments/InventoryAdjustmentList.tsx b/apps/client/src/containers/InventoryAdjustments/InventoryAdjustmentList.tsx similarity index 100% rename from src/containers/InventoryAdjustments/InventoryAdjustmentList.tsx rename to apps/client/src/containers/InventoryAdjustments/InventoryAdjustmentList.tsx diff --git a/src/containers/InventoryAdjustments/InventoryAdjustmentTable.tsx b/apps/client/src/containers/InventoryAdjustments/InventoryAdjustmentTable.tsx similarity index 100% rename from src/containers/InventoryAdjustments/InventoryAdjustmentTable.tsx rename to apps/client/src/containers/InventoryAdjustments/InventoryAdjustmentTable.tsx diff --git a/src/containers/InventoryAdjustments/InventoryAdjustmentsAlerts.tsx b/apps/client/src/containers/InventoryAdjustments/InventoryAdjustmentsAlerts.tsx similarity index 100% rename from src/containers/InventoryAdjustments/InventoryAdjustmentsAlerts.tsx rename to apps/client/src/containers/InventoryAdjustments/InventoryAdjustmentsAlerts.tsx diff --git a/src/containers/InventoryAdjustments/InventoryAdjustmentsProvider.tsx b/apps/client/src/containers/InventoryAdjustments/InventoryAdjustmentsProvider.tsx similarity index 100% rename from src/containers/InventoryAdjustments/InventoryAdjustmentsProvider.tsx rename to apps/client/src/containers/InventoryAdjustments/InventoryAdjustmentsProvider.tsx diff --git a/src/containers/InventoryAdjustments/components.tsx b/apps/client/src/containers/InventoryAdjustments/components.tsx similarity index 100% rename from src/containers/InventoryAdjustments/components.tsx rename to apps/client/src/containers/InventoryAdjustments/components.tsx diff --git a/src/containers/InventoryAdjustments/withInventoryAdjustmentActions.tsx b/apps/client/src/containers/InventoryAdjustments/withInventoryAdjustmentActions.tsx similarity index 100% rename from src/containers/InventoryAdjustments/withInventoryAdjustmentActions.tsx rename to apps/client/src/containers/InventoryAdjustments/withInventoryAdjustmentActions.tsx diff --git a/src/containers/InventoryAdjustments/withInventoryAdjustments.tsx b/apps/client/src/containers/InventoryAdjustments/withInventoryAdjustments.tsx similarity index 100% rename from src/containers/InventoryAdjustments/withInventoryAdjustments.tsx rename to apps/client/src/containers/InventoryAdjustments/withInventoryAdjustments.tsx diff --git a/src/containers/Items/ItemForm.schema.tsx b/apps/client/src/containers/Items/ItemForm.schema.tsx similarity index 100% rename from src/containers/Items/ItemForm.schema.tsx rename to apps/client/src/containers/Items/ItemForm.schema.tsx diff --git a/src/containers/Items/ItemForm.tsx b/apps/client/src/containers/Items/ItemForm.tsx similarity index 100% rename from src/containers/Items/ItemForm.tsx rename to apps/client/src/containers/Items/ItemForm.tsx diff --git a/src/containers/Items/ItemFormBody.tsx b/apps/client/src/containers/Items/ItemFormBody.tsx similarity index 100% rename from src/containers/Items/ItemFormBody.tsx rename to apps/client/src/containers/Items/ItemFormBody.tsx diff --git a/src/containers/Items/ItemFormFloatingActions.tsx b/apps/client/src/containers/Items/ItemFormFloatingActions.tsx similarity index 100% rename from src/containers/Items/ItemFormFloatingActions.tsx rename to apps/client/src/containers/Items/ItemFormFloatingActions.tsx diff --git a/src/containers/Items/ItemFormFormik.tsx b/apps/client/src/containers/Items/ItemFormFormik.tsx similarity index 100% rename from src/containers/Items/ItemFormFormik.tsx rename to apps/client/src/containers/Items/ItemFormFormik.tsx diff --git a/src/containers/Items/ItemFormInventorySection.tsx b/apps/client/src/containers/Items/ItemFormInventorySection.tsx similarity index 100% rename from src/containers/Items/ItemFormInventorySection.tsx rename to apps/client/src/containers/Items/ItemFormInventorySection.tsx diff --git a/src/containers/Items/ItemFormPage.tsx b/apps/client/src/containers/Items/ItemFormPage.tsx similarity index 100% rename from src/containers/Items/ItemFormPage.tsx rename to apps/client/src/containers/Items/ItemFormPage.tsx diff --git a/src/containers/Items/ItemFormPrimarySection.tsx b/apps/client/src/containers/Items/ItemFormPrimarySection.tsx similarity index 100% rename from src/containers/Items/ItemFormPrimarySection.tsx rename to apps/client/src/containers/Items/ItemFormPrimarySection.tsx diff --git a/src/containers/Items/ItemFormProvider.tsx b/apps/client/src/containers/Items/ItemFormProvider.tsx similarity index 100% rename from src/containers/Items/ItemFormProvider.tsx rename to apps/client/src/containers/Items/ItemFormProvider.tsx diff --git a/src/containers/Items/ItemsActionsBar.tsx b/apps/client/src/containers/Items/ItemsActionsBar.tsx similarity index 100% rename from src/containers/Items/ItemsActionsBar.tsx rename to apps/client/src/containers/Items/ItemsActionsBar.tsx diff --git a/src/containers/Items/ItemsAlerts.tsx b/apps/client/src/containers/Items/ItemsAlerts.tsx similarity index 100% rename from src/containers/Items/ItemsAlerts.tsx rename to apps/client/src/containers/Items/ItemsAlerts.tsx diff --git a/src/containers/Items/ItemsDataTable.tsx b/apps/client/src/containers/Items/ItemsDataTable.tsx similarity index 100% rename from src/containers/Items/ItemsDataTable.tsx rename to apps/client/src/containers/Items/ItemsDataTable.tsx diff --git a/src/containers/Items/ItemsEmptyStatus.tsx b/apps/client/src/containers/Items/ItemsEmptyStatus.tsx similarity index 100% rename from src/containers/Items/ItemsEmptyStatus.tsx rename to apps/client/src/containers/Items/ItemsEmptyStatus.tsx diff --git a/src/containers/Items/ItemsFooter.tsx b/apps/client/src/containers/Items/ItemsFooter.tsx similarity index 100% rename from src/containers/Items/ItemsFooter.tsx rename to apps/client/src/containers/Items/ItemsFooter.tsx diff --git a/src/containers/Items/ItemsList.tsx b/apps/client/src/containers/Items/ItemsList.tsx similarity index 100% rename from src/containers/Items/ItemsList.tsx rename to apps/client/src/containers/Items/ItemsList.tsx diff --git a/src/containers/Items/ItemsListProvider.tsx b/apps/client/src/containers/Items/ItemsListProvider.tsx similarity index 100% rename from src/containers/Items/ItemsListProvider.tsx rename to apps/client/src/containers/Items/ItemsListProvider.tsx diff --git a/src/containers/Items/ItemsUniversalSearch.tsx b/apps/client/src/containers/Items/ItemsUniversalSearch.tsx similarity index 100% rename from src/containers/Items/ItemsUniversalSearch.tsx rename to apps/client/src/containers/Items/ItemsUniversalSearch.tsx diff --git a/src/containers/Items/ItemsViewsTabs.tsx b/apps/client/src/containers/Items/ItemsViewsTabs.tsx similarity index 100% rename from src/containers/Items/ItemsViewsTabs.tsx rename to apps/client/src/containers/Items/ItemsViewsTabs.tsx diff --git a/src/containers/Items/components.tsx b/apps/client/src/containers/Items/components.tsx similarity index 100% rename from src/containers/Items/components.tsx rename to apps/client/src/containers/Items/components.tsx diff --git a/src/containers/Items/utils.tsx b/apps/client/src/containers/Items/utils.tsx similarity index 100% rename from src/containers/Items/utils.tsx rename to apps/client/src/containers/Items/utils.tsx diff --git a/src/containers/Items/withItem.tsx b/apps/client/src/containers/Items/withItem.tsx similarity index 100% rename from src/containers/Items/withItem.tsx rename to apps/client/src/containers/Items/withItem.tsx diff --git a/src/containers/Items/withItems.tsx b/apps/client/src/containers/Items/withItems.tsx similarity index 100% rename from src/containers/Items/withItems.tsx rename to apps/client/src/containers/Items/withItems.tsx diff --git a/src/containers/Items/withItemsActions.tsx b/apps/client/src/containers/Items/withItemsActions.tsx similarity index 100% rename from src/containers/Items/withItemsActions.tsx rename to apps/client/src/containers/Items/withItemsActions.tsx diff --git a/src/containers/ItemsCategories/ItemCategoriesList.tsx b/apps/client/src/containers/ItemsCategories/ItemCategoriesList.tsx similarity index 100% rename from src/containers/ItemsCategories/ItemCategoriesList.tsx rename to apps/client/src/containers/ItemsCategories/ItemCategoriesList.tsx diff --git a/src/containers/ItemsCategories/ItemCategoriesTable.tsx b/apps/client/src/containers/ItemsCategories/ItemCategoriesTable.tsx similarity index 100% rename from src/containers/ItemsCategories/ItemCategoriesTable.tsx rename to apps/client/src/containers/ItemsCategories/ItemCategoriesTable.tsx diff --git a/src/containers/ItemsCategories/ItemsCategoriesAlerts.tsx b/apps/client/src/containers/ItemsCategories/ItemsCategoriesAlerts.tsx similarity index 100% rename from src/containers/ItemsCategories/ItemsCategoriesAlerts.tsx rename to apps/client/src/containers/ItemsCategories/ItemsCategoriesAlerts.tsx diff --git a/src/containers/ItemsCategories/ItemsCategoriesProvider.tsx b/apps/client/src/containers/ItemsCategories/ItemsCategoriesProvider.tsx similarity index 100% rename from src/containers/ItemsCategories/ItemsCategoriesProvider.tsx rename to apps/client/src/containers/ItemsCategories/ItemsCategoriesProvider.tsx diff --git a/src/containers/ItemsCategories/ItemsCategoryActionsBar.tsx b/apps/client/src/containers/ItemsCategories/ItemsCategoryActionsBar.tsx similarity index 100% rename from src/containers/ItemsCategories/ItemsCategoryActionsBar.tsx rename to apps/client/src/containers/ItemsCategories/ItemsCategoryActionsBar.tsx diff --git a/src/containers/ItemsCategories/components.tsx b/apps/client/src/containers/ItemsCategories/components.tsx similarity index 100% rename from src/containers/ItemsCategories/components.tsx rename to apps/client/src/containers/ItemsCategories/components.tsx diff --git a/src/containers/ItemsCategories/withItemCategories.tsx b/apps/client/src/containers/ItemsCategories/withItemCategories.tsx similarity index 100% rename from src/containers/ItemsCategories/withItemCategories.tsx rename to apps/client/src/containers/ItemsCategories/withItemCategories.tsx diff --git a/src/containers/ItemsCategories/withItemCategoriesActions.tsx b/apps/client/src/containers/ItemsCategories/withItemCategoriesActions.tsx similarity index 100% rename from src/containers/ItemsCategories/withItemCategoriesActions.tsx rename to apps/client/src/containers/ItemsCategories/withItemCategoriesActions.tsx diff --git a/src/containers/ItemsCategories/withItemCategoryDetail.tsx b/apps/client/src/containers/ItemsCategories/withItemCategoryDetail.tsx similarity index 100% rename from src/containers/ItemsCategories/withItemCategoryDetail.tsx rename to apps/client/src/containers/ItemsCategories/withItemCategoryDetail.tsx diff --git a/src/containers/JournalEntriesTable/JournalEntriesTable.tsx b/apps/client/src/containers/JournalEntriesTable/JournalEntriesTable.tsx similarity index 100% rename from src/containers/JournalEntriesTable/JournalEntriesTable.tsx rename to apps/client/src/containers/JournalEntriesTable/JournalEntriesTable.tsx diff --git a/src/containers/JournalEntriesTable/utils.tsx b/apps/client/src/containers/JournalEntriesTable/utils.tsx similarity index 100% rename from src/containers/JournalEntriesTable/utils.tsx rename to apps/client/src/containers/JournalEntriesTable/utils.tsx diff --git a/src/containers/JournalNumber/ReferenceNumberForm.tsx b/apps/client/src/containers/JournalNumber/ReferenceNumberForm.tsx similarity index 100% rename from src/containers/JournalNumber/ReferenceNumberForm.tsx rename to apps/client/src/containers/JournalNumber/ReferenceNumberForm.tsx diff --git a/src/containers/JournalNumber/ReferenceNumberFormContent.tsx b/apps/client/src/containers/JournalNumber/ReferenceNumberFormContent.tsx similarity index 100% rename from src/containers/JournalNumber/ReferenceNumberFormContent.tsx rename to apps/client/src/containers/JournalNumber/ReferenceNumberFormContent.tsx diff --git a/src/containers/JournalNumber/utils.tsx b/apps/client/src/containers/JournalNumber/utils.tsx similarity index 100% rename from src/containers/JournalNumber/utils.tsx rename to apps/client/src/containers/JournalNumber/utils.tsx diff --git a/src/containers/KeyboardShortcuts/ShortcutsTable.tsx b/apps/client/src/containers/KeyboardShortcuts/ShortcutsTable.tsx similarity index 100% rename from src/containers/KeyboardShortcuts/ShortcutsTable.tsx rename to apps/client/src/containers/KeyboardShortcuts/ShortcutsTable.tsx diff --git a/src/containers/Media/withMediaActions.tsx b/apps/client/src/containers/Media/withMediaActions.tsx similarity index 100% rename from src/containers/Media/withMediaActions.tsx rename to apps/client/src/containers/Media/withMediaActions.tsx diff --git a/src/containers/NotifyViaSMS/NotifyViaSMSForm.schema.tsx b/apps/client/src/containers/NotifyViaSMS/NotifyViaSMSForm.schema.tsx similarity index 100% rename from src/containers/NotifyViaSMS/NotifyViaSMSForm.schema.tsx rename to apps/client/src/containers/NotifyViaSMS/NotifyViaSMSForm.schema.tsx diff --git a/src/containers/NotifyViaSMS/NotifyViaSMSForm.tsx b/apps/client/src/containers/NotifyViaSMS/NotifyViaSMSForm.tsx similarity index 100% rename from src/containers/NotifyViaSMS/NotifyViaSMSForm.tsx rename to apps/client/src/containers/NotifyViaSMS/NotifyViaSMSForm.tsx diff --git a/src/containers/NotifyViaSMS/NotifyViaSMSFormFields.tsx b/apps/client/src/containers/NotifyViaSMS/NotifyViaSMSFormFields.tsx similarity index 100% rename from src/containers/NotifyViaSMS/NotifyViaSMSFormFields.tsx rename to apps/client/src/containers/NotifyViaSMS/NotifyViaSMSFormFields.tsx diff --git a/src/containers/NotifyViaSMS/NotifyViaSMSFormFloatingActions.tsx b/apps/client/src/containers/NotifyViaSMS/NotifyViaSMSFormFloatingActions.tsx similarity index 100% rename from src/containers/NotifyViaSMS/NotifyViaSMSFormFloatingActions.tsx rename to apps/client/src/containers/NotifyViaSMS/NotifyViaSMSFormFloatingActions.tsx diff --git a/src/containers/NotifyViaSMS/utils.tsx b/apps/client/src/containers/NotifyViaSMS/utils.tsx similarity index 100% rename from src/containers/NotifyViaSMS/utils.tsx rename to apps/client/src/containers/NotifyViaSMS/utils.tsx diff --git a/src/containers/Organization/withCurrentOrganization.tsx b/apps/client/src/containers/Organization/withCurrentOrganization.tsx similarity index 100% rename from src/containers/Organization/withCurrentOrganization.tsx rename to apps/client/src/containers/Organization/withCurrentOrganization.tsx diff --git a/src/containers/Organization/withOrganization.tsx b/apps/client/src/containers/Organization/withOrganization.tsx similarity index 100% rename from src/containers/Organization/withOrganization.tsx rename to apps/client/src/containers/Organization/withOrganization.tsx diff --git a/src/containers/Organization/withOrganizationActions.tsx b/apps/client/src/containers/Organization/withOrganizationActions.tsx similarity index 100% rename from src/containers/Organization/withOrganizationActions.tsx rename to apps/client/src/containers/Organization/withOrganizationActions.tsx diff --git a/src/containers/Preferences/Accountant/Accountant.schema.tsx b/apps/client/src/containers/Preferences/Accountant/Accountant.schema.tsx similarity index 100% rename from src/containers/Preferences/Accountant/Accountant.schema.tsx rename to apps/client/src/containers/Preferences/Accountant/Accountant.schema.tsx diff --git a/src/containers/Preferences/Accountant/Accountant.tsx b/apps/client/src/containers/Preferences/Accountant/Accountant.tsx similarity index 100% rename from src/containers/Preferences/Accountant/Accountant.tsx rename to apps/client/src/containers/Preferences/Accountant/Accountant.tsx diff --git a/src/containers/Preferences/Accountant/AccountantForm.tsx b/apps/client/src/containers/Preferences/Accountant/AccountantForm.tsx similarity index 100% rename from src/containers/Preferences/Accountant/AccountantForm.tsx rename to apps/client/src/containers/Preferences/Accountant/AccountantForm.tsx diff --git a/src/containers/Preferences/Accountant/AccountantFormPage.tsx b/apps/client/src/containers/Preferences/Accountant/AccountantFormPage.tsx similarity index 100% rename from src/containers/Preferences/Accountant/AccountantFormPage.tsx rename to apps/client/src/containers/Preferences/Accountant/AccountantFormPage.tsx diff --git a/src/containers/Preferences/Accountant/AccountantFormProvider.tsx b/apps/client/src/containers/Preferences/Accountant/AccountantFormProvider.tsx similarity index 100% rename from src/containers/Preferences/Accountant/AccountantFormProvider.tsx rename to apps/client/src/containers/Preferences/Accountant/AccountantFormProvider.tsx diff --git a/src/containers/Preferences/Accountant/utils.tsx b/apps/client/src/containers/Preferences/Accountant/utils.tsx similarity index 100% rename from src/containers/Preferences/Accountant/utils.tsx rename to apps/client/src/containers/Preferences/Accountant/utils.tsx diff --git a/src/containers/Preferences/Branches/Branches.tsx b/apps/client/src/containers/Preferences/Branches/Branches.tsx similarity index 100% rename from src/containers/Preferences/Branches/Branches.tsx rename to apps/client/src/containers/Preferences/Branches/Branches.tsx diff --git a/src/containers/Preferences/Branches/BranchesActions.tsx b/apps/client/src/containers/Preferences/Branches/BranchesActions.tsx similarity index 100% rename from src/containers/Preferences/Branches/BranchesActions.tsx rename to apps/client/src/containers/Preferences/Branches/BranchesActions.tsx diff --git a/src/containers/Preferences/Branches/BranchesAlerts.tsx b/apps/client/src/containers/Preferences/Branches/BranchesAlerts.tsx similarity index 100% rename from src/containers/Preferences/Branches/BranchesAlerts.tsx rename to apps/client/src/containers/Preferences/Branches/BranchesAlerts.tsx diff --git a/src/containers/Preferences/Branches/BranchesDataTable.tsx b/apps/client/src/containers/Preferences/Branches/BranchesDataTable.tsx similarity index 100% rename from src/containers/Preferences/Branches/BranchesDataTable.tsx rename to apps/client/src/containers/Preferences/Branches/BranchesDataTable.tsx diff --git a/src/containers/Preferences/Branches/BranchesEmptyStatus.tsx b/apps/client/src/containers/Preferences/Branches/BranchesEmptyStatus.tsx similarity index 100% rename from src/containers/Preferences/Branches/BranchesEmptyStatus.tsx rename to apps/client/src/containers/Preferences/Branches/BranchesEmptyStatus.tsx diff --git a/src/containers/Preferences/Branches/BranchesProvider.tsx b/apps/client/src/containers/Preferences/Branches/BranchesProvider.tsx similarity index 100% rename from src/containers/Preferences/Branches/BranchesProvider.tsx rename to apps/client/src/containers/Preferences/Branches/BranchesProvider.tsx diff --git a/src/containers/Preferences/Branches/components.tsx b/apps/client/src/containers/Preferences/Branches/components.tsx similarity index 100% rename from src/containers/Preferences/Branches/components.tsx rename to apps/client/src/containers/Preferences/Branches/components.tsx diff --git a/src/containers/Preferences/Branches/index.tsx b/apps/client/src/containers/Preferences/Branches/index.tsx similarity index 100% rename from src/containers/Preferences/Branches/index.tsx rename to apps/client/src/containers/Preferences/Branches/index.tsx diff --git a/src/containers/Preferences/Branches/utils.tsx b/apps/client/src/containers/Preferences/Branches/utils.tsx similarity index 100% rename from src/containers/Preferences/Branches/utils.tsx rename to apps/client/src/containers/Preferences/Branches/utils.tsx diff --git a/src/containers/Preferences/Currencies/Currencies.tsx b/apps/client/src/containers/Preferences/Currencies/Currencies.tsx similarity index 100% rename from src/containers/Preferences/Currencies/Currencies.tsx rename to apps/client/src/containers/Preferences/Currencies/Currencies.tsx diff --git a/src/containers/Preferences/Currencies/CurrenciesActions.tsx b/apps/client/src/containers/Preferences/Currencies/CurrenciesActions.tsx similarity index 100% rename from src/containers/Preferences/Currencies/CurrenciesActions.tsx rename to apps/client/src/containers/Preferences/Currencies/CurrenciesActions.tsx diff --git a/src/containers/Preferences/Currencies/CurrenciesAlerts.tsx b/apps/client/src/containers/Preferences/Currencies/CurrenciesAlerts.tsx similarity index 100% rename from src/containers/Preferences/Currencies/CurrenciesAlerts.tsx rename to apps/client/src/containers/Preferences/Currencies/CurrenciesAlerts.tsx diff --git a/src/containers/Preferences/Currencies/CurrenciesDataTable.tsx b/apps/client/src/containers/Preferences/Currencies/CurrenciesDataTable.tsx similarity index 100% rename from src/containers/Preferences/Currencies/CurrenciesDataTable.tsx rename to apps/client/src/containers/Preferences/Currencies/CurrenciesDataTable.tsx diff --git a/src/containers/Preferences/Currencies/CurrenciesList.tsx b/apps/client/src/containers/Preferences/Currencies/CurrenciesList.tsx similarity index 100% rename from src/containers/Preferences/Currencies/CurrenciesList.tsx rename to apps/client/src/containers/Preferences/Currencies/CurrenciesList.tsx diff --git a/src/containers/Preferences/Currencies/CurrenciesProvider.tsx b/apps/client/src/containers/Preferences/Currencies/CurrenciesProvider.tsx similarity index 100% rename from src/containers/Preferences/Currencies/CurrenciesProvider.tsx rename to apps/client/src/containers/Preferences/Currencies/CurrenciesProvider.tsx diff --git a/src/containers/Preferences/Currencies/components.tsx b/apps/client/src/containers/Preferences/Currencies/components.tsx similarity index 100% rename from src/containers/Preferences/Currencies/components.tsx rename to apps/client/src/containers/Preferences/Currencies/components.tsx diff --git a/src/containers/Preferences/DefaultRoute.tsx b/apps/client/src/containers/Preferences/DefaultRoute.tsx similarity index 100% rename from src/containers/Preferences/DefaultRoute.tsx rename to apps/client/src/containers/Preferences/DefaultRoute.tsx diff --git a/src/containers/Preferences/General/General.schema.tsx b/apps/client/src/containers/Preferences/General/General.schema.tsx similarity index 100% rename from src/containers/Preferences/General/General.schema.tsx rename to apps/client/src/containers/Preferences/General/General.schema.tsx diff --git a/src/containers/Preferences/General/General.tsx b/apps/client/src/containers/Preferences/General/General.tsx similarity index 100% rename from src/containers/Preferences/General/General.tsx rename to apps/client/src/containers/Preferences/General/General.tsx diff --git a/src/containers/Preferences/General/GeneralForm.tsx b/apps/client/src/containers/Preferences/General/GeneralForm.tsx similarity index 100% rename from src/containers/Preferences/General/GeneralForm.tsx rename to apps/client/src/containers/Preferences/General/GeneralForm.tsx diff --git a/src/containers/Preferences/General/GeneralFormPage.tsx b/apps/client/src/containers/Preferences/General/GeneralFormPage.tsx similarity index 100% rename from src/containers/Preferences/General/GeneralFormPage.tsx rename to apps/client/src/containers/Preferences/General/GeneralFormPage.tsx diff --git a/src/containers/Preferences/General/GeneralFormProvider.tsx b/apps/client/src/containers/Preferences/General/GeneralFormProvider.tsx similarity index 100% rename from src/containers/Preferences/General/GeneralFormProvider.tsx rename to apps/client/src/containers/Preferences/General/GeneralFormProvider.tsx diff --git a/src/containers/Preferences/General/utils.tsx b/apps/client/src/containers/Preferences/General/utils.tsx similarity index 100% rename from src/containers/Preferences/General/utils.tsx rename to apps/client/src/containers/Preferences/General/utils.tsx diff --git a/src/containers/Preferences/Item/ItemPreferences.schema.tsx b/apps/client/src/containers/Preferences/Item/ItemPreferences.schema.tsx similarity index 100% rename from src/containers/Preferences/Item/ItemPreferences.schema.tsx rename to apps/client/src/containers/Preferences/Item/ItemPreferences.schema.tsx diff --git a/src/containers/Preferences/Item/ItemPreferencesForm.tsx b/apps/client/src/containers/Preferences/Item/ItemPreferencesForm.tsx similarity index 100% rename from src/containers/Preferences/Item/ItemPreferencesForm.tsx rename to apps/client/src/containers/Preferences/Item/ItemPreferencesForm.tsx diff --git a/src/containers/Preferences/Item/ItemPreferencesFormPage.tsx b/apps/client/src/containers/Preferences/Item/ItemPreferencesFormPage.tsx similarity index 100% rename from src/containers/Preferences/Item/ItemPreferencesFormPage.tsx rename to apps/client/src/containers/Preferences/Item/ItemPreferencesFormPage.tsx diff --git a/src/containers/Preferences/Item/ItemPreferencesFormProvider.tsx b/apps/client/src/containers/Preferences/Item/ItemPreferencesFormProvider.tsx similarity index 100% rename from src/containers/Preferences/Item/ItemPreferencesFormProvider.tsx rename to apps/client/src/containers/Preferences/Item/ItemPreferencesFormProvider.tsx diff --git a/src/containers/Preferences/Item/index.tsx b/apps/client/src/containers/Preferences/Item/index.tsx similarity index 100% rename from src/containers/Preferences/Item/index.tsx rename to apps/client/src/containers/Preferences/Item/index.tsx diff --git a/src/containers/Preferences/PreferencesPageLoader.tsx b/apps/client/src/containers/Preferences/PreferencesPageLoader.tsx similarity index 100% rename from src/containers/Preferences/PreferencesPageLoader.tsx rename to apps/client/src/containers/Preferences/PreferencesPageLoader.tsx diff --git a/src/containers/Preferences/SMSIntegration/SMSIntegrationProvider.tsx b/apps/client/src/containers/Preferences/SMSIntegration/SMSIntegrationProvider.tsx similarity index 100% rename from src/containers/Preferences/SMSIntegration/SMSIntegrationProvider.tsx rename to apps/client/src/containers/Preferences/SMSIntegration/SMSIntegrationProvider.tsx diff --git a/src/containers/Preferences/SMSIntegration/SMSIntegrationTabs.tsx b/apps/client/src/containers/Preferences/SMSIntegration/SMSIntegrationTabs.tsx similarity index 100% rename from src/containers/Preferences/SMSIntegration/SMSIntegrationTabs.tsx rename to apps/client/src/containers/Preferences/SMSIntegration/SMSIntegrationTabs.tsx diff --git a/src/containers/Preferences/SMSIntegration/SMSMessagesDataTable.tsx b/apps/client/src/containers/Preferences/SMSIntegration/SMSMessagesDataTable.tsx similarity index 100% rename from src/containers/Preferences/SMSIntegration/SMSMessagesDataTable.tsx rename to apps/client/src/containers/Preferences/SMSIntegration/SMSMessagesDataTable.tsx diff --git a/src/containers/Preferences/SMSIntegration/components.tsx b/apps/client/src/containers/Preferences/SMSIntegration/components.tsx similarity index 100% rename from src/containers/Preferences/SMSIntegration/components.tsx rename to apps/client/src/containers/Preferences/SMSIntegration/components.tsx diff --git a/src/containers/Preferences/SMSIntegration/index.tsx b/apps/client/src/containers/Preferences/SMSIntegration/index.tsx similarity index 100% rename from src/containers/Preferences/SMSIntegration/index.tsx rename to apps/client/src/containers/Preferences/SMSIntegration/index.tsx diff --git a/src/containers/Preferences/Users/Roles/RolesAlerts.tsx b/apps/client/src/containers/Preferences/Users/Roles/RolesAlerts.tsx similarity index 100% rename from src/containers/Preferences/Users/Roles/RolesAlerts.tsx rename to apps/client/src/containers/Preferences/Users/Roles/RolesAlerts.tsx diff --git a/src/containers/Preferences/Users/Roles/RolesForm/RoleFormFloatingActions.tsx b/apps/client/src/containers/Preferences/Users/Roles/RolesForm/RoleFormFloatingActions.tsx similarity index 100% rename from src/containers/Preferences/Users/Roles/RolesForm/RoleFormFloatingActions.tsx rename to apps/client/src/containers/Preferences/Users/Roles/RolesForm/RoleFormFloatingActions.tsx diff --git a/src/containers/Preferences/Users/Roles/RolesForm/RoleFormHeader.tsx b/apps/client/src/containers/Preferences/Users/Roles/RolesForm/RoleFormHeader.tsx similarity index 100% rename from src/containers/Preferences/Users/Roles/RolesForm/RoleFormHeader.tsx rename to apps/client/src/containers/Preferences/Users/Roles/RolesForm/RoleFormHeader.tsx diff --git a/src/containers/Preferences/Users/Roles/RolesForm/RoleFormObserver.tsx b/apps/client/src/containers/Preferences/Users/Roles/RolesForm/RoleFormObserver.tsx similarity index 100% rename from src/containers/Preferences/Users/Roles/RolesForm/RoleFormObserver.tsx rename to apps/client/src/containers/Preferences/Users/Roles/RolesForm/RoleFormObserver.tsx diff --git a/src/containers/Preferences/Users/Roles/RolesForm/RolesForm.schema.tsx b/apps/client/src/containers/Preferences/Users/Roles/RolesForm/RolesForm.schema.tsx similarity index 100% rename from src/containers/Preferences/Users/Roles/RolesForm/RolesForm.schema.tsx rename to apps/client/src/containers/Preferences/Users/Roles/RolesForm/RolesForm.schema.tsx diff --git a/src/containers/Preferences/Users/Roles/RolesForm/RolesForm.tsx b/apps/client/src/containers/Preferences/Users/Roles/RolesForm/RolesForm.tsx similarity index 100% rename from src/containers/Preferences/Users/Roles/RolesForm/RolesForm.tsx rename to apps/client/src/containers/Preferences/Users/Roles/RolesForm/RolesForm.tsx diff --git a/src/containers/Preferences/Users/Roles/RolesForm/RolesFormContent.tsx b/apps/client/src/containers/Preferences/Users/Roles/RolesForm/RolesFormContent.tsx similarity index 100% rename from src/containers/Preferences/Users/Roles/RolesForm/RolesFormContent.tsx rename to apps/client/src/containers/Preferences/Users/Roles/RolesForm/RolesFormContent.tsx diff --git a/src/containers/Preferences/Users/Roles/RolesForm/RolesFormPage.tsx b/apps/client/src/containers/Preferences/Users/Roles/RolesForm/RolesFormPage.tsx similarity index 100% rename from src/containers/Preferences/Users/Roles/RolesForm/RolesFormPage.tsx rename to apps/client/src/containers/Preferences/Users/Roles/RolesForm/RolesFormPage.tsx diff --git a/src/containers/Preferences/Users/Roles/RolesForm/RolesFormProvider.tsx b/apps/client/src/containers/Preferences/Users/Roles/RolesForm/RolesFormProvider.tsx similarity index 100% rename from src/containers/Preferences/Users/Roles/RolesForm/RolesFormProvider.tsx rename to apps/client/src/containers/Preferences/Users/Roles/RolesForm/RolesFormProvider.tsx diff --git a/src/containers/Preferences/Users/Roles/RolesForm/components.tsx b/apps/client/src/containers/Preferences/Users/Roles/RolesForm/components.tsx similarity index 100% rename from src/containers/Preferences/Users/Roles/RolesForm/components.tsx rename to apps/client/src/containers/Preferences/Users/Roles/RolesForm/components.tsx diff --git a/src/containers/Preferences/Users/Roles/RolesForm/utils.tsx b/apps/client/src/containers/Preferences/Users/Roles/RolesForm/utils.tsx similarity index 100% rename from src/containers/Preferences/Users/Roles/RolesForm/utils.tsx rename to apps/client/src/containers/Preferences/Users/Roles/RolesForm/utils.tsx diff --git a/src/containers/Preferences/Users/Roles/RolesLanding/RolesDataTable.tsx b/apps/client/src/containers/Preferences/Users/Roles/RolesLanding/RolesDataTable.tsx similarity index 100% rename from src/containers/Preferences/Users/Roles/RolesLanding/RolesDataTable.tsx rename to apps/client/src/containers/Preferences/Users/Roles/RolesLanding/RolesDataTable.tsx diff --git a/src/containers/Preferences/Users/Roles/RolesLanding/RolesList.tsx b/apps/client/src/containers/Preferences/Users/Roles/RolesLanding/RolesList.tsx similarity index 100% rename from src/containers/Preferences/Users/Roles/RolesLanding/RolesList.tsx rename to apps/client/src/containers/Preferences/Users/Roles/RolesLanding/RolesList.tsx diff --git a/src/containers/Preferences/Users/Roles/RolesLanding/RolesListProvider.tsx b/apps/client/src/containers/Preferences/Users/Roles/RolesLanding/RolesListProvider.tsx similarity index 100% rename from src/containers/Preferences/Users/Roles/RolesLanding/RolesListProvider.tsx rename to apps/client/src/containers/Preferences/Users/Roles/RolesLanding/RolesListProvider.tsx diff --git a/src/containers/Preferences/Users/Roles/RolesLanding/components.tsx b/apps/client/src/containers/Preferences/Users/Roles/RolesLanding/components.tsx similarity index 100% rename from src/containers/Preferences/Users/Roles/RolesLanding/components.tsx rename to apps/client/src/containers/Preferences/Users/Roles/RolesLanding/components.tsx diff --git a/src/containers/Preferences/Users/Roles/utils.tsx b/apps/client/src/containers/Preferences/Users/Roles/utils.tsx similarity index 100% rename from src/containers/Preferences/Users/Roles/utils.tsx rename to apps/client/src/containers/Preferences/Users/Roles/utils.tsx diff --git a/src/containers/Preferences/Users/Users.tsx b/apps/client/src/containers/Preferences/Users/Users.tsx similarity index 100% rename from src/containers/Preferences/Users/Users.tsx rename to apps/client/src/containers/Preferences/Users/Users.tsx diff --git a/src/containers/Preferences/Users/UsersActions.tsx b/apps/client/src/containers/Preferences/Users/UsersActions.tsx similarity index 100% rename from src/containers/Preferences/Users/UsersActions.tsx rename to apps/client/src/containers/Preferences/Users/UsersActions.tsx diff --git a/src/containers/Preferences/Users/UsersAlerts.tsx b/apps/client/src/containers/Preferences/Users/UsersAlerts.tsx similarity index 100% rename from src/containers/Preferences/Users/UsersAlerts.tsx rename to apps/client/src/containers/Preferences/Users/UsersAlerts.tsx diff --git a/src/containers/Preferences/Users/UsersDataTable.tsx b/apps/client/src/containers/Preferences/Users/UsersDataTable.tsx similarity index 100% rename from src/containers/Preferences/Users/UsersDataTable.tsx rename to apps/client/src/containers/Preferences/Users/UsersDataTable.tsx diff --git a/src/containers/Preferences/Users/UsersList.tsx b/apps/client/src/containers/Preferences/Users/UsersList.tsx similarity index 100% rename from src/containers/Preferences/Users/UsersList.tsx rename to apps/client/src/containers/Preferences/Users/UsersList.tsx diff --git a/src/containers/Preferences/Users/UsersProvider.tsx b/apps/client/src/containers/Preferences/Users/UsersProvider.tsx similarity index 100% rename from src/containers/Preferences/Users/UsersProvider.tsx rename to apps/client/src/containers/Preferences/Users/UsersProvider.tsx diff --git a/src/containers/Preferences/Users/components.tsx b/apps/client/src/containers/Preferences/Users/components.tsx similarity index 100% rename from src/containers/Preferences/Users/components.tsx rename to apps/client/src/containers/Preferences/Users/components.tsx diff --git a/src/containers/Preferences/Users/withUserPreferences.tsx b/apps/client/src/containers/Preferences/Users/withUserPreferences.tsx similarity index 100% rename from src/containers/Preferences/Users/withUserPreferences.tsx rename to apps/client/src/containers/Preferences/Users/withUserPreferences.tsx diff --git a/src/containers/Preferences/Warehouses/Warehouses.tsx b/apps/client/src/containers/Preferences/Warehouses/Warehouses.tsx similarity index 100% rename from src/containers/Preferences/Warehouses/Warehouses.tsx rename to apps/client/src/containers/Preferences/Warehouses/Warehouses.tsx diff --git a/src/containers/Preferences/Warehouses/WarehousesActions.tsx b/apps/client/src/containers/Preferences/Warehouses/WarehousesActions.tsx similarity index 100% rename from src/containers/Preferences/Warehouses/WarehousesActions.tsx rename to apps/client/src/containers/Preferences/Warehouses/WarehousesActions.tsx diff --git a/src/containers/Preferences/Warehouses/WarehousesAlerts.tsx b/apps/client/src/containers/Preferences/Warehouses/WarehousesAlerts.tsx similarity index 100% rename from src/containers/Preferences/Warehouses/WarehousesAlerts.tsx rename to apps/client/src/containers/Preferences/Warehouses/WarehousesAlerts.tsx diff --git a/src/containers/Preferences/Warehouses/WarehousesEmptyStatus.tsx b/apps/client/src/containers/Preferences/Warehouses/WarehousesEmptyStatus.tsx similarity index 100% rename from src/containers/Preferences/Warehouses/WarehousesEmptyStatus.tsx rename to apps/client/src/containers/Preferences/Warehouses/WarehousesEmptyStatus.tsx diff --git a/src/containers/Preferences/Warehouses/WarehousesGrid.tsx b/apps/client/src/containers/Preferences/Warehouses/WarehousesGrid.tsx similarity index 100% rename from src/containers/Preferences/Warehouses/WarehousesGrid.tsx rename to apps/client/src/containers/Preferences/Warehouses/WarehousesGrid.tsx diff --git a/src/containers/Preferences/Warehouses/WarehousesGridItems.tsx b/apps/client/src/containers/Preferences/Warehouses/WarehousesGridItems.tsx similarity index 100% rename from src/containers/Preferences/Warehouses/WarehousesGridItems.tsx rename to apps/client/src/containers/Preferences/Warehouses/WarehousesGridItems.tsx diff --git a/src/containers/Preferences/Warehouses/WarehousesProvider.tsx b/apps/client/src/containers/Preferences/Warehouses/WarehousesProvider.tsx similarity index 100% rename from src/containers/Preferences/Warehouses/WarehousesProvider.tsx rename to apps/client/src/containers/Preferences/Warehouses/WarehousesProvider.tsx diff --git a/src/containers/Preferences/Warehouses/components.tsx b/apps/client/src/containers/Preferences/Warehouses/components.tsx similarity index 100% rename from src/containers/Preferences/Warehouses/components.tsx rename to apps/client/src/containers/Preferences/Warehouses/components.tsx diff --git a/src/containers/Preferences/Warehouses/index.tsx b/apps/client/src/containers/Preferences/Warehouses/index.tsx similarity index 100% rename from src/containers/Preferences/Warehouses/index.tsx rename to apps/client/src/containers/Preferences/Warehouses/index.tsx diff --git a/src/containers/Preferences/Warehouses/utils.tsx b/apps/client/src/containers/Preferences/Warehouses/utils.tsx similarity index 100% rename from src/containers/Preferences/Warehouses/utils.tsx rename to apps/client/src/containers/Preferences/Warehouses/utils.tsx diff --git a/src/containers/Projects/components/ExpenseSelect.tsx b/apps/client/src/containers/Projects/components/ExpenseSelect.tsx similarity index 100% rename from src/containers/Projects/components/ExpenseSelect.tsx rename to apps/client/src/containers/Projects/components/ExpenseSelect.tsx diff --git a/src/containers/Projects/components/FInputGroupComponent.tsx b/apps/client/src/containers/Projects/components/FInputGroupComponent.tsx similarity index 100% rename from src/containers/Projects/components/FInputGroupComponent.tsx rename to apps/client/src/containers/Projects/components/FInputGroupComponent.tsx diff --git a/src/containers/Projects/components/ProjectBillableEntriesLink.tsx b/apps/client/src/containers/Projects/components/ProjectBillableEntriesLink.tsx similarity index 100% rename from src/containers/Projects/components/ProjectBillableEntriesLink.tsx rename to apps/client/src/containers/Projects/components/ProjectBillableEntriesLink.tsx diff --git a/src/containers/Projects/components/ProjectBillableTypeSuggestField.tsx b/apps/client/src/containers/Projects/components/ProjectBillableTypeSuggestField.tsx similarity index 100% rename from src/containers/Projects/components/ProjectBillableTypeSuggestField.tsx rename to apps/client/src/containers/Projects/components/ProjectBillableTypeSuggestField.tsx diff --git a/src/containers/Projects/components/ProjectMultiSelect.tsx b/apps/client/src/containers/Projects/components/ProjectMultiSelect.tsx similarity index 100% rename from src/containers/Projects/components/ProjectMultiSelect.tsx rename to apps/client/src/containers/Projects/components/ProjectMultiSelect.tsx diff --git a/src/containers/Projects/components/ProjectSuggestField.tsx b/apps/client/src/containers/Projects/components/ProjectSuggestField.tsx similarity index 100% rename from src/containers/Projects/components/ProjectSuggestField.tsx rename to apps/client/src/containers/Projects/components/ProjectSuggestField.tsx diff --git a/src/containers/Projects/components/ProjectTaskChargeTypeSelect.tsx b/apps/client/src/containers/Projects/components/ProjectTaskChargeTypeSelect.tsx similarity index 100% rename from src/containers/Projects/components/ProjectTaskChargeTypeSelect.tsx rename to apps/client/src/containers/Projects/components/ProjectTaskChargeTypeSelect.tsx diff --git a/src/containers/Projects/components/ProjectTaskSelect.tsx b/apps/client/src/containers/Projects/components/ProjectTaskSelect.tsx similarity index 100% rename from src/containers/Projects/components/ProjectTaskSelect.tsx rename to apps/client/src/containers/Projects/components/ProjectTaskSelect.tsx diff --git a/src/containers/Projects/components/ProjectsSelect.tsx b/apps/client/src/containers/Projects/components/ProjectsSelect.tsx similarity index 100% rename from src/containers/Projects/components/ProjectsSelect.tsx rename to apps/client/src/containers/Projects/components/ProjectsSelect.tsx diff --git a/src/containers/Projects/components/index.ts b/apps/client/src/containers/Projects/components/index.ts similarity index 100% rename from src/containers/Projects/components/index.ts rename to apps/client/src/containers/Projects/components/index.ts diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpense.schema.tsx b/apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpense.schema.tsx similarity index 100% rename from src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpense.schema.tsx rename to apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpense.schema.tsx diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseForm.tsx b/apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseForm.tsx similarity index 100% rename from src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseForm.tsx rename to apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseForm.tsx diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormChargeFields.tsx b/apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormChargeFields.tsx similarity index 100% rename from src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormChargeFields.tsx rename to apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormChargeFields.tsx diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormConent.tsx b/apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormConent.tsx similarity index 100% rename from src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormConent.tsx rename to apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormConent.tsx diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormDialogContent.tsx b/apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormDialogContent.tsx similarity index 100% rename from src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormDialogContent.tsx rename to apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormDialogContent.tsx diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormFields.tsx b/apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormFields.tsx similarity index 100% rename from src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormFields.tsx rename to apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormFields.tsx diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormFloatingActions.tsx b/apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormFloatingActions.tsx similarity index 100% rename from src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormFloatingActions.tsx rename to apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormFloatingActions.tsx diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormProvider.tsx b/apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormProvider.tsx similarity index 100% rename from src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormProvider.tsx rename to apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/EstimatedExpenseFormProvider.tsx diff --git a/src/containers/Projects/containers/EstimatedExpenseFormDialog/index.tsx b/apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/index.tsx similarity index 100% rename from src/containers/Projects/containers/EstimatedExpenseFormDialog/index.tsx rename to apps/client/src/containers/Projects/containers/EstimatedExpenseFormDialog/index.tsx diff --git a/src/containers/Projects/containers/ProjectAlerts/ProjectDeleteAlert.tsx b/apps/client/src/containers/Projects/containers/ProjectAlerts/ProjectDeleteAlert.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectAlerts/ProjectDeleteAlert.tsx rename to apps/client/src/containers/Projects/containers/ProjectAlerts/ProjectDeleteAlert.tsx diff --git a/src/containers/Projects/containers/ProjectAlerts/ProjectStatusAlert.tsx b/apps/client/src/containers/Projects/containers/ProjectAlerts/ProjectStatusAlert.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectAlerts/ProjectStatusAlert.tsx rename to apps/client/src/containers/Projects/containers/ProjectAlerts/ProjectStatusAlert.tsx diff --git a/src/containers/Projects/containers/ProjectAlerts/ProjectTaskDeleteAlert.tsx b/apps/client/src/containers/Projects/containers/ProjectAlerts/ProjectTaskDeleteAlert.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectAlerts/ProjectTaskDeleteAlert.tsx rename to apps/client/src/containers/Projects/containers/ProjectAlerts/ProjectTaskDeleteAlert.tsx diff --git a/src/containers/Projects/containers/ProjectAlerts/ProjectTimesheetDeleteAlert.tsx b/apps/client/src/containers/Projects/containers/ProjectAlerts/ProjectTimesheetDeleteAlert.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectAlerts/ProjectTimesheetDeleteAlert.tsx rename to apps/client/src/containers/Projects/containers/ProjectAlerts/ProjectTimesheetDeleteAlert.tsx diff --git a/src/containers/Projects/containers/ProjectAlerts/index.ts b/apps/client/src/containers/Projects/containers/ProjectAlerts/index.ts similarity index 100% rename from src/containers/Projects/containers/ProjectAlerts/index.ts rename to apps/client/src/containers/Projects/containers/ProjectAlerts/index.ts diff --git a/src/containers/Projects/containers/ProjectBillableEntries/ProjectBillableEntriesContent.tsx b/apps/client/src/containers/Projects/containers/ProjectBillableEntries/ProjectBillableEntriesContent.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectBillableEntries/ProjectBillableEntriesContent.tsx rename to apps/client/src/containers/Projects/containers/ProjectBillableEntries/ProjectBillableEntriesContent.tsx diff --git a/src/containers/Projects/containers/ProjectBillableEntries/ProjectBillableEntriesProvider.tsx b/apps/client/src/containers/Projects/containers/ProjectBillableEntries/ProjectBillableEntriesProvider.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectBillableEntries/ProjectBillableEntriesProvider.tsx rename to apps/client/src/containers/Projects/containers/ProjectBillableEntries/ProjectBillableEntriesProvider.tsx diff --git a/src/containers/Projects/containers/ProjectBillableEntries/components.tsx b/apps/client/src/containers/Projects/containers/ProjectBillableEntries/components.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectBillableEntries/components.tsx rename to apps/client/src/containers/Projects/containers/ProjectBillableEntries/components.tsx diff --git a/src/containers/Projects/containers/ProjectBillableEntries/index.tsx b/apps/client/src/containers/Projects/containers/ProjectBillableEntries/index.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectBillableEntries/index.tsx rename to apps/client/src/containers/Projects/containers/ProjectBillableEntries/index.tsx diff --git a/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesForm.schema.tsx b/apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesForm.schema.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesForm.schema.tsx rename to apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesForm.schema.tsx diff --git a/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesForm.tsx b/apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesForm.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesForm.tsx rename to apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesForm.tsx diff --git a/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormContent.tsx b/apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormContent.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormContent.tsx rename to apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormContent.tsx diff --git a/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormDialogContent.tsx b/apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormDialogContent.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormDialogContent.tsx rename to apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormDialogContent.tsx diff --git a/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormFields.tsx b/apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormFields.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormFields.tsx rename to apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormFields.tsx diff --git a/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormFloatingActions.tsx b/apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormFloatingActions.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormFloatingActions.tsx rename to apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormFloatingActions.tsx diff --git a/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormProvider.tsx b/apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormProvider.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormProvider.tsx rename to apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/ProjectBillableEntriesFormProvider.tsx diff --git a/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/components.tsx b/apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/components.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectBillableEntriesFormDialog/components.tsx rename to apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/components.tsx diff --git a/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/index.tsx b/apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/index.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectBillableEntriesFormDialog/index.tsx rename to apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/index.tsx diff --git a/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/utils.tsx b/apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/utils.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectBillableEntriesFormDialog/utils.tsx rename to apps/client/src/containers/Projects/containers/ProjectBillableEntriesFormDialog/utils.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectDetailActionsBar.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectDetailActionsBar.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectDetailActionsBar.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectDetailActionsBar.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectDetailProvider.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectDetailProvider.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectDetailProvider.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectDetailProvider.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectDetailTabs.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectDetailTabs.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectDetailTabs.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectDetailTabs.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectDetailsHeader.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectDetailsHeader.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectDetailsHeader.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectDetailsHeader.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/ProjectPurchasesTable.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/ProjectPurchasesTable.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/ProjectPurchasesTable.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/ProjectPurchasesTable.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/components.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/components.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/components.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/components.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/hooks.ts b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/hooks.ts similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/hooks.ts rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/hooks.ts diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/index.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/index.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/index.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectPurchasesTable/index.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/ProjectSalesTable.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/ProjectSalesTable.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/ProjectSalesTable.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/ProjectSalesTable.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/components.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/components.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/components.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/components.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/hooks.ts b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/hooks.ts similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/hooks.ts rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/hooks.ts diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/index.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/index.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/index.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectSalesTable/index.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTaskProvider.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTaskProvider.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTaskProvider.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTaskProvider.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTasksHeader.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTasksHeader.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTasksHeader.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTasksHeader.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTasksTable.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTasksTable.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTasksTable.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTasks/ProjectTasksTable.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/components.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTasks/components.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectTasks/components.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTasks/components.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/hooks.ts b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTasks/hooks.ts similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectTasks/hooks.ts rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTasks/hooks.ts diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTasks/index.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTasks/index.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectTasks/index.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTasks/index.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsHeader.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsHeader.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsHeader.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsHeader.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsProvider.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsProvider.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsProvider.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsProvider.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsTable.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsTable.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsTable.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/ProjectTimesheetsTable.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/components.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/components.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/components.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/components.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/hooks.ts b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/hooks.ts similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/hooks.ts rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/hooks.ts diff --git a/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/index.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/index.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/index.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/ProjectTimeSheets/index.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/common.ts b/apps/client/src/containers/Projects/containers/ProjectDetails/common.ts similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/common.ts rename to apps/client/src/containers/Projects/containers/ProjectDetails/common.ts diff --git a/src/containers/Projects/containers/ProjectDetails/components/FinancialSection.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/components/FinancialSection.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/components/FinancialSection.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/components/FinancialSection.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/components/ProjectTransactionsSelect.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/components/ProjectTransactionsSelect.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/components/ProjectTransactionsSelect.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/components/ProjectTransactionsSelect.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/components/index.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/components/index.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/components/index.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/components/index.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/index.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/index.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/index.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/index.tsx diff --git a/src/containers/Projects/containers/ProjectDetails/utils.tsx b/apps/client/src/containers/Projects/containers/ProjectDetails/utils.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectDetails/utils.tsx rename to apps/client/src/containers/Projects/containers/ProjectDetails/utils.tsx diff --git a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseForm.schema.tsx b/apps/client/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseForm.schema.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseForm.schema.tsx rename to apps/client/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseForm.schema.tsx diff --git a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseForm.tsx b/apps/client/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseForm.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseForm.tsx rename to apps/client/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseForm.tsx diff --git a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormChargeFields.tsx b/apps/client/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormChargeFields.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormChargeFields.tsx rename to apps/client/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormChargeFields.tsx diff --git a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormContent.tsx b/apps/client/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormContent.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormContent.tsx rename to apps/client/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormContent.tsx diff --git a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormDialogContent.tsx b/apps/client/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormDialogContent.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormDialogContent.tsx rename to apps/client/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormDialogContent.tsx diff --git a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormFields.tsx b/apps/client/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormFields.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormFields.tsx rename to apps/client/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormFields.tsx diff --git a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormProvider.tsx b/apps/client/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormProvider.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormProvider.tsx rename to apps/client/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpenseFormProvider.tsx diff --git a/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpneseFormFloatingActions.tsx b/apps/client/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpneseFormFloatingActions.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectExpenseForm/ProjectExpneseFormFloatingActions.tsx rename to apps/client/src/containers/Projects/containers/ProjectExpenseForm/ProjectExpneseFormFloatingActions.tsx diff --git a/src/containers/Projects/containers/ProjectExpenseForm/index.tsx b/apps/client/src/containers/Projects/containers/ProjectExpenseForm/index.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectExpenseForm/index.tsx rename to apps/client/src/containers/Projects/containers/ProjectExpenseForm/index.tsx diff --git a/src/containers/Projects/containers/ProjectFormDialog/ProjectForm.schema.tsx b/apps/client/src/containers/Projects/containers/ProjectFormDialog/ProjectForm.schema.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectFormDialog/ProjectForm.schema.tsx rename to apps/client/src/containers/Projects/containers/ProjectFormDialog/ProjectForm.schema.tsx diff --git a/src/containers/Projects/containers/ProjectFormDialog/ProjectForm.tsx b/apps/client/src/containers/Projects/containers/ProjectFormDialog/ProjectForm.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectFormDialog/ProjectForm.tsx rename to apps/client/src/containers/Projects/containers/ProjectFormDialog/ProjectForm.tsx diff --git a/src/containers/Projects/containers/ProjectFormDialog/ProjectFormContent.tsx b/apps/client/src/containers/Projects/containers/ProjectFormDialog/ProjectFormContent.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectFormDialog/ProjectFormContent.tsx rename to apps/client/src/containers/Projects/containers/ProjectFormDialog/ProjectFormContent.tsx diff --git a/src/containers/Projects/containers/ProjectFormDialog/ProjectFormDialogContent.tsx b/apps/client/src/containers/Projects/containers/ProjectFormDialog/ProjectFormDialogContent.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectFormDialog/ProjectFormDialogContent.tsx rename to apps/client/src/containers/Projects/containers/ProjectFormDialog/ProjectFormDialogContent.tsx diff --git a/src/containers/Projects/containers/ProjectFormDialog/ProjectFormFields.tsx b/apps/client/src/containers/Projects/containers/ProjectFormDialog/ProjectFormFields.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectFormDialog/ProjectFormFields.tsx rename to apps/client/src/containers/Projects/containers/ProjectFormDialog/ProjectFormFields.tsx diff --git a/src/containers/Projects/containers/ProjectFormDialog/ProjectFormFloatingActions.tsx b/apps/client/src/containers/Projects/containers/ProjectFormDialog/ProjectFormFloatingActions.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectFormDialog/ProjectFormFloatingActions.tsx rename to apps/client/src/containers/Projects/containers/ProjectFormDialog/ProjectFormFloatingActions.tsx diff --git a/src/containers/Projects/containers/ProjectFormDialog/ProjectFormProvider.tsx b/apps/client/src/containers/Projects/containers/ProjectFormDialog/ProjectFormProvider.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectFormDialog/ProjectFormProvider.tsx rename to apps/client/src/containers/Projects/containers/ProjectFormDialog/ProjectFormProvider.tsx diff --git a/src/containers/Projects/containers/ProjectFormDialog/index.tsx b/apps/client/src/containers/Projects/containers/ProjectFormDialog/index.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectFormDialog/index.tsx rename to apps/client/src/containers/Projects/containers/ProjectFormDialog/index.tsx diff --git a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingForm.schema.tsx b/apps/client/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingForm.schema.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingForm.schema.tsx rename to apps/client/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingForm.schema.tsx diff --git a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingForm.tsx b/apps/client/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingForm.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingForm.tsx rename to apps/client/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingForm.tsx diff --git a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormContent.tsx b/apps/client/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormContent.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormContent.tsx rename to apps/client/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormContent.tsx diff --git a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormDialogContent.tsx b/apps/client/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormDialogContent.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormDialogContent.tsx rename to apps/client/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormDialogContent.tsx diff --git a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormFields.tsx b/apps/client/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormFields.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormFields.tsx rename to apps/client/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormFields.tsx diff --git a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormFloatingActions.tsx b/apps/client/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormFloatingActions.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormFloatingActions.tsx rename to apps/client/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormFloatingActions.tsx diff --git a/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormProvider.tsx b/apps/client/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormProvider.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormProvider.tsx rename to apps/client/src/containers/Projects/containers/ProjectInvoicingFormDialog/ProjectInvoicingFormProvider.tsx diff --git a/src/containers/Projects/containers/ProjectInvoicingFormDialog/index.tsx b/apps/client/src/containers/Projects/containers/ProjectInvoicingFormDialog/index.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectInvoicingFormDialog/index.tsx rename to apps/client/src/containers/Projects/containers/ProjectInvoicingFormDialog/index.tsx diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskForm.schema.tsx b/apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskForm.schema.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskForm.schema.tsx rename to apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskForm.schema.tsx diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskForm.tsx b/apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskForm.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskForm.tsx rename to apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskForm.tsx diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormContent.tsx b/apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormContent.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormContent.tsx rename to apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormContent.tsx diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormDialogContent.tsx b/apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormDialogContent.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormDialogContent.tsx rename to apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormDialogContent.tsx diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormFields.tsx b/apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormFields.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormFields.tsx rename to apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormFields.tsx diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormFloatingActions.tsx b/apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormFloatingActions.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormFloatingActions.tsx rename to apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormFloatingActions.tsx diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormProvider.tsx b/apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormProvider.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormProvider.tsx rename to apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/ProjectTaskFormProvider.tsx diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/index.tsx b/apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/index.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectTaskFormDialog/index.tsx rename to apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/index.tsx diff --git a/src/containers/Projects/containers/ProjectTaskFormDialog/utils.tsx b/apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/utils.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectTaskFormDialog/utils.tsx rename to apps/client/src/containers/Projects/containers/ProjectTaskFormDialog/utils.tsx diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryForm.schema.tsx b/apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryForm.schema.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryForm.schema.tsx rename to apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryForm.schema.tsx diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryForm.tsx b/apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryForm.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryForm.tsx rename to apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryForm.tsx diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormContent.tsx b/apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormContent.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormContent.tsx rename to apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormContent.tsx diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormDialogContent.tsx b/apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormDialogContent.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormDialogContent.tsx rename to apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormDialogContent.tsx diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormFields.tsx b/apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormFields.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormFields.tsx rename to apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormFields.tsx diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormFloatingActions.tsx b/apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormFloatingActions.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormFloatingActions.tsx rename to apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormFloatingActions.tsx diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormProvider.tsx b/apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormProvider.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormProvider.tsx rename to apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/ProjectTimeEntryFormProvider.tsx diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/index.tsx b/apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/index.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectTimeEntryFormDialog/index.tsx rename to apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/index.tsx diff --git a/src/containers/Projects/containers/ProjectTimeEntryFormDialog/utils.ts b/apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/utils.ts similarity index 100% rename from src/containers/Projects/containers/ProjectTimeEntryFormDialog/utils.ts rename to apps/client/src/containers/Projects/containers/ProjectTimeEntryFormDialog/utils.ts diff --git a/src/containers/Projects/containers/ProjectsLanding/ProjectsActionsBar.tsx b/apps/client/src/containers/Projects/containers/ProjectsLanding/ProjectsActionsBar.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectsLanding/ProjectsActionsBar.tsx rename to apps/client/src/containers/Projects/containers/ProjectsLanding/ProjectsActionsBar.tsx diff --git a/src/containers/Projects/containers/ProjectsLanding/ProjectsDataTable.tsx b/apps/client/src/containers/Projects/containers/ProjectsLanding/ProjectsDataTable.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectsLanding/ProjectsDataTable.tsx rename to apps/client/src/containers/Projects/containers/ProjectsLanding/ProjectsDataTable.tsx diff --git a/src/containers/Projects/containers/ProjectsLanding/ProjectsEmptyStatus.tsx b/apps/client/src/containers/Projects/containers/ProjectsLanding/ProjectsEmptyStatus.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectsLanding/ProjectsEmptyStatus.tsx rename to apps/client/src/containers/Projects/containers/ProjectsLanding/ProjectsEmptyStatus.tsx diff --git a/src/containers/Projects/containers/ProjectsLanding/ProjectsList.tsx b/apps/client/src/containers/Projects/containers/ProjectsLanding/ProjectsList.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectsLanding/ProjectsList.tsx rename to apps/client/src/containers/Projects/containers/ProjectsLanding/ProjectsList.tsx diff --git a/src/containers/Projects/containers/ProjectsLanding/ProjectsListProvider.tsx b/apps/client/src/containers/Projects/containers/ProjectsLanding/ProjectsListProvider.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectsLanding/ProjectsListProvider.tsx rename to apps/client/src/containers/Projects/containers/ProjectsLanding/ProjectsListProvider.tsx diff --git a/src/containers/Projects/containers/ProjectsLanding/ProjectsViewTabs.tsx b/apps/client/src/containers/Projects/containers/ProjectsLanding/ProjectsViewTabs.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectsLanding/ProjectsViewTabs.tsx rename to apps/client/src/containers/Projects/containers/ProjectsLanding/ProjectsViewTabs.tsx diff --git a/src/containers/Projects/containers/ProjectsLanding/components.tsx b/apps/client/src/containers/Projects/containers/ProjectsLanding/components.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectsLanding/components.tsx rename to apps/client/src/containers/Projects/containers/ProjectsLanding/components.tsx diff --git a/src/containers/Projects/containers/ProjectsLanding/withProjects.tsx b/apps/client/src/containers/Projects/containers/ProjectsLanding/withProjects.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectsLanding/withProjects.tsx rename to apps/client/src/containers/Projects/containers/ProjectsLanding/withProjects.tsx diff --git a/src/containers/Projects/containers/ProjectsLanding/withProjectsActions.tsx b/apps/client/src/containers/Projects/containers/ProjectsLanding/withProjectsActions.tsx similarity index 100% rename from src/containers/Projects/containers/ProjectsLanding/withProjectsActions.tsx rename to apps/client/src/containers/Projects/containers/ProjectsLanding/withProjectsActions.tsx diff --git a/src/containers/Projects/containers/common/index.ts b/apps/client/src/containers/Projects/containers/common/index.ts similarity index 100% rename from src/containers/Projects/containers/common/index.ts rename to apps/client/src/containers/Projects/containers/common/index.ts diff --git a/src/containers/Projects/containers/common/modalChargeOptions.ts b/apps/client/src/containers/Projects/containers/common/modalChargeOptions.ts similarity index 100% rename from src/containers/Projects/containers/common/modalChargeOptions.ts rename to apps/client/src/containers/Projects/containers/common/modalChargeOptions.ts diff --git a/src/containers/Projects/hooks/index.ts b/apps/client/src/containers/Projects/hooks/index.ts similarity index 100% rename from src/containers/Projects/hooks/index.ts rename to apps/client/src/containers/Projects/hooks/index.ts diff --git a/src/containers/Projects/hooks/projectBillableEntries.tsx b/apps/client/src/containers/Projects/hooks/projectBillableEntries.tsx similarity index 100% rename from src/containers/Projects/hooks/projectBillableEntries.tsx rename to apps/client/src/containers/Projects/hooks/projectBillableEntries.tsx diff --git a/src/containers/Projects/hooks/projectTimeEntry.tsx b/apps/client/src/containers/Projects/hooks/projectTimeEntry.tsx similarity index 100% rename from src/containers/Projects/hooks/projectTimeEntry.tsx rename to apps/client/src/containers/Projects/hooks/projectTimeEntry.tsx diff --git a/src/containers/Projects/hooks/projects.ts b/apps/client/src/containers/Projects/hooks/projects.ts similarity index 100% rename from src/containers/Projects/hooks/projects.ts rename to apps/client/src/containers/Projects/hooks/projects.ts diff --git a/src/containers/Projects/hooks/projectsTask.tsx b/apps/client/src/containers/Projects/hooks/projectsTask.tsx similarity index 100% rename from src/containers/Projects/hooks/projectsTask.tsx rename to apps/client/src/containers/Projects/hooks/projectsTask.tsx diff --git a/src/containers/Projects/hooks/type.ts b/apps/client/src/containers/Projects/hooks/type.ts similarity index 100% rename from src/containers/Projects/hooks/type.ts rename to apps/client/src/containers/Projects/hooks/type.ts diff --git a/src/containers/Purchases/Bills/BillForm/BillFloatingActions.tsx b/apps/client/src/containers/Purchases/Bills/BillForm/BillFloatingActions.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillForm/BillFloatingActions.tsx rename to apps/client/src/containers/Purchases/Bills/BillForm/BillFloatingActions.tsx diff --git a/src/containers/Purchases/Bills/BillForm/BillForm.schema.tsx b/apps/client/src/containers/Purchases/Bills/BillForm/BillForm.schema.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillForm/BillForm.schema.tsx rename to apps/client/src/containers/Purchases/Bills/BillForm/BillForm.schema.tsx diff --git a/src/containers/Purchases/Bills/BillForm/BillForm.tsx b/apps/client/src/containers/Purchases/Bills/BillForm/BillForm.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillForm/BillForm.tsx rename to apps/client/src/containers/Purchases/Bills/BillForm/BillForm.tsx diff --git a/src/containers/Purchases/Bills/BillForm/BillFormCurrencyTag.tsx b/apps/client/src/containers/Purchases/Bills/BillForm/BillFormCurrencyTag.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillForm/BillFormCurrencyTag.tsx rename to apps/client/src/containers/Purchases/Bills/BillForm/BillFormCurrencyTag.tsx diff --git a/src/containers/Purchases/Bills/BillForm/BillFormFooter.tsx b/apps/client/src/containers/Purchases/Bills/BillForm/BillFormFooter.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillForm/BillFormFooter.tsx rename to apps/client/src/containers/Purchases/Bills/BillForm/BillFormFooter.tsx diff --git a/src/containers/Purchases/Bills/BillForm/BillFormFooterLeft.tsx b/apps/client/src/containers/Purchases/Bills/BillForm/BillFormFooterLeft.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillForm/BillFormFooterLeft.tsx rename to apps/client/src/containers/Purchases/Bills/BillForm/BillFormFooterLeft.tsx diff --git a/src/containers/Purchases/Bills/BillForm/BillFormFooterRight.tsx b/apps/client/src/containers/Purchases/Bills/BillForm/BillFormFooterRight.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillForm/BillFormFooterRight.tsx rename to apps/client/src/containers/Purchases/Bills/BillForm/BillFormFooterRight.tsx diff --git a/src/containers/Purchases/Bills/BillForm/BillFormHeader.tsx b/apps/client/src/containers/Purchases/Bills/BillForm/BillFormHeader.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillForm/BillFormHeader.tsx rename to apps/client/src/containers/Purchases/Bills/BillForm/BillFormHeader.tsx diff --git a/src/containers/Purchases/Bills/BillForm/BillFormHeaderFields.tsx b/apps/client/src/containers/Purchases/Bills/BillForm/BillFormHeaderFields.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillForm/BillFormHeaderFields.tsx rename to apps/client/src/containers/Purchases/Bills/BillForm/BillFormHeaderFields.tsx diff --git a/src/containers/Purchases/Bills/BillForm/BillFormPage.tsx b/apps/client/src/containers/Purchases/Bills/BillForm/BillFormPage.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillForm/BillFormPage.tsx rename to apps/client/src/containers/Purchases/Bills/BillForm/BillFormPage.tsx diff --git a/src/containers/Purchases/Bills/BillForm/BillFormProvider.tsx b/apps/client/src/containers/Purchases/Bills/BillForm/BillFormProvider.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillForm/BillFormProvider.tsx rename to apps/client/src/containers/Purchases/Bills/BillForm/BillFormProvider.tsx diff --git a/src/containers/Purchases/Bills/BillForm/BillFormTopBar.tsx b/apps/client/src/containers/Purchases/Bills/BillForm/BillFormTopBar.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillForm/BillFormTopBar.tsx rename to apps/client/src/containers/Purchases/Bills/BillForm/BillFormTopBar.tsx diff --git a/src/containers/Purchases/Bills/BillForm/BillItemsEntriesEditor.tsx b/apps/client/src/containers/Purchases/Bills/BillForm/BillItemsEntriesEditor.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillForm/BillItemsEntriesEditor.tsx rename to apps/client/src/containers/Purchases/Bills/BillForm/BillItemsEntriesEditor.tsx diff --git a/src/containers/Purchases/Bills/BillForm/components.tsx b/apps/client/src/containers/Purchases/Bills/BillForm/components.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillForm/components.tsx rename to apps/client/src/containers/Purchases/Bills/BillForm/components.tsx diff --git a/src/containers/Purchases/Bills/BillForm/utils.tsx b/apps/client/src/containers/Purchases/Bills/BillForm/utils.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillForm/utils.tsx rename to apps/client/src/containers/Purchases/Bills/BillForm/utils.tsx diff --git a/src/containers/Purchases/Bills/BillUniversalSearch.tsx b/apps/client/src/containers/Purchases/Bills/BillUniversalSearch.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillUniversalSearch.tsx rename to apps/client/src/containers/Purchases/Bills/BillUniversalSearch.tsx diff --git a/src/containers/Purchases/Bills/BillsLanding/BillsActionsBar.tsx b/apps/client/src/containers/Purchases/Bills/BillsLanding/BillsActionsBar.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillsLanding/BillsActionsBar.tsx rename to apps/client/src/containers/Purchases/Bills/BillsLanding/BillsActionsBar.tsx diff --git a/src/containers/Purchases/Bills/BillsLanding/BillsAlerts.tsx b/apps/client/src/containers/Purchases/Bills/BillsLanding/BillsAlerts.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillsLanding/BillsAlerts.tsx rename to apps/client/src/containers/Purchases/Bills/BillsLanding/BillsAlerts.tsx diff --git a/src/containers/Purchases/Bills/BillsLanding/BillsEmptyStatus.tsx b/apps/client/src/containers/Purchases/Bills/BillsLanding/BillsEmptyStatus.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillsLanding/BillsEmptyStatus.tsx rename to apps/client/src/containers/Purchases/Bills/BillsLanding/BillsEmptyStatus.tsx diff --git a/src/containers/Purchases/Bills/BillsLanding/BillsList.tsx b/apps/client/src/containers/Purchases/Bills/BillsLanding/BillsList.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillsLanding/BillsList.tsx rename to apps/client/src/containers/Purchases/Bills/BillsLanding/BillsList.tsx diff --git a/src/containers/Purchases/Bills/BillsLanding/BillsListProvider.tsx b/apps/client/src/containers/Purchases/Bills/BillsLanding/BillsListProvider.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillsLanding/BillsListProvider.tsx rename to apps/client/src/containers/Purchases/Bills/BillsLanding/BillsListProvider.tsx diff --git a/src/containers/Purchases/Bills/BillsLanding/BillsTable.tsx b/apps/client/src/containers/Purchases/Bills/BillsLanding/BillsTable.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillsLanding/BillsTable.tsx rename to apps/client/src/containers/Purchases/Bills/BillsLanding/BillsTable.tsx diff --git a/src/containers/Purchases/Bills/BillsLanding/BillsViewsTabs.tsx b/apps/client/src/containers/Purchases/Bills/BillsLanding/BillsViewsTabs.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillsLanding/BillsViewsTabs.tsx rename to apps/client/src/containers/Purchases/Bills/BillsLanding/BillsViewsTabs.tsx diff --git a/src/containers/Purchases/Bills/BillsLanding/components.tsx b/apps/client/src/containers/Purchases/Bills/BillsLanding/components.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillsLanding/components.tsx rename to apps/client/src/containers/Purchases/Bills/BillsLanding/components.tsx diff --git a/src/containers/Purchases/Bills/BillsLanding/withBills.tsx b/apps/client/src/containers/Purchases/Bills/BillsLanding/withBills.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillsLanding/withBills.tsx rename to apps/client/src/containers/Purchases/Bills/BillsLanding/withBills.tsx diff --git a/src/containers/Purchases/Bills/BillsLanding/withBillsActions.tsx b/apps/client/src/containers/Purchases/Bills/BillsLanding/withBillsActions.tsx similarity index 100% rename from src/containers/Purchases/Bills/BillsLanding/withBillsActions.tsx rename to apps/client/src/containers/Purchases/Bills/BillsLanding/withBillsActions.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFloatingActions.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFloatingActions.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFloatingActions.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFloatingActions.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteForm.schema.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteForm.schema.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteForm.schema.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteForm.schema.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteForm.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteForm.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteForm.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteForm.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormCurrencyTag.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormCurrencyTag.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormCurrencyTag.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormCurrencyTag.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormDialogs.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormDialogs.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormDialogs.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormDialogs.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooter.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooter.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooter.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooter.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooterLeft.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooterLeft.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooterLeft.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooterLeft.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooterRight.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooterRight.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooterRight.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormFooterRight.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormHeader.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormHeader.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormHeader.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormHeader.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormHeaderFields.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormHeaderFields.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormHeaderFields.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormHeaderFields.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormPage.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormPage.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormPage.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormPage.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormProvider.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormProvider.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormProvider.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormProvider.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormTopBar.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormTopBar.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormTopBar.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteFormTopBar.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteItemsEntriesEditor.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteItemsEntriesEditor.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteItemsEntriesEditor.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/VendorCreditNoteItemsEntriesEditor.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/components.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/components.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNoteForm/components.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/components.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNoteForm/utils.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/utils.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNoteForm/utils.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNoteForm/utils.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteActionsBar.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteActionsBar.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteActionsBar.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteActionsBar.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteDataTable.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteDataTable.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteDataTable.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteDataTable.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteEmptyStatus.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteEmptyStatus.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteEmptyStatus.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteEmptyStatus.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteListProvider.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteListProvider.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteListProvider.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteListProvider.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteViewTabs.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteViewTabs.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteViewTabs.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNoteViewTabs.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNotesList.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNotesList.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNotesList.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/VendorsCreditNotesList.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/components.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/components.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNotesLanding/components.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/components.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/utils.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/utils.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNotesLanding/utils.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/utils.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorActions.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorActions.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorActions.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorActions.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorsCreditNotes.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorsCreditNotes.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorsCreditNotes.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorsCreditNotes.tsx diff --git a/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorsCreditNotesActions.tsx b/apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorsCreditNotesActions.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorsCreditNotesActions.tsx rename to apps/client/src/containers/Purchases/CreditNotes/CreditNotesLanding/withVendorsCreditNotesActions.tsx diff --git a/src/containers/Purchases/CreditNotes/VendorCreditIUniversalSearchBind.tsx b/apps/client/src/containers/Purchases/CreditNotes/VendorCreditIUniversalSearchBind.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/VendorCreditIUniversalSearchBind.tsx rename to apps/client/src/containers/Purchases/CreditNotes/VendorCreditIUniversalSearchBind.tsx diff --git a/src/containers/Purchases/CreditNotes/VendorCreditNotesAlerts.tsx b/apps/client/src/containers/Purchases/CreditNotes/VendorCreditNotesAlerts.tsx similarity index 100% rename from src/containers/Purchases/CreditNotes/VendorCreditNotesAlerts.tsx rename to apps/client/src/containers/Purchases/CreditNotes/VendorCreditNotesAlerts.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeEntriesTable.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeEntriesTable.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeEntriesTable.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeEntriesTable.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFloatingActions.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFloatingActions.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFloatingActions.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFloatingActions.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFooter.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFooter.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFooter.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFooter.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeForm.schema.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeForm.schema.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeForm.schema.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeForm.schema.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeForm.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeForm.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeForm.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeForm.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormBody.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormBody.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormBody.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormBody.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormCurrencyTag.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormCurrencyTag.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormCurrencyTag.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormCurrencyTag.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormFooterLeft.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormFooterLeft.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormFooterLeft.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormFooterLeft.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormFooterRight.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormFooterRight.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormFooterRight.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormFooterRight.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormHeader.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormHeader.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormHeader.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormHeader.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormHeaderFields.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormHeaderFields.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormHeaderFields.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormHeaderFields.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormPage.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormPage.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormPage.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormPage.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormProvider.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormProvider.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormProvider.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormProvider.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormTopBar.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormTopBar.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormTopBar.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeFormTopBar.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeInnerProvider.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeInnerProvider.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeInnerProvider.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentForm/PaymentMadeInnerProvider.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/components.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentForm/components.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentForm/components.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentForm/components.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentForm/utils.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentForm/utils.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentForm/utils.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentForm/utils.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentMadeUniversalSearch.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentMadeUniversalSearch.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentMadeUniversalSearch.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentMadeUniversalSearch.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentMadesAlerts.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentMadesAlerts.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentMadesAlerts.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentMadesAlerts.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeActionsBar.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeActionsBar.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeActionsBar.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeActionsBar.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeList.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeList.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeList.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeList.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeViewTabs.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeViewTabs.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeViewTabs.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadeViewTabs.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesEmptyStatus.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesEmptyStatus.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesEmptyStatus.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesEmptyStatus.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesListProvider.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesListProvider.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesListProvider.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesListProvider.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesTable.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesTable.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesTable.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesTable.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesView.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesView.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesView.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMadesView.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMdesListProvider.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMdesListProvider.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMdesListProvider.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/PaymentMdesListProvider.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/components.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/components.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentsLanding/components.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/components.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/utils.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/utils.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentsLanding/utils.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/utils.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMade.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMade.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMade.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMade.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMadeActions.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMadeActions.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMadeActions.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMadeActions.tsx diff --git a/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMadeDetail.tsx b/apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMadeDetail.tsx similarity index 100% rename from src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMadeDetail.tsx rename to apps/client/src/containers/Purchases/PaymentMades/PaymentsLanding/withPaymentMadeDetail.tsx diff --git a/src/containers/QuickNewDropdown/QuickNewDropdown.tsx b/apps/client/src/containers/QuickNewDropdown/QuickNewDropdown.tsx similarity index 100% rename from src/containers/QuickNewDropdown/QuickNewDropdown.tsx rename to apps/client/src/containers/QuickNewDropdown/QuickNewDropdown.tsx diff --git a/src/containers/Resources/withResourceDetails.tsx b/apps/client/src/containers/Resources/withResourceDetails.tsx similarity index 100% rename from src/containers/Resources/withResourceDetails.tsx rename to apps/client/src/containers/Resources/withResourceDetails.tsx diff --git a/src/containers/Resources/withResourcesActions.tsx b/apps/client/src/containers/Resources/withResourcesActions.tsx similarity index 100% rename from src/containers/Resources/withResourcesActions.tsx rename to apps/client/src/containers/Resources/withResourcesActions.tsx diff --git a/src/containers/Router/withRoute.tsx b/apps/client/src/containers/Router/withRoute.tsx similarity index 100% rename from src/containers/Router/withRoute.tsx rename to apps/client/src/containers/Router/withRoute.tsx diff --git a/src/containers/Router/withRouteActions.tsx b/apps/client/src/containers/Router/withRouteActions.tsx similarity index 100% rename from src/containers/Router/withRouteActions.tsx rename to apps/client/src/containers/Router/withRouteActions.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFloatingActions.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFloatingActions.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFloatingActions.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFloatingActions.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteForm.schema.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteForm.schema.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteForm.schema.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteForm.schema.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteForm.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteForm.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteForm.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteForm.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormDialogs.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormDialogs.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormDialogs.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormDialogs.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooter.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooter.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooter.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooter.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooterLeft.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooterLeft.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooterLeft.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooterLeft.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooterRight.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooterRight.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooterRight.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormFooterRight.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormHeader.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormHeader.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormHeader.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormHeader.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormHeaderFields.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormHeaderFields.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormHeaderFields.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormHeaderFields.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormPage.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormPage.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormPage.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormPage.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormProvider.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormProvider.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormProvider.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormProvider.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormTopBar.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormTopBar.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormTopBar.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteFormTopBar.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteItemsEntriesEditorField.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteItemsEntriesEditorField.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteItemsEntriesEditorField.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNoteItemsEntriesEditorField.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNotetFormCurrencyTag.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNotetFormCurrencyTag.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNoteForm/CreditNotetFormCurrencyTag.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/CreditNotetFormCurrencyTag.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/components.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/components.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNoteForm/components.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/components.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNoteForm/utils.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/utils.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNoteForm/utils.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNoteForm/utils.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNoteUniversalSearch.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNoteUniversalSearch.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNoteUniversalSearch.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNoteUniversalSearch.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNotesAlerts.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNotesAlerts.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNotesAlerts.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNotesAlerts.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesActionsBar.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesActionsBar.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesActionsBar.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesActionsBar.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesDataTable.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesDataTable.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesDataTable.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesDataTable.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesEmptyStatus.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesEmptyStatus.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesEmptyStatus.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesEmptyStatus.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesList.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesList.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesList.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesList.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesListProvider.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesListProvider.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesListProvider.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesListProvider.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesViewTabs.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesViewTabs.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesViewTabs.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/CreditNotesViewTabs.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/components.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/components.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNotesLanding/components.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/components.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/utils.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/utils.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNotesLanding/utils.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/utils.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/withCreditNotes.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/withCreditNotes.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNotesLanding/withCreditNotes.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/withCreditNotes.tsx diff --git a/src/containers/Sales/CreditNotes/CreditNotesLanding/withCreditNotesActions.tsx b/apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/withCreditNotesActions.tsx similarity index 100% rename from src/containers/Sales/CreditNotes/CreditNotesLanding/withCreditNotesActions.tsx rename to apps/client/src/containers/Sales/CreditNotes/CreditNotesLanding/withCreditNotesActions.tsx diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFloatingActions.tsx b/apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFloatingActions.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimateForm/EstimateFloatingActions.tsx rename to apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFloatingActions.tsx diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateForm.schema.tsx b/apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateForm.schema.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimateForm/EstimateForm.schema.tsx rename to apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateForm.schema.tsx diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateForm.tsx b/apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateForm.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimateForm/EstimateForm.tsx rename to apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateForm.tsx diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormCurrencyTag.tsx b/apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormCurrencyTag.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimateForm/EstimateFormCurrencyTag.tsx rename to apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormCurrencyTag.tsx diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormDialogs.tsx b/apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormDialogs.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimateForm/EstimateFormDialogs.tsx rename to apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormDialogs.tsx diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooter.tsx b/apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooter.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimateForm/EstimateFormFooter.tsx rename to apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooter.tsx diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooterLeft.tsx b/apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooterLeft.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimateForm/EstimateFormFooterLeft.tsx rename to apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooterLeft.tsx diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooterRight.tsx b/apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooterRight.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimateForm/EstimateFormFooterRight.tsx rename to apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormFooterRight.tsx diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormHeader.tsx b/apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormHeader.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimateForm/EstimateFormHeader.tsx rename to apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormHeader.tsx diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormHeaderFields.tsx b/apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormHeaderFields.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimateForm/EstimateFormHeaderFields.tsx rename to apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormHeaderFields.tsx diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormPage.tsx b/apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormPage.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimateForm/EstimateFormPage.tsx rename to apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormPage.tsx diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateFormProvider.tsx b/apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormProvider.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimateForm/EstimateFormProvider.tsx rename to apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateFormProvider.tsx diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimateItemsEntriesField.tsx b/apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateItemsEntriesField.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimateForm/EstimateItemsEntriesField.tsx rename to apps/client/src/containers/Sales/Estimates/EstimateForm/EstimateItemsEntriesField.tsx diff --git a/src/containers/Sales/Estimates/EstimateForm/EstimtaeFormTopBar.tsx b/apps/client/src/containers/Sales/Estimates/EstimateForm/EstimtaeFormTopBar.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimateForm/EstimtaeFormTopBar.tsx rename to apps/client/src/containers/Sales/Estimates/EstimateForm/EstimtaeFormTopBar.tsx diff --git a/src/containers/Sales/Estimates/EstimateForm/components.tsx b/apps/client/src/containers/Sales/Estimates/EstimateForm/components.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimateForm/components.tsx rename to apps/client/src/containers/Sales/Estimates/EstimateForm/components.tsx diff --git a/src/containers/Sales/Estimates/EstimateForm/utils.tsx b/apps/client/src/containers/Sales/Estimates/EstimateForm/utils.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimateForm/utils.tsx rename to apps/client/src/containers/Sales/Estimates/EstimateForm/utils.tsx diff --git a/src/containers/Sales/Estimates/EstimatesAlerts.tsx b/apps/client/src/containers/Sales/Estimates/EstimatesAlerts.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimatesAlerts.tsx rename to apps/client/src/containers/Sales/Estimates/EstimatesAlerts.tsx diff --git a/src/containers/Sales/Estimates/EstimatesLanding/EstimateUniversalSearch.tsx b/apps/client/src/containers/Sales/Estimates/EstimatesLanding/EstimateUniversalSearch.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimatesLanding/EstimateUniversalSearch.tsx rename to apps/client/src/containers/Sales/Estimates/EstimatesLanding/EstimateUniversalSearch.tsx diff --git a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesActionsBar.tsx b/apps/client/src/containers/Sales/Estimates/EstimatesLanding/EstimatesActionsBar.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimatesLanding/EstimatesActionsBar.tsx rename to apps/client/src/containers/Sales/Estimates/EstimatesLanding/EstimatesActionsBar.tsx diff --git a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesDataTable.tsx b/apps/client/src/containers/Sales/Estimates/EstimatesLanding/EstimatesDataTable.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimatesLanding/EstimatesDataTable.tsx rename to apps/client/src/containers/Sales/Estimates/EstimatesLanding/EstimatesDataTable.tsx diff --git a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesEmptyStatus.tsx b/apps/client/src/containers/Sales/Estimates/EstimatesLanding/EstimatesEmptyStatus.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimatesLanding/EstimatesEmptyStatus.tsx rename to apps/client/src/containers/Sales/Estimates/EstimatesLanding/EstimatesEmptyStatus.tsx diff --git a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesList.tsx b/apps/client/src/containers/Sales/Estimates/EstimatesLanding/EstimatesList.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimatesLanding/EstimatesList.tsx rename to apps/client/src/containers/Sales/Estimates/EstimatesLanding/EstimatesList.tsx diff --git a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesListProvider.tsx b/apps/client/src/containers/Sales/Estimates/EstimatesLanding/EstimatesListProvider.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimatesLanding/EstimatesListProvider.tsx rename to apps/client/src/containers/Sales/Estimates/EstimatesLanding/EstimatesListProvider.tsx diff --git a/src/containers/Sales/Estimates/EstimatesLanding/EstimatesViewTabs.tsx b/apps/client/src/containers/Sales/Estimates/EstimatesLanding/EstimatesViewTabs.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimatesLanding/EstimatesViewTabs.tsx rename to apps/client/src/containers/Sales/Estimates/EstimatesLanding/EstimatesViewTabs.tsx diff --git a/src/containers/Sales/Estimates/EstimatesLanding/components.tsx b/apps/client/src/containers/Sales/Estimates/EstimatesLanding/components.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimatesLanding/components.tsx rename to apps/client/src/containers/Sales/Estimates/EstimatesLanding/components.tsx diff --git a/src/containers/Sales/Estimates/EstimatesLanding/withEstimates.tsx b/apps/client/src/containers/Sales/Estimates/EstimatesLanding/withEstimates.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimatesLanding/withEstimates.tsx rename to apps/client/src/containers/Sales/Estimates/EstimatesLanding/withEstimates.tsx diff --git a/src/containers/Sales/Estimates/EstimatesLanding/withEstimatesActions.tsx b/apps/client/src/containers/Sales/Estimates/EstimatesLanding/withEstimatesActions.tsx similarity index 100% rename from src/containers/Sales/Estimates/EstimatesLanding/withEstimatesActions.tsx rename to apps/client/src/containers/Sales/Estimates/EstimatesLanding/withEstimatesActions.tsx diff --git a/src/containers/Sales/Estimates/withEstimateDetail.tsx b/apps/client/src/containers/Sales/Estimates/withEstimateDetail.tsx similarity index 100% rename from src/containers/Sales/Estimates/withEstimateDetail.tsx rename to apps/client/src/containers/Sales/Estimates/withEstimateDetail.tsx diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFloatingActions.tsx b/apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFloatingActions.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoiceForm/InvoiceFloatingActions.tsx rename to apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFloatingActions.tsx diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceForm.schema.tsx b/apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceForm.schema.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoiceForm/InvoiceForm.schema.tsx rename to apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceForm.schema.tsx diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceForm.tsx b/apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceForm.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoiceForm/InvoiceForm.tsx rename to apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceForm.tsx diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormCurrencyTag.tsx b/apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormCurrencyTag.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoiceForm/InvoiceFormCurrencyTag.tsx rename to apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormCurrencyTag.tsx diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormDialogs.tsx b/apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormDialogs.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoiceForm/InvoiceFormDialogs.tsx rename to apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormDialogs.tsx diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooter.tsx b/apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooter.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooter.tsx rename to apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooter.tsx diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooterLeft.tsx b/apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooterLeft.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooterLeft.tsx rename to apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooterLeft.tsx diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooterRight.tsx b/apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooterRight.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooterRight.tsx rename to apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormFooterRight.tsx diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormHeader.tsx b/apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormHeader.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoiceForm/InvoiceFormHeader.tsx rename to apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormHeader.tsx diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormHeaderFields.tsx b/apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormHeaderFields.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoiceForm/InvoiceFormHeaderFields.tsx rename to apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormHeaderFields.tsx diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormPage.tsx b/apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormPage.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoiceForm/InvoiceFormPage.tsx rename to apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormPage.tsx diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormProvider.tsx b/apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormProvider.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoiceForm/InvoiceFormProvider.tsx rename to apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormProvider.tsx diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormTopBar.tsx b/apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormTopBar.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoiceForm/InvoiceFormTopBar.tsx rename to apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceFormTopBar.tsx diff --git a/src/containers/Sales/Invoices/InvoiceForm/InvoiceItemsEntriesEditorField.tsx b/apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceItemsEntriesEditorField.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoiceForm/InvoiceItemsEntriesEditorField.tsx rename to apps/client/src/containers/Sales/Invoices/InvoiceForm/InvoiceItemsEntriesEditorField.tsx diff --git a/src/containers/Sales/Invoices/InvoiceForm/components.tsx b/apps/client/src/containers/Sales/Invoices/InvoiceForm/components.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoiceForm/components.tsx rename to apps/client/src/containers/Sales/Invoices/InvoiceForm/components.tsx diff --git a/src/containers/Sales/Invoices/InvoiceForm/utils.tsx b/apps/client/src/containers/Sales/Invoices/InvoiceForm/utils.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoiceForm/utils.tsx rename to apps/client/src/containers/Sales/Invoices/InvoiceForm/utils.tsx diff --git a/src/containers/Sales/Invoices/InvoiceUniversalSearch.tsx b/apps/client/src/containers/Sales/Invoices/InvoiceUniversalSearch.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoiceUniversalSearch.tsx rename to apps/client/src/containers/Sales/Invoices/InvoiceUniversalSearch.tsx diff --git a/src/containers/Sales/Invoices/InvoicesAlerts.tsx b/apps/client/src/containers/Sales/Invoices/InvoicesAlerts.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoicesAlerts.tsx rename to apps/client/src/containers/Sales/Invoices/InvoicesAlerts.tsx diff --git a/src/containers/Sales/Invoices/InvoicesLanding/InvoiceViewTabs.tsx b/apps/client/src/containers/Sales/Invoices/InvoicesLanding/InvoiceViewTabs.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoicesLanding/InvoiceViewTabs.tsx rename to apps/client/src/containers/Sales/Invoices/InvoicesLanding/InvoiceViewTabs.tsx diff --git a/src/containers/Sales/Invoices/InvoicesLanding/InvoicesActionsBar.tsx b/apps/client/src/containers/Sales/Invoices/InvoicesLanding/InvoicesActionsBar.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoicesLanding/InvoicesActionsBar.tsx rename to apps/client/src/containers/Sales/Invoices/InvoicesLanding/InvoicesActionsBar.tsx diff --git a/src/containers/Sales/Invoices/InvoicesLanding/InvoicesDataTable.tsx b/apps/client/src/containers/Sales/Invoices/InvoicesLanding/InvoicesDataTable.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoicesLanding/InvoicesDataTable.tsx rename to apps/client/src/containers/Sales/Invoices/InvoicesLanding/InvoicesDataTable.tsx diff --git a/src/containers/Sales/Invoices/InvoicesLanding/InvoicesEmptyStatus.tsx b/apps/client/src/containers/Sales/Invoices/InvoicesLanding/InvoicesEmptyStatus.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoicesLanding/InvoicesEmptyStatus.tsx rename to apps/client/src/containers/Sales/Invoices/InvoicesLanding/InvoicesEmptyStatus.tsx diff --git a/src/containers/Sales/Invoices/InvoicesLanding/InvoicesList.tsx b/apps/client/src/containers/Sales/Invoices/InvoicesLanding/InvoicesList.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoicesLanding/InvoicesList.tsx rename to apps/client/src/containers/Sales/Invoices/InvoicesLanding/InvoicesList.tsx diff --git a/src/containers/Sales/Invoices/InvoicesLanding/InvoicesListProvider.tsx b/apps/client/src/containers/Sales/Invoices/InvoicesLanding/InvoicesListProvider.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoicesLanding/InvoicesListProvider.tsx rename to apps/client/src/containers/Sales/Invoices/InvoicesLanding/InvoicesListProvider.tsx diff --git a/src/containers/Sales/Invoices/InvoicesLanding/components.tsx b/apps/client/src/containers/Sales/Invoices/InvoicesLanding/components.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoicesLanding/components.tsx rename to apps/client/src/containers/Sales/Invoices/InvoicesLanding/components.tsx diff --git a/src/containers/Sales/Invoices/InvoicesLanding/withInvoiceActions.tsx b/apps/client/src/containers/Sales/Invoices/InvoicesLanding/withInvoiceActions.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoicesLanding/withInvoiceActions.tsx rename to apps/client/src/containers/Sales/Invoices/InvoicesLanding/withInvoiceActions.tsx diff --git a/src/containers/Sales/Invoices/InvoicesLanding/withInvoices.tsx b/apps/client/src/containers/Sales/Invoices/InvoicesLanding/withInvoices.tsx similarity index 100% rename from src/containers/Sales/Invoices/InvoicesLanding/withInvoices.tsx rename to apps/client/src/containers/Sales/Invoices/InvoicesLanding/withInvoices.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveAlerts.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveAlerts.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveAlerts.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveAlerts.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFloatingActions.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFloatingActions.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFloatingActions.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFloatingActions.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveForm.schema.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveForm.schema.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveForm.schema.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveForm.schema.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveForm.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveForm.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveForm.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveForm.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormAlerts.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormAlerts.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormAlerts.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormAlerts.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormBody.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormBody.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormBody.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormBody.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormCurrencyTag.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormCurrencyTag.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormCurrencyTag.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormCurrencyTag.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormDialogs.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormDialogs.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormDialogs.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormDialogs.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFooter.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFooter.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFooter.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFooter.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFootetLeft.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFootetLeft.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFootetLeft.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFootetLeft.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFootetRight.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFootetRight.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFootetRight.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormFootetRight.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormHeader.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormHeader.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormHeader.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormHeader.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormPage.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormPage.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormPage.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormPage.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormProvider.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormProvider.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormProvider.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormProvider.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormTopBar.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormTopBar.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormTopBar.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveFormTopBar.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveHeaderFields.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveHeaderFields.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveHeaderFields.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveHeaderFields.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveInnerProvider.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveInnerProvider.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveInnerProvider.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveInnerProvider.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveItemsTable.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveItemsTable.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveItemsTable.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/PaymentReceiveItemsTable.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/components.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/components.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/components.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/components.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveForm/utils.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/utils.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveForm/utils.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveForm/utils.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentReceiveUniversalSearch.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveUniversalSearch.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentReceiveUniversalSearch.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentReceiveUniversalSearch.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiptsListProvider.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiptsListProvider.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiptsListProvider.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiptsListProvider.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiveActionsBar.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiveActionsBar.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiveActionsBar.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiveActionsBar.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiveViewTabs.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiveViewTabs.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiveViewTabs.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceiveViewTabs.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesEmptyStatus.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesEmptyStatus.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesEmptyStatus.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesEmptyStatus.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesList.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesList.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesList.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesList.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesListProvider.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesListProvider.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesListProvider.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesListProvider.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesTable.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesTable.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesTable.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/PaymentReceivesTable.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/components.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/components.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentsLanding/components.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/components.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceiveDetail.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceiveDetail.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceiveDetail.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceiveDetail.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceives.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceives.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceives.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceives.tsx diff --git a/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceivesActions.tsx b/apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceivesActions.tsx similarity index 100% rename from src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceivesActions.tsx rename to apps/client/src/containers/Sales/PaymentReceives/PaymentsLanding/withPaymentReceivesActions.tsx diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptForm.schema.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptForm.schema.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptForm/ReceiptForm.schema.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptForm.schema.tsx diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptForm.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptForm.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptForm/ReceiptForm.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptForm.tsx diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormCurrencyTag.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormCurrencyTag.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptForm/ReceiptFormCurrencyTag.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormCurrencyTag.tsx diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormDialogs.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormDialogs.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptForm/ReceiptFormDialogs.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormDialogs.tsx diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFloatingActions.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFloatingActions.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFloatingActions.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFloatingActions.tsx diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooter.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooter.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooter.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooter.tsx diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooterLeft.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooterLeft.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooterLeft.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooterLeft.tsx diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooterRight.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooterRight.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooterRight.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormFooterRight.tsx diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormHeader.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormHeader.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptForm/ReceiptFormHeader.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormHeader.tsx diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormHeaderFields.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormHeaderFields.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptForm/ReceiptFormHeaderFields.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormHeaderFields.tsx diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormPage.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormPage.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptForm/ReceiptFormPage.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormPage.tsx diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormProvider.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormProvider.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptForm/ReceiptFormProvider.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormProvider.tsx diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormTopbar.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormTopbar.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptForm/ReceiptFormTopbar.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptFormTopbar.tsx diff --git a/src/containers/Sales/Receipts/ReceiptForm/ReceiptItemsEntriesEditor.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptItemsEntriesEditor.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptForm/ReceiptItemsEntriesEditor.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptForm/ReceiptItemsEntriesEditor.tsx diff --git a/src/containers/Sales/Receipts/ReceiptForm/components.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptForm/components.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptForm/components.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptForm/components.tsx diff --git a/src/containers/Sales/Receipts/ReceiptForm/utils.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptForm/utils.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptForm/utils.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptForm/utils.tsx diff --git a/src/containers/Sales/Receipts/ReceiptUniversalSearch.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptUniversalSearch.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptUniversalSearch.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptUniversalSearch.tsx diff --git a/src/containers/Sales/Receipts/ReceiptsAlerts.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptsAlerts.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptsAlerts.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptsAlerts.tsx diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptActionsBar.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptActionsBar.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptsLanding/ReceiptActionsBar.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptActionsBar.tsx diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptViewTabs.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptViewTabs.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptsLanding/ReceiptViewTabs.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptViewTabs.tsx diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsEmptyStatus.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsEmptyStatus.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsEmptyStatus.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsEmptyStatus.tsx diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsList.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsList.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsList.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsList.tsx diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsListProvider.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsListProvider.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsListProvider.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsListProvider.tsx diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsTable.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsTable.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsTable.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptsLanding/ReceiptsTable.tsx diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/components.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptsLanding/components.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptsLanding/components.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptsLanding/components.tsx diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/withReceipts.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptsLanding/withReceipts.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptsLanding/withReceipts.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptsLanding/withReceipts.tsx diff --git a/src/containers/Sales/Receipts/ReceiptsLanding/withReceiptsActions.tsx b/apps/client/src/containers/Sales/Receipts/ReceiptsLanding/withReceiptsActions.tsx similarity index 100% rename from src/containers/Sales/Receipts/ReceiptsLanding/withReceiptsActions.tsx rename to apps/client/src/containers/Sales/Receipts/ReceiptsLanding/withReceiptsActions.tsx diff --git a/src/containers/Settings/withSettings.tsx b/apps/client/src/containers/Settings/withSettings.tsx similarity index 100% rename from src/containers/Settings/withSettings.tsx rename to apps/client/src/containers/Settings/withSettings.tsx diff --git a/src/containers/Settings/withSettingsActions.tsx b/apps/client/src/containers/Settings/withSettingsActions.tsx similarity index 100% rename from src/containers/Settings/withSettingsActions.tsx rename to apps/client/src/containers/Settings/withSettingsActions.tsx diff --git a/src/containers/Setup/SetupCongratsPage.tsx b/apps/client/src/containers/Setup/SetupCongratsPage.tsx similarity index 100% rename from src/containers/Setup/SetupCongratsPage.tsx rename to apps/client/src/containers/Setup/SetupCongratsPage.tsx diff --git a/src/containers/Setup/SetupDialogs.tsx b/apps/client/src/containers/Setup/SetupDialogs.tsx similarity index 100% rename from src/containers/Setup/SetupDialogs.tsx rename to apps/client/src/containers/Setup/SetupDialogs.tsx diff --git a/src/containers/Setup/SetupInitializingForm.tsx b/apps/client/src/containers/Setup/SetupInitializingForm.tsx similarity index 100% rename from src/containers/Setup/SetupInitializingForm.tsx rename to apps/client/src/containers/Setup/SetupInitializingForm.tsx diff --git a/src/containers/Setup/SetupLeftSection.tsx b/apps/client/src/containers/Setup/SetupLeftSection.tsx similarity index 100% rename from src/containers/Setup/SetupLeftSection.tsx rename to apps/client/src/containers/Setup/SetupLeftSection.tsx diff --git a/src/containers/Setup/SetupOrganization.schema.tsx b/apps/client/src/containers/Setup/SetupOrganization.schema.tsx similarity index 100% rename from src/containers/Setup/SetupOrganization.schema.tsx rename to apps/client/src/containers/Setup/SetupOrganization.schema.tsx diff --git a/src/containers/Setup/SetupOrganizationForm.tsx b/apps/client/src/containers/Setup/SetupOrganizationForm.tsx similarity index 100% rename from src/containers/Setup/SetupOrganizationForm.tsx rename to apps/client/src/containers/Setup/SetupOrganizationForm.tsx diff --git a/src/containers/Setup/SetupOrganizationPage.tsx b/apps/client/src/containers/Setup/SetupOrganizationPage.tsx similarity index 100% rename from src/containers/Setup/SetupOrganizationPage.tsx rename to apps/client/src/containers/Setup/SetupOrganizationPage.tsx diff --git a/src/containers/Setup/SetupRightSection.tsx b/apps/client/src/containers/Setup/SetupRightSection.tsx similarity index 100% rename from src/containers/Setup/SetupRightSection.tsx rename to apps/client/src/containers/Setup/SetupRightSection.tsx diff --git a/src/containers/Setup/SetupSteps.tsx b/apps/client/src/containers/Setup/SetupSteps.tsx similarity index 100% rename from src/containers/Setup/SetupSteps.tsx rename to apps/client/src/containers/Setup/SetupSteps.tsx diff --git a/src/containers/Setup/SetupSubscription.tsx b/apps/client/src/containers/Setup/SetupSubscription.tsx similarity index 100% rename from src/containers/Setup/SetupSubscription.tsx rename to apps/client/src/containers/Setup/SetupSubscription.tsx diff --git a/src/containers/Setup/SetupSubscription/SetupSubscriptionForm.tsx b/apps/client/src/containers/Setup/SetupSubscription/SetupSubscriptionForm.tsx similarity index 100% rename from src/containers/Setup/SetupSubscription/SetupSubscriptionForm.tsx rename to apps/client/src/containers/Setup/SetupSubscription/SetupSubscriptionForm.tsx diff --git a/src/containers/Setup/SetupSubscription/SubscriptionPaymentsMethodsSection.tsx b/apps/client/src/containers/Setup/SetupSubscription/SubscriptionPaymentsMethodsSection.tsx similarity index 100% rename from src/containers/Setup/SetupSubscription/SubscriptionPaymentsMethodsSection.tsx rename to apps/client/src/containers/Setup/SetupSubscription/SubscriptionPaymentsMethodsSection.tsx diff --git a/src/containers/Setup/SetupSubscription/SubscriptionPeriodsSection.tsx b/apps/client/src/containers/Setup/SetupSubscription/SubscriptionPeriodsSection.tsx similarity index 100% rename from src/containers/Setup/SetupSubscription/SubscriptionPeriodsSection.tsx rename to apps/client/src/containers/Setup/SetupSubscription/SubscriptionPeriodsSection.tsx diff --git a/src/containers/Setup/SetupSubscription/SubscriptionPlansSection.tsx b/apps/client/src/containers/Setup/SetupSubscription/SubscriptionPlansSection.tsx similarity index 100% rename from src/containers/Setup/SetupSubscription/SubscriptionPlansSection.tsx rename to apps/client/src/containers/Setup/SetupSubscription/SubscriptionPlansSection.tsx diff --git a/src/containers/Setup/SetupWizardContent.tsx b/apps/client/src/containers/Setup/SetupWizardContent.tsx similarity index 100% rename from src/containers/Setup/SetupWizardContent.tsx rename to apps/client/src/containers/Setup/SetupWizardContent.tsx diff --git a/src/containers/Setup/SubscriptionForm.schema.tsx b/apps/client/src/containers/Setup/SubscriptionForm.schema.tsx similarity index 100% rename from src/containers/Setup/SubscriptionForm.schema.tsx rename to apps/client/src/containers/Setup/SubscriptionForm.schema.tsx diff --git a/src/containers/Setup/WizardSetupPage.tsx b/apps/client/src/containers/Setup/WizardSetupPage.tsx similarity index 100% rename from src/containers/Setup/WizardSetupPage.tsx rename to apps/client/src/containers/Setup/WizardSetupPage.tsx diff --git a/src/containers/Setup/WizardSetupSteps.tsx b/apps/client/src/containers/Setup/WizardSetupSteps.tsx similarity index 100% rename from src/containers/Setup/WizardSetupSteps.tsx rename to apps/client/src/containers/Setup/WizardSetupSteps.tsx diff --git a/src/containers/Setup/WorkflowIcon.tsx b/apps/client/src/containers/Setup/WorkflowIcon.tsx similarity index 100% rename from src/containers/Setup/WorkflowIcon.tsx rename to apps/client/src/containers/Setup/WorkflowIcon.tsx diff --git a/src/containers/Subscriptions/BillingForm.tsx b/apps/client/src/containers/Subscriptions/BillingForm.tsx similarity index 100% rename from src/containers/Subscriptions/BillingForm.tsx rename to apps/client/src/containers/Subscriptions/BillingForm.tsx diff --git a/src/containers/Subscriptions/BillingPaymentMethod.tsx b/apps/client/src/containers/Subscriptions/BillingPaymentMethod.tsx similarity index 100% rename from src/containers/Subscriptions/BillingPaymentMethod.tsx rename to apps/client/src/containers/Subscriptions/BillingPaymentMethod.tsx diff --git a/src/containers/Subscriptions/BillingPeriod.tsx b/apps/client/src/containers/Subscriptions/BillingPeriod.tsx similarity index 100% rename from src/containers/Subscriptions/BillingPeriod.tsx rename to apps/client/src/containers/Subscriptions/BillingPeriod.tsx diff --git a/src/containers/Subscriptions/BillingPeriodsInput.tsx b/apps/client/src/containers/Subscriptions/BillingPeriodsInput.tsx similarity index 100% rename from src/containers/Subscriptions/BillingPeriodsInput.tsx rename to apps/client/src/containers/Subscriptions/BillingPeriodsInput.tsx diff --git a/src/containers/Subscriptions/BillingPlan.tsx b/apps/client/src/containers/Subscriptions/BillingPlan.tsx similarity index 100% rename from src/containers/Subscriptions/BillingPlan.tsx rename to apps/client/src/containers/Subscriptions/BillingPlan.tsx diff --git a/src/containers/Subscriptions/BillingPlansForm.tsx b/apps/client/src/containers/Subscriptions/BillingPlansForm.tsx similarity index 100% rename from src/containers/Subscriptions/BillingPlansForm.tsx rename to apps/client/src/containers/Subscriptions/BillingPlansForm.tsx diff --git a/src/containers/Subscriptions/BillingPlansInput.tsx b/apps/client/src/containers/Subscriptions/BillingPlansInput.tsx similarity index 100% rename from src/containers/Subscriptions/BillingPlansInput.tsx rename to apps/client/src/containers/Subscriptions/BillingPlansInput.tsx diff --git a/src/containers/Subscriptions/BillingTab.tsx b/apps/client/src/containers/Subscriptions/BillingTab.tsx similarity index 100% rename from src/containers/Subscriptions/BillingTab.tsx rename to apps/client/src/containers/Subscriptions/BillingTab.tsx diff --git a/src/containers/Subscriptions/LicenseTab.tsx b/apps/client/src/containers/Subscriptions/LicenseTab.tsx similarity index 100% rename from src/containers/Subscriptions/LicenseTab.tsx rename to apps/client/src/containers/Subscriptions/LicenseTab.tsx diff --git a/src/containers/Subscriptions/SubscriptionTabs.tsx b/apps/client/src/containers/Subscriptions/SubscriptionTabs.tsx similarity index 100% rename from src/containers/Subscriptions/SubscriptionTabs.tsx rename to apps/client/src/containers/Subscriptions/SubscriptionTabs.tsx diff --git a/src/containers/Subscriptions/utils.tsx b/apps/client/src/containers/Subscriptions/utils.tsx similarity index 100% rename from src/containers/Subscriptions/utils.tsx rename to apps/client/src/containers/Subscriptions/utils.tsx diff --git a/src/containers/Subscriptions/withBillingActions.tsx b/apps/client/src/containers/Subscriptions/withBillingActions.tsx similarity index 100% rename from src/containers/Subscriptions/withBillingActions.tsx rename to apps/client/src/containers/Subscriptions/withBillingActions.tsx diff --git a/src/containers/Subscriptions/withPlan.tsx b/apps/client/src/containers/Subscriptions/withPlan.tsx similarity index 100% rename from src/containers/Subscriptions/withPlan.tsx rename to apps/client/src/containers/Subscriptions/withPlan.tsx diff --git a/src/containers/Subscriptions/withPlans.tsx b/apps/client/src/containers/Subscriptions/withPlans.tsx similarity index 100% rename from src/containers/Subscriptions/withPlans.tsx rename to apps/client/src/containers/Subscriptions/withPlans.tsx diff --git a/src/containers/Subscriptions/withSubscriptionPlansActions.tsx b/apps/client/src/containers/Subscriptions/withSubscriptionPlansActions.tsx similarity index 100% rename from src/containers/Subscriptions/withSubscriptionPlansActions.tsx rename to apps/client/src/containers/Subscriptions/withSubscriptionPlansActions.tsx diff --git a/src/containers/Subscriptions/withSubscriptions.tsx b/apps/client/src/containers/Subscriptions/withSubscriptions.tsx similarity index 100% rename from src/containers/Subscriptions/withSubscriptions.tsx rename to apps/client/src/containers/Subscriptions/withSubscriptions.tsx diff --git a/src/containers/Subscriptions/withSubscriptionsActions.tsx b/apps/client/src/containers/Subscriptions/withSubscriptionsActions.tsx similarity index 100% rename from src/containers/Subscriptions/withSubscriptionsActions.tsx rename to apps/client/src/containers/Subscriptions/withSubscriptionsActions.tsx diff --git a/src/containers/Subscriptions/withSubscriptionss.tsx b/apps/client/src/containers/Subscriptions/withSubscriptionss.tsx similarity index 100% rename from src/containers/Subscriptions/withSubscriptionss.tsx rename to apps/client/src/containers/Subscriptions/withSubscriptionss.tsx diff --git a/src/containers/TransactionsLocking/TransactionsLockingAlerts.tsx b/apps/client/src/containers/TransactionsLocking/TransactionsLockingAlerts.tsx similarity index 100% rename from src/containers/TransactionsLocking/TransactionsLockingAlerts.tsx rename to apps/client/src/containers/TransactionsLocking/TransactionsLockingAlerts.tsx diff --git a/src/containers/TransactionsLocking/TransactionsLockingBody.tsx b/apps/client/src/containers/TransactionsLocking/TransactionsLockingBody.tsx similarity index 100% rename from src/containers/TransactionsLocking/TransactionsLockingBody.tsx rename to apps/client/src/containers/TransactionsLocking/TransactionsLockingBody.tsx diff --git a/src/containers/TransactionsLocking/TransactionsLockingHeader.tsx b/apps/client/src/containers/TransactionsLocking/TransactionsLockingHeader.tsx similarity index 100% rename from src/containers/TransactionsLocking/TransactionsLockingHeader.tsx rename to apps/client/src/containers/TransactionsLocking/TransactionsLockingHeader.tsx diff --git a/src/containers/TransactionsLocking/TransactionsLockingList.tsx b/apps/client/src/containers/TransactionsLocking/TransactionsLockingList.tsx similarity index 100% rename from src/containers/TransactionsLocking/TransactionsLockingList.tsx rename to apps/client/src/containers/TransactionsLocking/TransactionsLockingList.tsx diff --git a/src/containers/TransactionsLocking/TransactionsLockingPage.tsx b/apps/client/src/containers/TransactionsLocking/TransactionsLockingPage.tsx similarity index 100% rename from src/containers/TransactionsLocking/TransactionsLockingPage.tsx rename to apps/client/src/containers/TransactionsLocking/TransactionsLockingPage.tsx diff --git a/src/containers/TransactionsLocking/TransactionsLockingProvider.tsx b/apps/client/src/containers/TransactionsLocking/TransactionsLockingProvider.tsx similarity index 100% rename from src/containers/TransactionsLocking/TransactionsLockingProvider.tsx rename to apps/client/src/containers/TransactionsLocking/TransactionsLockingProvider.tsx diff --git a/src/containers/TransactionsLocking/components.tsx b/apps/client/src/containers/TransactionsLocking/components.tsx similarity index 100% rename from src/containers/TransactionsLocking/components.tsx rename to apps/client/src/containers/TransactionsLocking/components.tsx diff --git a/src/containers/TransactionsLocking/utils.tsx b/apps/client/src/containers/TransactionsLocking/utils.tsx similarity index 100% rename from src/containers/TransactionsLocking/utils.tsx rename to apps/client/src/containers/TransactionsLocking/utils.tsx diff --git a/src/containers/UniversalSearch/DashboardUniversalSearch.tsx b/apps/client/src/containers/UniversalSearch/DashboardUniversalSearch.tsx similarity index 100% rename from src/containers/UniversalSearch/DashboardUniversalSearch.tsx rename to apps/client/src/containers/UniversalSearch/DashboardUniversalSearch.tsx diff --git a/src/containers/UniversalSearch/DashboardUniversalSearchBinds.tsx b/apps/client/src/containers/UniversalSearch/DashboardUniversalSearchBinds.tsx similarity index 100% rename from src/containers/UniversalSearch/DashboardUniversalSearchBinds.tsx rename to apps/client/src/containers/UniversalSearch/DashboardUniversalSearchBinds.tsx diff --git a/src/containers/UniversalSearch/DashboardUniversalSearchHotkeys.tsx b/apps/client/src/containers/UniversalSearch/DashboardUniversalSearchHotkeys.tsx similarity index 100% rename from src/containers/UniversalSearch/DashboardUniversalSearchHotkeys.tsx rename to apps/client/src/containers/UniversalSearch/DashboardUniversalSearchHotkeys.tsx diff --git a/src/containers/UniversalSearch/DashboardUniversalSearchItemActions.tsx b/apps/client/src/containers/UniversalSearch/DashboardUniversalSearchItemActions.tsx similarity index 100% rename from src/containers/UniversalSearch/DashboardUniversalSearchItemActions.tsx rename to apps/client/src/containers/UniversalSearch/DashboardUniversalSearchItemActions.tsx diff --git a/src/containers/UniversalSearch/components.tsx b/apps/client/src/containers/UniversalSearch/components.tsx similarity index 100% rename from src/containers/UniversalSearch/components.tsx rename to apps/client/src/containers/UniversalSearch/components.tsx diff --git a/src/containers/UniversalSearch/utils.tsx b/apps/client/src/containers/UniversalSearch/utils.tsx similarity index 100% rename from src/containers/UniversalSearch/utils.tsx rename to apps/client/src/containers/UniversalSearch/utils.tsx diff --git a/src/containers/UniversalSearch/withUniversalSearch.tsx b/apps/client/src/containers/UniversalSearch/withUniversalSearch.tsx similarity index 100% rename from src/containers/UniversalSearch/withUniversalSearch.tsx rename to apps/client/src/containers/UniversalSearch/withUniversalSearch.tsx diff --git a/src/containers/UniversalSearch/withUniversalSearchActions.tsx b/apps/client/src/containers/UniversalSearch/withUniversalSearchActions.tsx similarity index 100% rename from src/containers/UniversalSearch/withUniversalSearchActions.tsx rename to apps/client/src/containers/UniversalSearch/withUniversalSearchActions.tsx diff --git a/src/containers/Users/withUsers.tsx b/apps/client/src/containers/Users/withUsers.tsx similarity index 100% rename from src/containers/Users/withUsers.tsx rename to apps/client/src/containers/Users/withUsers.tsx diff --git a/src/containers/Users/withUsersActions.tsx b/apps/client/src/containers/Users/withUsersActions.tsx similarity index 100% rename from src/containers/Users/withUsersActions.tsx rename to apps/client/src/containers/Users/withUsersActions.tsx diff --git a/src/containers/Vendors/VendorForm/VendorAttahmentTab.tsx b/apps/client/src/containers/Vendors/VendorForm/VendorAttahmentTab.tsx similarity index 100% rename from src/containers/Vendors/VendorForm/VendorAttahmentTab.tsx rename to apps/client/src/containers/Vendors/VendorForm/VendorAttahmentTab.tsx diff --git a/src/containers/Vendors/VendorForm/VendorFinanicalPanelTab.tsx b/apps/client/src/containers/Vendors/VendorForm/VendorFinanicalPanelTab.tsx similarity index 100% rename from src/containers/Vendors/VendorForm/VendorFinanicalPanelTab.tsx rename to apps/client/src/containers/Vendors/VendorForm/VendorFinanicalPanelTab.tsx diff --git a/src/containers/Vendors/VendorForm/VendorFloatingActions.tsx b/apps/client/src/containers/Vendors/VendorForm/VendorFloatingActions.tsx similarity index 100% rename from src/containers/Vendors/VendorForm/VendorFloatingActions.tsx rename to apps/client/src/containers/Vendors/VendorForm/VendorFloatingActions.tsx diff --git a/src/containers/Vendors/VendorForm/VendorForm.schema.tsx b/apps/client/src/containers/Vendors/VendorForm/VendorForm.schema.tsx similarity index 100% rename from src/containers/Vendors/VendorForm/VendorForm.schema.tsx rename to apps/client/src/containers/Vendors/VendorForm/VendorForm.schema.tsx diff --git a/src/containers/Vendors/VendorForm/VendorFormAfterPrimarySection.tsx b/apps/client/src/containers/Vendors/VendorForm/VendorFormAfterPrimarySection.tsx similarity index 100% rename from src/containers/Vendors/VendorForm/VendorFormAfterPrimarySection.tsx rename to apps/client/src/containers/Vendors/VendorForm/VendorFormAfterPrimarySection.tsx diff --git a/src/containers/Vendors/VendorForm/VendorFormFormik.tsx b/apps/client/src/containers/Vendors/VendorForm/VendorFormFormik.tsx similarity index 100% rename from src/containers/Vendors/VendorForm/VendorFormFormik.tsx rename to apps/client/src/containers/Vendors/VendorForm/VendorFormFormik.tsx diff --git a/src/containers/Vendors/VendorForm/VendorFormPage.tsx b/apps/client/src/containers/Vendors/VendorForm/VendorFormPage.tsx similarity index 100% rename from src/containers/Vendors/VendorForm/VendorFormPage.tsx rename to apps/client/src/containers/Vendors/VendorForm/VendorFormPage.tsx diff --git a/src/containers/Vendors/VendorForm/VendorFormPrimarySection.tsx b/apps/client/src/containers/Vendors/VendorForm/VendorFormPrimarySection.tsx similarity index 100% rename from src/containers/Vendors/VendorForm/VendorFormPrimarySection.tsx rename to apps/client/src/containers/Vendors/VendorForm/VendorFormPrimarySection.tsx diff --git a/src/containers/Vendors/VendorForm/VendorFormProvider.tsx b/apps/client/src/containers/Vendors/VendorForm/VendorFormProvider.tsx similarity index 100% rename from src/containers/Vendors/VendorForm/VendorFormProvider.tsx rename to apps/client/src/containers/Vendors/VendorForm/VendorFormProvider.tsx diff --git a/src/containers/Vendors/VendorForm/VendorsTabs.tsx b/apps/client/src/containers/Vendors/VendorForm/VendorsTabs.tsx similarity index 100% rename from src/containers/Vendors/VendorForm/VendorsTabs.tsx rename to apps/client/src/containers/Vendors/VendorForm/VendorsTabs.tsx diff --git a/src/containers/Vendors/VendorForm/utils.tsx b/apps/client/src/containers/Vendors/VendorForm/utils.tsx similarity index 100% rename from src/containers/Vendors/VendorForm/utils.tsx rename to apps/client/src/containers/Vendors/VendorForm/utils.tsx diff --git a/src/containers/Vendors/VendorsAlerts.tsx b/apps/client/src/containers/Vendors/VendorsAlerts.tsx similarity index 100% rename from src/containers/Vendors/VendorsAlerts.tsx rename to apps/client/src/containers/Vendors/VendorsAlerts.tsx diff --git a/src/containers/Vendors/VendorsLanding/VendorActionsBar.tsx b/apps/client/src/containers/Vendors/VendorsLanding/VendorActionsBar.tsx similarity index 100% rename from src/containers/Vendors/VendorsLanding/VendorActionsBar.tsx rename to apps/client/src/containers/Vendors/VendorsLanding/VendorActionsBar.tsx diff --git a/src/containers/Vendors/VendorsLanding/VendorViewsTabs.tsx b/apps/client/src/containers/Vendors/VendorsLanding/VendorViewsTabs.tsx similarity index 100% rename from src/containers/Vendors/VendorsLanding/VendorViewsTabs.tsx rename to apps/client/src/containers/Vendors/VendorsLanding/VendorViewsTabs.tsx diff --git a/src/containers/Vendors/VendorsLanding/VendorsEmptyStatus.tsx b/apps/client/src/containers/Vendors/VendorsLanding/VendorsEmptyStatus.tsx similarity index 100% rename from src/containers/Vendors/VendorsLanding/VendorsEmptyStatus.tsx rename to apps/client/src/containers/Vendors/VendorsLanding/VendorsEmptyStatus.tsx diff --git a/src/containers/Vendors/VendorsLanding/VendorsList.tsx b/apps/client/src/containers/Vendors/VendorsLanding/VendorsList.tsx similarity index 100% rename from src/containers/Vendors/VendorsLanding/VendorsList.tsx rename to apps/client/src/containers/Vendors/VendorsLanding/VendorsList.tsx diff --git a/src/containers/Vendors/VendorsLanding/VendorsListProvider.tsx b/apps/client/src/containers/Vendors/VendorsLanding/VendorsListProvider.tsx similarity index 100% rename from src/containers/Vendors/VendorsLanding/VendorsListProvider.tsx rename to apps/client/src/containers/Vendors/VendorsLanding/VendorsListProvider.tsx diff --git a/src/containers/Vendors/VendorsLanding/VendorsTable.tsx b/apps/client/src/containers/Vendors/VendorsLanding/VendorsTable.tsx similarity index 100% rename from src/containers/Vendors/VendorsLanding/VendorsTable.tsx rename to apps/client/src/containers/Vendors/VendorsLanding/VendorsTable.tsx diff --git a/src/containers/Vendors/VendorsLanding/components.tsx b/apps/client/src/containers/Vendors/VendorsLanding/components.tsx similarity index 100% rename from src/containers/Vendors/VendorsLanding/components.tsx rename to apps/client/src/containers/Vendors/VendorsLanding/components.tsx diff --git a/src/containers/Vendors/VendorsLanding/utils.tsx b/apps/client/src/containers/Vendors/VendorsLanding/utils.tsx similarity index 100% rename from src/containers/Vendors/VendorsLanding/utils.tsx rename to apps/client/src/containers/Vendors/VendorsLanding/utils.tsx diff --git a/src/containers/Vendors/VendorsLanding/withVendors.tsx b/apps/client/src/containers/Vendors/VendorsLanding/withVendors.tsx similarity index 100% rename from src/containers/Vendors/VendorsLanding/withVendors.tsx rename to apps/client/src/containers/Vendors/VendorsLanding/withVendors.tsx diff --git a/src/containers/Vendors/VendorsLanding/withVendorsActions.tsx b/apps/client/src/containers/Vendors/VendorsLanding/withVendorsActions.tsx similarity index 100% rename from src/containers/Vendors/VendorsLanding/withVendorsActions.tsx rename to apps/client/src/containers/Vendors/VendorsLanding/withVendorsActions.tsx diff --git a/src/containers/Vendors/VendorsUniversalSearch.tsx b/apps/client/src/containers/Vendors/VendorsUniversalSearch.tsx similarity index 100% rename from src/containers/Vendors/VendorsUniversalSearch.tsx rename to apps/client/src/containers/Vendors/VendorsUniversalSearch.tsx diff --git a/src/containers/Vendors/utils.tsx b/apps/client/src/containers/Vendors/utils.tsx similarity index 100% rename from src/containers/Vendors/utils.tsx rename to apps/client/src/containers/Vendors/utils.tsx diff --git a/src/containers/Vendors/withVendorDetail.tsx b/apps/client/src/containers/Vendors/withVendorDetail.tsx similarity index 100% rename from src/containers/Vendors/withVendorDetail.tsx rename to apps/client/src/containers/Vendors/withVendorDetail.tsx diff --git a/src/containers/Views/ViewForm.container.tsx b/apps/client/src/containers/Views/ViewForm.container.tsx similarity index 100% rename from src/containers/Views/ViewForm.container.tsx rename to apps/client/src/containers/Views/ViewForm.container.tsx diff --git a/src/containers/Views/ViewForm.tsx b/apps/client/src/containers/Views/ViewForm.tsx similarity index 100% rename from src/containers/Views/ViewForm.tsx rename to apps/client/src/containers/Views/ViewForm.tsx diff --git a/src/containers/Views/ViewFormPage.tsx b/apps/client/src/containers/Views/ViewFormPage.tsx similarity index 100% rename from src/containers/Views/ViewFormPage.tsx rename to apps/client/src/containers/Views/ViewFormPage.tsx diff --git a/src/containers/Views/withCurrentView.tsx b/apps/client/src/containers/Views/withCurrentView.tsx similarity index 100% rename from src/containers/Views/withCurrentView.tsx rename to apps/client/src/containers/Views/withCurrentView.tsx diff --git a/src/containers/Views/withViewDetails.tsx b/apps/client/src/containers/Views/withViewDetails.tsx similarity index 100% rename from src/containers/Views/withViewDetails.tsx rename to apps/client/src/containers/Views/withViewDetails.tsx diff --git a/src/containers/Views/withViewsActions.tsx b/apps/client/src/containers/Views/withViewsActions.tsx similarity index 100% rename from src/containers/Views/withViewsActions.tsx rename to apps/client/src/containers/Views/withViewsActions.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferEditorField.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferEditorField.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferEditorField.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferEditorField.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFloatingActions.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFloatingActions.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFloatingActions.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFloatingActions.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferForm.schema.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferForm.schema.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferForm.schema.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferForm.schema.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferForm.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferForm.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferForm.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferForm.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormDialog.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormDialog.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormDialog.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormDialog.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormEntriesTable.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormEntriesTable.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormEntriesTable.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormEntriesTable.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooter.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooter.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooter.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooter.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooterLeft.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooterLeft.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooterLeft.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormFooterLeft.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormHeader.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormHeader.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormHeader.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormHeader.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormHeaderFields.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormHeaderFields.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormHeaderFields.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormHeaderFields.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormPage.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormPage.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormPage.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormPage.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormProvider.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormProvider.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormProvider.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/WarehouseTransferFormProvider.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/components.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/components.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransferForm/components.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/components.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/hooks.ts b/apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/hooks.ts similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransferForm/hooks.ts rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/hooks.ts diff --git a/src/containers/WarehouseTransfers/WarehouseTransferForm/utils.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/utils.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransferForm/utils.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransferForm/utils.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersActionsBar.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersActionsBar.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersActionsBar.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersActionsBar.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersDataTable.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersDataTable.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersDataTable.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersDataTable.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersEmptyStatus.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersEmptyStatus.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersEmptyStatus.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersEmptyStatus.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersList.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersList.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersList.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersList.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersListProvider.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersListProvider.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersListProvider.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersListProvider.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersViewTabs.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersViewTabs.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersViewTabs.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/WarehouseTransfersViewTabs.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/components.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/components.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransfersLanding/components.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/components.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/withWarehouseTransfers.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/withWarehouseTransfers.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransfersLanding/withWarehouseTransfers.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/withWarehouseTransfers.tsx diff --git a/src/containers/WarehouseTransfers/WarehouseTransfersLanding/withWarehouseTransfersActions.tsx b/apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/withWarehouseTransfersActions.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehouseTransfersLanding/withWarehouseTransfersActions.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehouseTransfersLanding/withWarehouseTransfersActions.tsx diff --git a/src/containers/WarehouseTransfers/WarehousesTransfersAlerts.tsx b/apps/client/src/containers/WarehouseTransfers/WarehousesTransfersAlerts.tsx similarity index 100% rename from src/containers/WarehouseTransfers/WarehousesTransfersAlerts.tsx rename to apps/client/src/containers/WarehouseTransfers/WarehousesTransfersAlerts.tsx diff --git a/src/containers/WarehouseTransfers/utils.tsx b/apps/client/src/containers/WarehouseTransfers/utils.tsx similarity index 100% rename from src/containers/WarehouseTransfers/utils.tsx rename to apps/client/src/containers/WarehouseTransfers/utils.tsx diff --git a/src/hooks/dashboard/index.tsx b/apps/client/src/hooks/dashboard/index.tsx similarity index 100% rename from src/hooks/dashboard/index.tsx rename to apps/client/src/hooks/dashboard/index.tsx diff --git a/src/hooks/dashboard/useKeywordShortcuts.tsx b/apps/client/src/hooks/dashboard/useKeywordShortcuts.tsx similarity index 100% rename from src/hooks/dashboard/useKeywordShortcuts.tsx rename to apps/client/src/hooks/dashboard/useKeywordShortcuts.tsx diff --git a/src/hooks/index.tsx b/apps/client/src/hooks/index.tsx similarity index 100% rename from src/hooks/index.tsx rename to apps/client/src/hooks/index.tsx diff --git a/src/hooks/query/GenericResource/index.tsx b/apps/client/src/hooks/query/GenericResource/index.tsx similarity index 100% rename from src/hooks/query/GenericResource/index.tsx rename to apps/client/src/hooks/query/GenericResource/index.tsx diff --git a/src/hooks/query/UniversalSearch/UniversalSearch.tsx b/apps/client/src/hooks/query/UniversalSearch/UniversalSearch.tsx similarity index 100% rename from src/hooks/query/UniversalSearch/UniversalSearch.tsx rename to apps/client/src/hooks/query/UniversalSearch/UniversalSearch.tsx diff --git a/src/hooks/query/accounts.tsx b/apps/client/src/hooks/query/accounts.tsx similarity index 100% rename from src/hooks/query/accounts.tsx rename to apps/client/src/hooks/query/accounts.tsx diff --git a/src/hooks/query/authentication.tsx b/apps/client/src/hooks/query/authentication.tsx similarity index 100% rename from src/hooks/query/authentication.tsx rename to apps/client/src/hooks/query/authentication.tsx diff --git a/src/hooks/query/base.tsx b/apps/client/src/hooks/query/base.tsx similarity index 100% rename from src/hooks/query/base.tsx rename to apps/client/src/hooks/query/base.tsx diff --git a/src/hooks/query/bills.tsx b/apps/client/src/hooks/query/bills.tsx similarity index 100% rename from src/hooks/query/bills.tsx rename to apps/client/src/hooks/query/bills.tsx diff --git a/src/hooks/query/branches.tsx b/apps/client/src/hooks/query/branches.tsx similarity index 100% rename from src/hooks/query/branches.tsx rename to apps/client/src/hooks/query/branches.tsx diff --git a/src/hooks/query/cashflowAccounts.tsx b/apps/client/src/hooks/query/cashflowAccounts.tsx similarity index 100% rename from src/hooks/query/cashflowAccounts.tsx rename to apps/client/src/hooks/query/cashflowAccounts.tsx diff --git a/src/hooks/query/contacts.tsx b/apps/client/src/hooks/query/contacts.tsx similarity index 100% rename from src/hooks/query/contacts.tsx rename to apps/client/src/hooks/query/contacts.tsx diff --git a/src/hooks/query/creditNote.tsx b/apps/client/src/hooks/query/creditNote.tsx similarity index 100% rename from src/hooks/query/creditNote.tsx rename to apps/client/src/hooks/query/creditNote.tsx diff --git a/src/hooks/query/currencies.tsx b/apps/client/src/hooks/query/currencies.tsx similarity index 100% rename from src/hooks/query/currencies.tsx rename to apps/client/src/hooks/query/currencies.tsx diff --git a/src/hooks/query/customers.tsx b/apps/client/src/hooks/query/customers.tsx similarity index 100% rename from src/hooks/query/customers.tsx rename to apps/client/src/hooks/query/customers.tsx diff --git a/src/hooks/query/estimates.tsx b/apps/client/src/hooks/query/estimates.tsx similarity index 100% rename from src/hooks/query/estimates.tsx rename to apps/client/src/hooks/query/estimates.tsx diff --git a/src/hooks/query/exchangeRates.tsx b/apps/client/src/hooks/query/exchangeRates.tsx similarity index 100% rename from src/hooks/query/exchangeRates.tsx rename to apps/client/src/hooks/query/exchangeRates.tsx diff --git a/src/hooks/query/expenses.tsx b/apps/client/src/hooks/query/expenses.tsx similarity index 100% rename from src/hooks/query/expenses.tsx rename to apps/client/src/hooks/query/expenses.tsx diff --git a/src/hooks/query/financialReports.tsx b/apps/client/src/hooks/query/financialReports.tsx similarity index 100% rename from src/hooks/query/financialReports.tsx rename to apps/client/src/hooks/query/financialReports.tsx diff --git a/src/hooks/query/index.tsx b/apps/client/src/hooks/query/index.tsx similarity index 100% rename from src/hooks/query/index.tsx rename to apps/client/src/hooks/query/index.tsx diff --git a/src/hooks/query/inventoryAdjustments.tsx b/apps/client/src/hooks/query/inventoryAdjustments.tsx similarity index 100% rename from src/hooks/query/inventoryAdjustments.tsx rename to apps/client/src/hooks/query/inventoryAdjustments.tsx diff --git a/src/hooks/query/invite.tsx b/apps/client/src/hooks/query/invite.tsx similarity index 100% rename from src/hooks/query/invite.tsx rename to apps/client/src/hooks/query/invite.tsx diff --git a/src/hooks/query/invoices.tsx b/apps/client/src/hooks/query/invoices.tsx similarity index 100% rename from src/hooks/query/invoices.tsx rename to apps/client/src/hooks/query/invoices.tsx diff --git a/src/hooks/query/items.tsx b/apps/client/src/hooks/query/items.tsx similarity index 100% rename from src/hooks/query/items.tsx rename to apps/client/src/hooks/query/items.tsx diff --git a/src/hooks/query/itemsCategories.tsx b/apps/client/src/hooks/query/itemsCategories.tsx similarity index 100% rename from src/hooks/query/itemsCategories.tsx rename to apps/client/src/hooks/query/itemsCategories.tsx diff --git a/src/hooks/query/jobs.tsx b/apps/client/src/hooks/query/jobs.tsx similarity index 100% rename from src/hooks/query/jobs.tsx rename to apps/client/src/hooks/query/jobs.tsx diff --git a/src/hooks/query/landedCost.tsx b/apps/client/src/hooks/query/landedCost.tsx similarity index 100% rename from src/hooks/query/landedCost.tsx rename to apps/client/src/hooks/query/landedCost.tsx diff --git a/src/hooks/query/manualJournals.tsx b/apps/client/src/hooks/query/manualJournals.tsx similarity index 100% rename from src/hooks/query/manualJournals.tsx rename to apps/client/src/hooks/query/manualJournals.tsx diff --git a/src/hooks/query/misc.tsx b/apps/client/src/hooks/query/misc.tsx similarity index 100% rename from src/hooks/query/misc.tsx rename to apps/client/src/hooks/query/misc.tsx diff --git a/src/hooks/query/organization.tsx b/apps/client/src/hooks/query/organization.tsx similarity index 100% rename from src/hooks/query/organization.tsx rename to apps/client/src/hooks/query/organization.tsx diff --git a/src/hooks/query/paymentMades.tsx b/apps/client/src/hooks/query/paymentMades.tsx similarity index 100% rename from src/hooks/query/paymentMades.tsx rename to apps/client/src/hooks/query/paymentMades.tsx diff --git a/src/hooks/query/paymentReceives.tsx b/apps/client/src/hooks/query/paymentReceives.tsx similarity index 100% rename from src/hooks/query/paymentReceives.tsx rename to apps/client/src/hooks/query/paymentReceives.tsx diff --git a/src/hooks/query/receipts.tsx b/apps/client/src/hooks/query/receipts.tsx similarity index 100% rename from src/hooks/query/receipts.tsx rename to apps/client/src/hooks/query/receipts.tsx diff --git a/src/hooks/query/roles.tsx b/apps/client/src/hooks/query/roles.tsx similarity index 100% rename from src/hooks/query/roles.tsx rename to apps/client/src/hooks/query/roles.tsx diff --git a/src/hooks/query/settings.tsx b/apps/client/src/hooks/query/settings.tsx similarity index 100% rename from src/hooks/query/settings.tsx rename to apps/client/src/hooks/query/settings.tsx diff --git a/src/hooks/query/subscriptions.tsx b/apps/client/src/hooks/query/subscriptions.tsx similarity index 100% rename from src/hooks/query/subscriptions.tsx rename to apps/client/src/hooks/query/subscriptions.tsx diff --git a/src/hooks/query/transactionsLocking.tsx b/apps/client/src/hooks/query/transactionsLocking.tsx similarity index 100% rename from src/hooks/query/transactionsLocking.tsx rename to apps/client/src/hooks/query/transactionsLocking.tsx diff --git a/src/hooks/query/types.tsx b/apps/client/src/hooks/query/types.tsx similarity index 100% rename from src/hooks/query/types.tsx rename to apps/client/src/hooks/query/types.tsx diff --git a/src/hooks/query/users.tsx b/apps/client/src/hooks/query/users.tsx similarity index 100% rename from src/hooks/query/users.tsx rename to apps/client/src/hooks/query/users.tsx diff --git a/src/hooks/query/vendorCredit.tsx b/apps/client/src/hooks/query/vendorCredit.tsx similarity index 100% rename from src/hooks/query/vendorCredit.tsx rename to apps/client/src/hooks/query/vendorCredit.tsx diff --git a/src/hooks/query/vendors.tsx b/apps/client/src/hooks/query/vendors.tsx similarity index 100% rename from src/hooks/query/vendors.tsx rename to apps/client/src/hooks/query/vendors.tsx diff --git a/src/hooks/query/views.tsx b/apps/client/src/hooks/query/views.tsx similarity index 100% rename from src/hooks/query/views.tsx rename to apps/client/src/hooks/query/views.tsx diff --git a/src/hooks/query/warehouses.tsx b/apps/client/src/hooks/query/warehouses.tsx similarity index 100% rename from src/hooks/query/warehouses.tsx rename to apps/client/src/hooks/query/warehouses.tsx diff --git a/src/hooks/query/warehousesTransfers.tsx b/apps/client/src/hooks/query/warehousesTransfers.tsx similarity index 100% rename from src/hooks/query/warehousesTransfers.tsx rename to apps/client/src/hooks/query/warehousesTransfers.tsx diff --git a/src/hooks/state/authentication.tsx b/apps/client/src/hooks/state/authentication.tsx similarity index 100% rename from src/hooks/state/authentication.tsx rename to apps/client/src/hooks/state/authentication.tsx diff --git a/src/hooks/state/dashboard.tsx b/apps/client/src/hooks/state/dashboard.tsx similarity index 100% rename from src/hooks/state/dashboard.tsx rename to apps/client/src/hooks/state/dashboard.tsx diff --git a/src/hooks/state/feature.tsx b/apps/client/src/hooks/state/feature.tsx similarity index 100% rename from src/hooks/state/feature.tsx rename to apps/client/src/hooks/state/feature.tsx diff --git a/src/hooks/state/globalErrors.tsx b/apps/client/src/hooks/state/globalErrors.tsx similarity index 100% rename from src/hooks/state/globalErrors.tsx rename to apps/client/src/hooks/state/globalErrors.tsx diff --git a/src/hooks/state/index.tsx b/apps/client/src/hooks/state/index.tsx similarity index 100% rename from src/hooks/state/index.tsx rename to apps/client/src/hooks/state/index.tsx diff --git a/src/hooks/state/organizations.tsx b/apps/client/src/hooks/state/organizations.tsx similarity index 100% rename from src/hooks/state/organizations.tsx rename to apps/client/src/hooks/state/organizations.tsx diff --git a/src/hooks/state/settings.tsx b/apps/client/src/hooks/state/settings.tsx similarity index 100% rename from src/hooks/state/settings.tsx rename to apps/client/src/hooks/state/settings.tsx diff --git a/src/hooks/state/subscriptions.tsx b/apps/client/src/hooks/state/subscriptions.tsx similarity index 100% rename from src/hooks/state/subscriptions.tsx rename to apps/client/src/hooks/state/subscriptions.tsx diff --git a/src/hooks/useAutofocus.tsx b/apps/client/src/hooks/useAutofocus.tsx similarity index 100% rename from src/hooks/useAutofocus.tsx rename to apps/client/src/hooks/useAutofocus.tsx diff --git a/src/hooks/useMedia.tsx b/apps/client/src/hooks/useMedia.tsx similarity index 100% rename from src/hooks/useMedia.tsx rename to apps/client/src/hooks/useMedia.tsx diff --git a/src/hooks/useQueryRequest.tsx b/apps/client/src/hooks/useQueryRequest.tsx similarity index 100% rename from src/hooks/useQueryRequest.tsx rename to apps/client/src/hooks/useQueryRequest.tsx diff --git a/src/hooks/useQueryString.ts b/apps/client/src/hooks/useQueryString.ts similarity index 100% rename from src/hooks/useQueryString.ts rename to apps/client/src/hooks/useQueryString.ts diff --git a/src/hooks/useRequest.tsx b/apps/client/src/hooks/useRequest.tsx similarity index 100% rename from src/hooks/useRequest.tsx rename to apps/client/src/hooks/useRequest.tsx diff --git a/src/hooks/useRequestPdf.tsx b/apps/client/src/hooks/useRequestPdf.tsx similarity index 100% rename from src/hooks/useRequestPdf.tsx rename to apps/client/src/hooks/useRequestPdf.tsx diff --git a/src/hooks/utils/index.tsx b/apps/client/src/hooks/utils/index.tsx similarity index 100% rename from src/hooks/utils/index.tsx rename to apps/client/src/hooks/utils/index.tsx diff --git a/src/hooks/utils/useAbilityContext.tsx b/apps/client/src/hooks/utils/useAbilityContext.tsx similarity index 100% rename from src/hooks/utils/useAbilityContext.tsx rename to apps/client/src/hooks/utils/useAbilityContext.tsx diff --git a/src/hooks/utils/useCustomCompareEffect.ts b/apps/client/src/hooks/utils/useCustomCompareEffect.ts similarity index 100% rename from src/hooks/utils/useCustomCompareEffect.ts rename to apps/client/src/hooks/utils/useCustomCompareEffect.ts diff --git a/src/hooks/utils/useDeepCompareEffect.ts b/apps/client/src/hooks/utils/useDeepCompareEffect.ts similarity index 100% rename from src/hooks/utils/useDeepCompareEffect.ts rename to apps/client/src/hooks/utils/useDeepCompareEffect.ts diff --git a/src/hooks/utils/useIntersectionObserver.tsx b/apps/client/src/hooks/utils/useIntersectionObserver.tsx similarity index 100% rename from src/hooks/utils/useIntersectionObserver.tsx rename to apps/client/src/hooks/utils/useIntersectionObserver.tsx diff --git a/src/hooks/utils/useLocalStorage.tsx b/apps/client/src/hooks/utils/useLocalStorage.tsx similarity index 100% rename from src/hooks/utils/useLocalStorage.tsx rename to apps/client/src/hooks/utils/useLocalStorage.tsx diff --git a/src/hooks/utils/usePrevious.tsx b/apps/client/src/hooks/utils/usePrevious.tsx similarity index 100% rename from src/hooks/utils/usePrevious.tsx rename to apps/client/src/hooks/utils/usePrevious.tsx diff --git a/src/hooks/utils/useRequestPdf.tsx b/apps/client/src/hooks/utils/useRequestPdf.tsx similarity index 100% rename from src/hooks/utils/useRequestPdf.tsx rename to apps/client/src/hooks/utils/useRequestPdf.tsx diff --git a/src/hooks/utils/useUpdateEffect.tsx b/apps/client/src/hooks/utils/useUpdateEffect.tsx similarity index 100% rename from src/hooks/utils/useUpdateEffect.tsx rename to apps/client/src/hooks/utils/useUpdateEffect.tsx diff --git a/src/hooks/utils/useWatch.tsx b/apps/client/src/hooks/utils/useWatch.tsx similarity index 100% rename from src/hooks/utils/useWatch.tsx rename to apps/client/src/hooks/utils/useWatch.tsx diff --git a/src/hooks/utils/useWhen.tsx b/apps/client/src/hooks/utils/useWhen.tsx similarity index 100% rename from src/hooks/utils/useWhen.tsx rename to apps/client/src/hooks/utils/useWhen.tsx diff --git a/src/index.tsx b/apps/client/src/index.tsx similarity index 100% rename from src/index.tsx rename to apps/client/src/index.tsx diff --git a/src/lang/ar/index.json b/apps/client/src/lang/ar/index.json similarity index 100% rename from src/lang/ar/index.json rename to apps/client/src/lang/ar/index.json diff --git a/src/lang/ar/locale.tsx b/apps/client/src/lang/ar/locale.tsx similarity index 100% rename from src/lang/ar/locale.tsx rename to apps/client/src/lang/ar/locale.tsx diff --git a/src/lang/en/authentication.tsx b/apps/client/src/lang/en/authentication.tsx similarity index 100% rename from src/lang/en/authentication.tsx rename to apps/client/src/lang/en/authentication.tsx diff --git a/src/lang/en/index.json b/apps/client/src/lang/en/index.json similarity index 100% rename from src/lang/en/index.json rename to apps/client/src/lang/en/index.json diff --git a/src/lang/en/locale.tsx b/apps/client/src/lang/en/locale.tsx similarity index 100% rename from src/lang/en/locale.tsx rename to apps/client/src/lang/en/locale.tsx diff --git a/src/lang/printValue.tsx b/apps/client/src/lang/printValue.tsx similarity index 100% rename from src/lang/printValue.tsx rename to apps/client/src/lang/printValue.tsx diff --git a/src/react-app-env.d.ts b/apps/client/src/react-app-env.d.ts similarity index 100% rename from src/react-app-env.d.ts rename to apps/client/src/react-app-env.d.ts diff --git a/src/routes/authentication.tsx b/apps/client/src/routes/authentication.tsx similarity index 100% rename from src/routes/authentication.tsx rename to apps/client/src/routes/authentication.tsx diff --git a/src/routes/dashboard.tsx b/apps/client/src/routes/dashboard.tsx similarity index 100% rename from src/routes/dashboard.tsx rename to apps/client/src/routes/dashboard.tsx diff --git a/src/routes/preferences.tsx b/apps/client/src/routes/preferences.tsx similarity index 100% rename from src/routes/preferences.tsx rename to apps/client/src/routes/preferences.tsx diff --git a/src/routes/preferencesTabs.tsx b/apps/client/src/routes/preferencesTabs.tsx similarity index 100% rename from src/routes/preferencesTabs.tsx rename to apps/client/src/routes/preferencesTabs.tsx diff --git a/src/routes/register.tsx b/apps/client/src/routes/register.tsx similarity index 100% rename from src/routes/register.tsx rename to apps/client/src/routes/register.tsx diff --git a/src/serviceWorker.tsx b/apps/client/src/serviceWorker.tsx similarity index 100% rename from src/serviceWorker.tsx rename to apps/client/src/serviceWorker.tsx diff --git a/src/services/ApiService.tsx b/apps/client/src/services/ApiService.tsx similarity index 100% rename from src/services/ApiService.tsx rename to apps/client/src/services/ApiService.tsx diff --git a/src/services/NamedRoutes.tsx b/apps/client/src/services/NamedRoutes.tsx similarity index 100% rename from src/services/NamedRoutes.tsx rename to apps/client/src/services/NamedRoutes.tsx diff --git a/src/services/RemoteDataBinding.tsx b/apps/client/src/services/RemoteDataBinding.tsx similarity index 100% rename from src/services/RemoteDataBinding.tsx rename to apps/client/src/services/RemoteDataBinding.tsx diff --git a/src/services/axios.tsx b/apps/client/src/services/axios.tsx similarity index 100% rename from src/services/axios.tsx rename to apps/client/src/services/axios.tsx diff --git a/src/services/yup.tsx b/apps/client/src/services/yup.tsx similarity index 100% rename from src/services/yup.tsx rename to apps/client/src/services/yup.tsx diff --git a/src/setupTests.tsx b/apps/client/src/setupTests.tsx similarity index 100% rename from src/setupTests.tsx rename to apps/client/src/setupTests.tsx diff --git a/src/static/icons/brands/500px.svg b/apps/client/src/static/icons/brands/500px.svg similarity index 100% rename from src/static/icons/brands/500px.svg rename to apps/client/src/static/icons/brands/500px.svg diff --git a/src/static/icons/brands/accessible-icon.svg b/apps/client/src/static/icons/brands/accessible-icon.svg similarity index 100% rename from src/static/icons/brands/accessible-icon.svg rename to apps/client/src/static/icons/brands/accessible-icon.svg diff --git a/src/static/icons/brands/accusoft.svg b/apps/client/src/static/icons/brands/accusoft.svg similarity index 100% rename from src/static/icons/brands/accusoft.svg rename to apps/client/src/static/icons/brands/accusoft.svg diff --git a/src/static/icons/brands/acquisitions-incorporated.svg b/apps/client/src/static/icons/brands/acquisitions-incorporated.svg similarity index 100% rename from src/static/icons/brands/acquisitions-incorporated.svg rename to apps/client/src/static/icons/brands/acquisitions-incorporated.svg diff --git a/src/static/icons/brands/adn.svg b/apps/client/src/static/icons/brands/adn.svg similarity index 100% rename from src/static/icons/brands/adn.svg rename to apps/client/src/static/icons/brands/adn.svg diff --git a/src/static/icons/brands/adobe.svg b/apps/client/src/static/icons/brands/adobe.svg similarity index 100% rename from src/static/icons/brands/adobe.svg rename to apps/client/src/static/icons/brands/adobe.svg diff --git a/src/static/icons/brands/adversal.svg b/apps/client/src/static/icons/brands/adversal.svg similarity index 100% rename from src/static/icons/brands/adversal.svg rename to apps/client/src/static/icons/brands/adversal.svg diff --git a/src/static/icons/brands/affiliatetheme.svg b/apps/client/src/static/icons/brands/affiliatetheme.svg similarity index 100% rename from src/static/icons/brands/affiliatetheme.svg rename to apps/client/src/static/icons/brands/affiliatetheme.svg diff --git a/src/static/icons/brands/airbnb.svg b/apps/client/src/static/icons/brands/airbnb.svg similarity index 100% rename from src/static/icons/brands/airbnb.svg rename to apps/client/src/static/icons/brands/airbnb.svg diff --git a/src/static/icons/brands/algolia.svg b/apps/client/src/static/icons/brands/algolia.svg similarity index 100% rename from src/static/icons/brands/algolia.svg rename to apps/client/src/static/icons/brands/algolia.svg diff --git a/src/static/icons/brands/alipay.svg b/apps/client/src/static/icons/brands/alipay.svg similarity index 100% rename from src/static/icons/brands/alipay.svg rename to apps/client/src/static/icons/brands/alipay.svg diff --git a/src/static/icons/brands/amazon-pay.svg b/apps/client/src/static/icons/brands/amazon-pay.svg similarity index 100% rename from src/static/icons/brands/amazon-pay.svg rename to apps/client/src/static/icons/brands/amazon-pay.svg diff --git a/src/static/icons/brands/amazon.svg b/apps/client/src/static/icons/brands/amazon.svg similarity index 100% rename from src/static/icons/brands/amazon.svg rename to apps/client/src/static/icons/brands/amazon.svg diff --git a/src/static/icons/brands/amilia.svg b/apps/client/src/static/icons/brands/amilia.svg similarity index 100% rename from src/static/icons/brands/amilia.svg rename to apps/client/src/static/icons/brands/amilia.svg diff --git a/src/static/icons/brands/android.svg b/apps/client/src/static/icons/brands/android.svg similarity index 100% rename from src/static/icons/brands/android.svg rename to apps/client/src/static/icons/brands/android.svg diff --git a/src/static/icons/brands/angellist.svg b/apps/client/src/static/icons/brands/angellist.svg similarity index 100% rename from src/static/icons/brands/angellist.svg rename to apps/client/src/static/icons/brands/angellist.svg diff --git a/src/static/icons/brands/angrycreative.svg b/apps/client/src/static/icons/brands/angrycreative.svg similarity index 100% rename from src/static/icons/brands/angrycreative.svg rename to apps/client/src/static/icons/brands/angrycreative.svg diff --git a/src/static/icons/brands/angular.svg b/apps/client/src/static/icons/brands/angular.svg similarity index 100% rename from src/static/icons/brands/angular.svg rename to apps/client/src/static/icons/brands/angular.svg diff --git a/src/static/icons/brands/app-store-ios.svg b/apps/client/src/static/icons/brands/app-store-ios.svg similarity index 100% rename from src/static/icons/brands/app-store-ios.svg rename to apps/client/src/static/icons/brands/app-store-ios.svg diff --git a/src/static/icons/brands/app-store.svg b/apps/client/src/static/icons/brands/app-store.svg similarity index 100% rename from src/static/icons/brands/app-store.svg rename to apps/client/src/static/icons/brands/app-store.svg diff --git a/src/static/icons/brands/apper.svg b/apps/client/src/static/icons/brands/apper.svg similarity index 100% rename from src/static/icons/brands/apper.svg rename to apps/client/src/static/icons/brands/apper.svg diff --git a/src/static/icons/brands/apple-pay.svg b/apps/client/src/static/icons/brands/apple-pay.svg similarity index 100% rename from src/static/icons/brands/apple-pay.svg rename to apps/client/src/static/icons/brands/apple-pay.svg diff --git a/src/static/icons/brands/apple.svg b/apps/client/src/static/icons/brands/apple.svg similarity index 100% rename from src/static/icons/brands/apple.svg rename to apps/client/src/static/icons/brands/apple.svg diff --git a/src/static/icons/brands/artstation.svg b/apps/client/src/static/icons/brands/artstation.svg similarity index 100% rename from src/static/icons/brands/artstation.svg rename to apps/client/src/static/icons/brands/artstation.svg diff --git a/src/static/icons/brands/asymmetrik.svg b/apps/client/src/static/icons/brands/asymmetrik.svg similarity index 100% rename from src/static/icons/brands/asymmetrik.svg rename to apps/client/src/static/icons/brands/asymmetrik.svg diff --git a/src/static/icons/brands/atlassian.svg b/apps/client/src/static/icons/brands/atlassian.svg similarity index 100% rename from src/static/icons/brands/atlassian.svg rename to apps/client/src/static/icons/brands/atlassian.svg diff --git a/src/static/icons/brands/audible.svg b/apps/client/src/static/icons/brands/audible.svg similarity index 100% rename from src/static/icons/brands/audible.svg rename to apps/client/src/static/icons/brands/audible.svg diff --git a/src/static/icons/brands/autoprefixer.svg b/apps/client/src/static/icons/brands/autoprefixer.svg similarity index 100% rename from src/static/icons/brands/autoprefixer.svg rename to apps/client/src/static/icons/brands/autoprefixer.svg diff --git a/src/static/icons/brands/avianex.svg b/apps/client/src/static/icons/brands/avianex.svg similarity index 100% rename from src/static/icons/brands/avianex.svg rename to apps/client/src/static/icons/brands/avianex.svg diff --git a/src/static/icons/brands/aviato.svg b/apps/client/src/static/icons/brands/aviato.svg similarity index 100% rename from src/static/icons/brands/aviato.svg rename to apps/client/src/static/icons/brands/aviato.svg diff --git a/src/static/icons/brands/aws.svg b/apps/client/src/static/icons/brands/aws.svg similarity index 100% rename from src/static/icons/brands/aws.svg rename to apps/client/src/static/icons/brands/aws.svg diff --git a/src/static/icons/brands/bandcamp.svg b/apps/client/src/static/icons/brands/bandcamp.svg similarity index 100% rename from src/static/icons/brands/bandcamp.svg rename to apps/client/src/static/icons/brands/bandcamp.svg diff --git a/src/static/icons/brands/battle-net.svg b/apps/client/src/static/icons/brands/battle-net.svg similarity index 100% rename from src/static/icons/brands/battle-net.svg rename to apps/client/src/static/icons/brands/battle-net.svg diff --git a/src/static/icons/brands/behance-square.svg b/apps/client/src/static/icons/brands/behance-square.svg similarity index 100% rename from src/static/icons/brands/behance-square.svg rename to apps/client/src/static/icons/brands/behance-square.svg diff --git a/src/static/icons/brands/behance.svg b/apps/client/src/static/icons/brands/behance.svg similarity index 100% rename from src/static/icons/brands/behance.svg rename to apps/client/src/static/icons/brands/behance.svg diff --git a/src/static/icons/brands/bimobject.svg b/apps/client/src/static/icons/brands/bimobject.svg similarity index 100% rename from src/static/icons/brands/bimobject.svg rename to apps/client/src/static/icons/brands/bimobject.svg diff --git a/src/static/icons/brands/bitbucket.svg b/apps/client/src/static/icons/brands/bitbucket.svg similarity index 100% rename from src/static/icons/brands/bitbucket.svg rename to apps/client/src/static/icons/brands/bitbucket.svg diff --git a/src/static/icons/brands/bitcoin.svg b/apps/client/src/static/icons/brands/bitcoin.svg similarity index 100% rename from src/static/icons/brands/bitcoin.svg rename to apps/client/src/static/icons/brands/bitcoin.svg diff --git a/src/static/icons/brands/bity.svg b/apps/client/src/static/icons/brands/bity.svg similarity index 100% rename from src/static/icons/brands/bity.svg rename to apps/client/src/static/icons/brands/bity.svg diff --git a/src/static/icons/brands/black-tie.svg b/apps/client/src/static/icons/brands/black-tie.svg similarity index 100% rename from src/static/icons/brands/black-tie.svg rename to apps/client/src/static/icons/brands/black-tie.svg diff --git a/src/static/icons/brands/blackberry.svg b/apps/client/src/static/icons/brands/blackberry.svg similarity index 100% rename from src/static/icons/brands/blackberry.svg rename to apps/client/src/static/icons/brands/blackberry.svg diff --git a/src/static/icons/brands/blogger-b.svg b/apps/client/src/static/icons/brands/blogger-b.svg similarity index 100% rename from src/static/icons/brands/blogger-b.svg rename to apps/client/src/static/icons/brands/blogger-b.svg diff --git a/src/static/icons/brands/blogger.svg b/apps/client/src/static/icons/brands/blogger.svg similarity index 100% rename from src/static/icons/brands/blogger.svg rename to apps/client/src/static/icons/brands/blogger.svg diff --git a/src/static/icons/brands/bluetooth-b.svg b/apps/client/src/static/icons/brands/bluetooth-b.svg similarity index 100% rename from src/static/icons/brands/bluetooth-b.svg rename to apps/client/src/static/icons/brands/bluetooth-b.svg diff --git a/src/static/icons/brands/bluetooth.svg b/apps/client/src/static/icons/brands/bluetooth.svg similarity index 100% rename from src/static/icons/brands/bluetooth.svg rename to apps/client/src/static/icons/brands/bluetooth.svg diff --git a/src/static/icons/brands/bootstrap.svg b/apps/client/src/static/icons/brands/bootstrap.svg similarity index 100% rename from src/static/icons/brands/bootstrap.svg rename to apps/client/src/static/icons/brands/bootstrap.svg diff --git a/src/static/icons/brands/btc.svg b/apps/client/src/static/icons/brands/btc.svg similarity index 100% rename from src/static/icons/brands/btc.svg rename to apps/client/src/static/icons/brands/btc.svg diff --git a/src/static/icons/brands/buffer.svg b/apps/client/src/static/icons/brands/buffer.svg similarity index 100% rename from src/static/icons/brands/buffer.svg rename to apps/client/src/static/icons/brands/buffer.svg diff --git a/src/static/icons/brands/buromobelexperte.svg b/apps/client/src/static/icons/brands/buromobelexperte.svg similarity index 100% rename from src/static/icons/brands/buromobelexperte.svg rename to apps/client/src/static/icons/brands/buromobelexperte.svg diff --git a/src/static/icons/brands/buy-n-large.svg b/apps/client/src/static/icons/brands/buy-n-large.svg similarity index 100% rename from src/static/icons/brands/buy-n-large.svg rename to apps/client/src/static/icons/brands/buy-n-large.svg diff --git a/src/static/icons/brands/buysellads.svg b/apps/client/src/static/icons/brands/buysellads.svg similarity index 100% rename from src/static/icons/brands/buysellads.svg rename to apps/client/src/static/icons/brands/buysellads.svg diff --git a/src/static/icons/brands/canadian-maple-leaf.svg b/apps/client/src/static/icons/brands/canadian-maple-leaf.svg similarity index 100% rename from src/static/icons/brands/canadian-maple-leaf.svg rename to apps/client/src/static/icons/brands/canadian-maple-leaf.svg diff --git a/src/static/icons/brands/cc-amazon-pay.svg b/apps/client/src/static/icons/brands/cc-amazon-pay.svg similarity index 100% rename from src/static/icons/brands/cc-amazon-pay.svg rename to apps/client/src/static/icons/brands/cc-amazon-pay.svg diff --git a/src/static/icons/brands/cc-amex.svg b/apps/client/src/static/icons/brands/cc-amex.svg similarity index 100% rename from src/static/icons/brands/cc-amex.svg rename to apps/client/src/static/icons/brands/cc-amex.svg diff --git a/src/static/icons/brands/cc-apple-pay.svg b/apps/client/src/static/icons/brands/cc-apple-pay.svg similarity index 100% rename from src/static/icons/brands/cc-apple-pay.svg rename to apps/client/src/static/icons/brands/cc-apple-pay.svg diff --git a/src/static/icons/brands/cc-diners-club.svg b/apps/client/src/static/icons/brands/cc-diners-club.svg similarity index 100% rename from src/static/icons/brands/cc-diners-club.svg rename to apps/client/src/static/icons/brands/cc-diners-club.svg diff --git a/src/static/icons/brands/cc-discover.svg b/apps/client/src/static/icons/brands/cc-discover.svg similarity index 100% rename from src/static/icons/brands/cc-discover.svg rename to apps/client/src/static/icons/brands/cc-discover.svg diff --git a/src/static/icons/brands/cc-jcb.svg b/apps/client/src/static/icons/brands/cc-jcb.svg similarity index 100% rename from src/static/icons/brands/cc-jcb.svg rename to apps/client/src/static/icons/brands/cc-jcb.svg diff --git a/src/static/icons/brands/cc-mastercard.svg b/apps/client/src/static/icons/brands/cc-mastercard.svg similarity index 100% rename from src/static/icons/brands/cc-mastercard.svg rename to apps/client/src/static/icons/brands/cc-mastercard.svg diff --git a/src/static/icons/brands/cc-paypal.svg b/apps/client/src/static/icons/brands/cc-paypal.svg similarity index 100% rename from src/static/icons/brands/cc-paypal.svg rename to apps/client/src/static/icons/brands/cc-paypal.svg diff --git a/src/static/icons/brands/cc-stripe.svg b/apps/client/src/static/icons/brands/cc-stripe.svg similarity index 100% rename from src/static/icons/brands/cc-stripe.svg rename to apps/client/src/static/icons/brands/cc-stripe.svg diff --git a/src/static/icons/brands/cc-visa.svg b/apps/client/src/static/icons/brands/cc-visa.svg similarity index 100% rename from src/static/icons/brands/cc-visa.svg rename to apps/client/src/static/icons/brands/cc-visa.svg diff --git a/src/static/icons/brands/centercode.svg b/apps/client/src/static/icons/brands/centercode.svg similarity index 100% rename from src/static/icons/brands/centercode.svg rename to apps/client/src/static/icons/brands/centercode.svg diff --git a/src/static/icons/brands/centos.svg b/apps/client/src/static/icons/brands/centos.svg similarity index 100% rename from src/static/icons/brands/centos.svg rename to apps/client/src/static/icons/brands/centos.svg diff --git a/src/static/icons/brands/chrome.svg b/apps/client/src/static/icons/brands/chrome.svg similarity index 100% rename from src/static/icons/brands/chrome.svg rename to apps/client/src/static/icons/brands/chrome.svg diff --git a/src/static/icons/brands/chromecast.svg b/apps/client/src/static/icons/brands/chromecast.svg similarity index 100% rename from src/static/icons/brands/chromecast.svg rename to apps/client/src/static/icons/brands/chromecast.svg diff --git a/src/static/icons/brands/cloudscale.svg b/apps/client/src/static/icons/brands/cloudscale.svg similarity index 100% rename from src/static/icons/brands/cloudscale.svg rename to apps/client/src/static/icons/brands/cloudscale.svg diff --git a/src/static/icons/brands/cloudsmith.svg b/apps/client/src/static/icons/brands/cloudsmith.svg similarity index 100% rename from src/static/icons/brands/cloudsmith.svg rename to apps/client/src/static/icons/brands/cloudsmith.svg diff --git a/src/static/icons/brands/cloudversify.svg b/apps/client/src/static/icons/brands/cloudversify.svg similarity index 100% rename from src/static/icons/brands/cloudversify.svg rename to apps/client/src/static/icons/brands/cloudversify.svg diff --git a/src/static/icons/brands/codepen.svg b/apps/client/src/static/icons/brands/codepen.svg similarity index 100% rename from src/static/icons/brands/codepen.svg rename to apps/client/src/static/icons/brands/codepen.svg diff --git a/src/static/icons/brands/codiepie.svg b/apps/client/src/static/icons/brands/codiepie.svg similarity index 100% rename from src/static/icons/brands/codiepie.svg rename to apps/client/src/static/icons/brands/codiepie.svg diff --git a/src/static/icons/brands/confluence.svg b/apps/client/src/static/icons/brands/confluence.svg similarity index 100% rename from src/static/icons/brands/confluence.svg rename to apps/client/src/static/icons/brands/confluence.svg diff --git a/src/static/icons/brands/connectdevelop.svg b/apps/client/src/static/icons/brands/connectdevelop.svg similarity index 100% rename from src/static/icons/brands/connectdevelop.svg rename to apps/client/src/static/icons/brands/connectdevelop.svg diff --git a/src/static/icons/brands/contao.svg b/apps/client/src/static/icons/brands/contao.svg similarity index 100% rename from src/static/icons/brands/contao.svg rename to apps/client/src/static/icons/brands/contao.svg diff --git a/src/static/icons/brands/cotton-bureau.svg b/apps/client/src/static/icons/brands/cotton-bureau.svg similarity index 100% rename from src/static/icons/brands/cotton-bureau.svg rename to apps/client/src/static/icons/brands/cotton-bureau.svg diff --git a/src/static/icons/brands/cpanel.svg b/apps/client/src/static/icons/brands/cpanel.svg similarity index 100% rename from src/static/icons/brands/cpanel.svg rename to apps/client/src/static/icons/brands/cpanel.svg diff --git a/src/static/icons/brands/creative-commons-by.svg b/apps/client/src/static/icons/brands/creative-commons-by.svg similarity index 100% rename from src/static/icons/brands/creative-commons-by.svg rename to apps/client/src/static/icons/brands/creative-commons-by.svg diff --git a/src/static/icons/brands/creative-commons-nc-eu.svg b/apps/client/src/static/icons/brands/creative-commons-nc-eu.svg similarity index 100% rename from src/static/icons/brands/creative-commons-nc-eu.svg rename to apps/client/src/static/icons/brands/creative-commons-nc-eu.svg diff --git a/src/static/icons/brands/creative-commons-nc-jp.svg b/apps/client/src/static/icons/brands/creative-commons-nc-jp.svg similarity index 100% rename from src/static/icons/brands/creative-commons-nc-jp.svg rename to apps/client/src/static/icons/brands/creative-commons-nc-jp.svg diff --git a/src/static/icons/brands/creative-commons-nc.svg b/apps/client/src/static/icons/brands/creative-commons-nc.svg similarity index 100% rename from src/static/icons/brands/creative-commons-nc.svg rename to apps/client/src/static/icons/brands/creative-commons-nc.svg diff --git a/src/static/icons/brands/creative-commons-nd.svg b/apps/client/src/static/icons/brands/creative-commons-nd.svg similarity index 100% rename from src/static/icons/brands/creative-commons-nd.svg rename to apps/client/src/static/icons/brands/creative-commons-nd.svg diff --git a/src/static/icons/brands/creative-commons-pd-alt.svg b/apps/client/src/static/icons/brands/creative-commons-pd-alt.svg similarity index 100% rename from src/static/icons/brands/creative-commons-pd-alt.svg rename to apps/client/src/static/icons/brands/creative-commons-pd-alt.svg diff --git a/src/static/icons/brands/creative-commons-pd.svg b/apps/client/src/static/icons/brands/creative-commons-pd.svg similarity index 100% rename from src/static/icons/brands/creative-commons-pd.svg rename to apps/client/src/static/icons/brands/creative-commons-pd.svg diff --git a/src/static/icons/brands/creative-commons-remix.svg b/apps/client/src/static/icons/brands/creative-commons-remix.svg similarity index 100% rename from src/static/icons/brands/creative-commons-remix.svg rename to apps/client/src/static/icons/brands/creative-commons-remix.svg diff --git a/src/static/icons/brands/creative-commons-sa.svg b/apps/client/src/static/icons/brands/creative-commons-sa.svg similarity index 100% rename from src/static/icons/brands/creative-commons-sa.svg rename to apps/client/src/static/icons/brands/creative-commons-sa.svg diff --git a/src/static/icons/brands/creative-commons-sampling-plus.svg b/apps/client/src/static/icons/brands/creative-commons-sampling-plus.svg similarity index 100% rename from src/static/icons/brands/creative-commons-sampling-plus.svg rename to apps/client/src/static/icons/brands/creative-commons-sampling-plus.svg diff --git a/src/static/icons/brands/creative-commons-sampling.svg b/apps/client/src/static/icons/brands/creative-commons-sampling.svg similarity index 100% rename from src/static/icons/brands/creative-commons-sampling.svg rename to apps/client/src/static/icons/brands/creative-commons-sampling.svg diff --git a/src/static/icons/brands/creative-commons-share.svg b/apps/client/src/static/icons/brands/creative-commons-share.svg similarity index 100% rename from src/static/icons/brands/creative-commons-share.svg rename to apps/client/src/static/icons/brands/creative-commons-share.svg diff --git a/src/static/icons/brands/creative-commons-zero.svg b/apps/client/src/static/icons/brands/creative-commons-zero.svg similarity index 100% rename from src/static/icons/brands/creative-commons-zero.svg rename to apps/client/src/static/icons/brands/creative-commons-zero.svg diff --git a/src/static/icons/brands/creative-commons.svg b/apps/client/src/static/icons/brands/creative-commons.svg similarity index 100% rename from src/static/icons/brands/creative-commons.svg rename to apps/client/src/static/icons/brands/creative-commons.svg diff --git a/src/static/icons/brands/critical-role.svg b/apps/client/src/static/icons/brands/critical-role.svg similarity index 100% rename from src/static/icons/brands/critical-role.svg rename to apps/client/src/static/icons/brands/critical-role.svg diff --git a/src/static/icons/brands/css3-alt.svg b/apps/client/src/static/icons/brands/css3-alt.svg similarity index 100% rename from src/static/icons/brands/css3-alt.svg rename to apps/client/src/static/icons/brands/css3-alt.svg diff --git a/src/static/icons/brands/css3.svg b/apps/client/src/static/icons/brands/css3.svg similarity index 100% rename from src/static/icons/brands/css3.svg rename to apps/client/src/static/icons/brands/css3.svg diff --git a/src/static/icons/brands/cuttlefish.svg b/apps/client/src/static/icons/brands/cuttlefish.svg similarity index 100% rename from src/static/icons/brands/cuttlefish.svg rename to apps/client/src/static/icons/brands/cuttlefish.svg diff --git a/src/static/icons/brands/d-and-d-beyond.svg b/apps/client/src/static/icons/brands/d-and-d-beyond.svg similarity index 100% rename from src/static/icons/brands/d-and-d-beyond.svg rename to apps/client/src/static/icons/brands/d-and-d-beyond.svg diff --git a/src/static/icons/brands/d-and-d.svg b/apps/client/src/static/icons/brands/d-and-d.svg similarity index 100% rename from src/static/icons/brands/d-and-d.svg rename to apps/client/src/static/icons/brands/d-and-d.svg diff --git a/src/static/icons/brands/dashcube.svg b/apps/client/src/static/icons/brands/dashcube.svg similarity index 100% rename from src/static/icons/brands/dashcube.svg rename to apps/client/src/static/icons/brands/dashcube.svg diff --git a/src/static/icons/brands/delicious.svg b/apps/client/src/static/icons/brands/delicious.svg similarity index 100% rename from src/static/icons/brands/delicious.svg rename to apps/client/src/static/icons/brands/delicious.svg diff --git a/src/static/icons/brands/deploydog.svg b/apps/client/src/static/icons/brands/deploydog.svg similarity index 100% rename from src/static/icons/brands/deploydog.svg rename to apps/client/src/static/icons/brands/deploydog.svg diff --git a/src/static/icons/brands/deskpro.svg b/apps/client/src/static/icons/brands/deskpro.svg similarity index 100% rename from src/static/icons/brands/deskpro.svg rename to apps/client/src/static/icons/brands/deskpro.svg diff --git a/src/static/icons/brands/dev.svg b/apps/client/src/static/icons/brands/dev.svg similarity index 100% rename from src/static/icons/brands/dev.svg rename to apps/client/src/static/icons/brands/dev.svg diff --git a/src/static/icons/brands/deviantart.svg b/apps/client/src/static/icons/brands/deviantart.svg similarity index 100% rename from src/static/icons/brands/deviantart.svg rename to apps/client/src/static/icons/brands/deviantart.svg diff --git a/src/static/icons/brands/dhl.svg b/apps/client/src/static/icons/brands/dhl.svg similarity index 100% rename from src/static/icons/brands/dhl.svg rename to apps/client/src/static/icons/brands/dhl.svg diff --git a/src/static/icons/brands/diaspora.svg b/apps/client/src/static/icons/brands/diaspora.svg similarity index 100% rename from src/static/icons/brands/diaspora.svg rename to apps/client/src/static/icons/brands/diaspora.svg diff --git a/src/static/icons/brands/digg.svg b/apps/client/src/static/icons/brands/digg.svg similarity index 100% rename from src/static/icons/brands/digg.svg rename to apps/client/src/static/icons/brands/digg.svg diff --git a/src/static/icons/brands/digital-ocean.svg b/apps/client/src/static/icons/brands/digital-ocean.svg similarity index 100% rename from src/static/icons/brands/digital-ocean.svg rename to apps/client/src/static/icons/brands/digital-ocean.svg diff --git a/src/static/icons/brands/discord.svg b/apps/client/src/static/icons/brands/discord.svg similarity index 100% rename from src/static/icons/brands/discord.svg rename to apps/client/src/static/icons/brands/discord.svg diff --git a/src/static/icons/brands/discourse.svg b/apps/client/src/static/icons/brands/discourse.svg similarity index 100% rename from src/static/icons/brands/discourse.svg rename to apps/client/src/static/icons/brands/discourse.svg diff --git a/src/static/icons/brands/dochub.svg b/apps/client/src/static/icons/brands/dochub.svg similarity index 100% rename from src/static/icons/brands/dochub.svg rename to apps/client/src/static/icons/brands/dochub.svg diff --git a/src/static/icons/brands/docker.svg b/apps/client/src/static/icons/brands/docker.svg similarity index 100% rename from src/static/icons/brands/docker.svg rename to apps/client/src/static/icons/brands/docker.svg diff --git a/src/static/icons/brands/draft2digital.svg b/apps/client/src/static/icons/brands/draft2digital.svg similarity index 100% rename from src/static/icons/brands/draft2digital.svg rename to apps/client/src/static/icons/brands/draft2digital.svg diff --git a/src/static/icons/brands/dribbble-square.svg b/apps/client/src/static/icons/brands/dribbble-square.svg similarity index 100% rename from src/static/icons/brands/dribbble-square.svg rename to apps/client/src/static/icons/brands/dribbble-square.svg diff --git a/src/static/icons/brands/dribbble.svg b/apps/client/src/static/icons/brands/dribbble.svg similarity index 100% rename from src/static/icons/brands/dribbble.svg rename to apps/client/src/static/icons/brands/dribbble.svg diff --git a/src/static/icons/brands/dropbox.svg b/apps/client/src/static/icons/brands/dropbox.svg similarity index 100% rename from src/static/icons/brands/dropbox.svg rename to apps/client/src/static/icons/brands/dropbox.svg diff --git a/src/static/icons/brands/drupal.svg b/apps/client/src/static/icons/brands/drupal.svg similarity index 100% rename from src/static/icons/brands/drupal.svg rename to apps/client/src/static/icons/brands/drupal.svg diff --git a/src/static/icons/brands/dyalog.svg b/apps/client/src/static/icons/brands/dyalog.svg similarity index 100% rename from src/static/icons/brands/dyalog.svg rename to apps/client/src/static/icons/brands/dyalog.svg diff --git a/src/static/icons/brands/earlybirds.svg b/apps/client/src/static/icons/brands/earlybirds.svg similarity index 100% rename from src/static/icons/brands/earlybirds.svg rename to apps/client/src/static/icons/brands/earlybirds.svg diff --git a/src/static/icons/brands/ebay.svg b/apps/client/src/static/icons/brands/ebay.svg similarity index 100% rename from src/static/icons/brands/ebay.svg rename to apps/client/src/static/icons/brands/ebay.svg diff --git a/src/static/icons/brands/edge.svg b/apps/client/src/static/icons/brands/edge.svg similarity index 100% rename from src/static/icons/brands/edge.svg rename to apps/client/src/static/icons/brands/edge.svg diff --git a/src/static/icons/brands/elementor.svg b/apps/client/src/static/icons/brands/elementor.svg similarity index 100% rename from src/static/icons/brands/elementor.svg rename to apps/client/src/static/icons/brands/elementor.svg diff --git a/src/static/icons/brands/ello.svg b/apps/client/src/static/icons/brands/ello.svg similarity index 100% rename from src/static/icons/brands/ello.svg rename to apps/client/src/static/icons/brands/ello.svg diff --git a/src/static/icons/brands/ember.svg b/apps/client/src/static/icons/brands/ember.svg similarity index 100% rename from src/static/icons/brands/ember.svg rename to apps/client/src/static/icons/brands/ember.svg diff --git a/src/static/icons/brands/empire.svg b/apps/client/src/static/icons/brands/empire.svg similarity index 100% rename from src/static/icons/brands/empire.svg rename to apps/client/src/static/icons/brands/empire.svg diff --git a/src/static/icons/brands/envira.svg b/apps/client/src/static/icons/brands/envira.svg similarity index 100% rename from src/static/icons/brands/envira.svg rename to apps/client/src/static/icons/brands/envira.svg diff --git a/src/static/icons/brands/erlang.svg b/apps/client/src/static/icons/brands/erlang.svg similarity index 100% rename from src/static/icons/brands/erlang.svg rename to apps/client/src/static/icons/brands/erlang.svg diff --git a/src/static/icons/brands/ethereum.svg b/apps/client/src/static/icons/brands/ethereum.svg similarity index 100% rename from src/static/icons/brands/ethereum.svg rename to apps/client/src/static/icons/brands/ethereum.svg diff --git a/src/static/icons/brands/etsy.svg b/apps/client/src/static/icons/brands/etsy.svg similarity index 100% rename from src/static/icons/brands/etsy.svg rename to apps/client/src/static/icons/brands/etsy.svg diff --git a/src/static/icons/brands/evernote.svg b/apps/client/src/static/icons/brands/evernote.svg similarity index 100% rename from src/static/icons/brands/evernote.svg rename to apps/client/src/static/icons/brands/evernote.svg diff --git a/src/static/icons/brands/expeditedssl.svg b/apps/client/src/static/icons/brands/expeditedssl.svg similarity index 100% rename from src/static/icons/brands/expeditedssl.svg rename to apps/client/src/static/icons/brands/expeditedssl.svg diff --git a/src/static/icons/brands/facebook-f.svg b/apps/client/src/static/icons/brands/facebook-f.svg similarity index 100% rename from src/static/icons/brands/facebook-f.svg rename to apps/client/src/static/icons/brands/facebook-f.svg diff --git a/src/static/icons/brands/facebook-messenger.svg b/apps/client/src/static/icons/brands/facebook-messenger.svg similarity index 100% rename from src/static/icons/brands/facebook-messenger.svg rename to apps/client/src/static/icons/brands/facebook-messenger.svg diff --git a/src/static/icons/brands/facebook-square.svg b/apps/client/src/static/icons/brands/facebook-square.svg similarity index 100% rename from src/static/icons/brands/facebook-square.svg rename to apps/client/src/static/icons/brands/facebook-square.svg diff --git a/src/static/icons/brands/facebook.svg b/apps/client/src/static/icons/brands/facebook.svg similarity index 100% rename from src/static/icons/brands/facebook.svg rename to apps/client/src/static/icons/brands/facebook.svg diff --git a/src/static/icons/brands/fantasy-flight-games.svg b/apps/client/src/static/icons/brands/fantasy-flight-games.svg similarity index 100% rename from src/static/icons/brands/fantasy-flight-games.svg rename to apps/client/src/static/icons/brands/fantasy-flight-games.svg diff --git a/src/static/icons/brands/fedex.svg b/apps/client/src/static/icons/brands/fedex.svg similarity index 100% rename from src/static/icons/brands/fedex.svg rename to apps/client/src/static/icons/brands/fedex.svg diff --git a/src/static/icons/brands/fedora.svg b/apps/client/src/static/icons/brands/fedora.svg similarity index 100% rename from src/static/icons/brands/fedora.svg rename to apps/client/src/static/icons/brands/fedora.svg diff --git a/src/static/icons/brands/figma.svg b/apps/client/src/static/icons/brands/figma.svg similarity index 100% rename from src/static/icons/brands/figma.svg rename to apps/client/src/static/icons/brands/figma.svg diff --git a/src/static/icons/brands/firefox-browser.svg b/apps/client/src/static/icons/brands/firefox-browser.svg similarity index 100% rename from src/static/icons/brands/firefox-browser.svg rename to apps/client/src/static/icons/brands/firefox-browser.svg diff --git a/src/static/icons/brands/firefox.svg b/apps/client/src/static/icons/brands/firefox.svg similarity index 100% rename from src/static/icons/brands/firefox.svg rename to apps/client/src/static/icons/brands/firefox.svg diff --git a/src/static/icons/brands/first-order-alt.svg b/apps/client/src/static/icons/brands/first-order-alt.svg similarity index 100% rename from src/static/icons/brands/first-order-alt.svg rename to apps/client/src/static/icons/brands/first-order-alt.svg diff --git a/src/static/icons/brands/first-order.svg b/apps/client/src/static/icons/brands/first-order.svg similarity index 100% rename from src/static/icons/brands/first-order.svg rename to apps/client/src/static/icons/brands/first-order.svg diff --git a/src/static/icons/brands/firstdraft.svg b/apps/client/src/static/icons/brands/firstdraft.svg similarity index 100% rename from src/static/icons/brands/firstdraft.svg rename to apps/client/src/static/icons/brands/firstdraft.svg diff --git a/src/static/icons/brands/flickr.svg b/apps/client/src/static/icons/brands/flickr.svg similarity index 100% rename from src/static/icons/brands/flickr.svg rename to apps/client/src/static/icons/brands/flickr.svg diff --git a/src/static/icons/brands/flipboard.svg b/apps/client/src/static/icons/brands/flipboard.svg similarity index 100% rename from src/static/icons/brands/flipboard.svg rename to apps/client/src/static/icons/brands/flipboard.svg diff --git a/src/static/icons/brands/fly.svg b/apps/client/src/static/icons/brands/fly.svg similarity index 100% rename from src/static/icons/brands/fly.svg rename to apps/client/src/static/icons/brands/fly.svg diff --git a/src/static/icons/brands/font-awesome-alt.svg b/apps/client/src/static/icons/brands/font-awesome-alt.svg similarity index 100% rename from src/static/icons/brands/font-awesome-alt.svg rename to apps/client/src/static/icons/brands/font-awesome-alt.svg diff --git a/src/static/icons/brands/font-awesome-flag.svg b/apps/client/src/static/icons/brands/font-awesome-flag.svg similarity index 100% rename from src/static/icons/brands/font-awesome-flag.svg rename to apps/client/src/static/icons/brands/font-awesome-flag.svg diff --git a/src/static/icons/brands/font-awesome-logo-full.svg b/apps/client/src/static/icons/brands/font-awesome-logo-full.svg similarity index 100% rename from src/static/icons/brands/font-awesome-logo-full.svg rename to apps/client/src/static/icons/brands/font-awesome-logo-full.svg diff --git a/src/static/icons/brands/font-awesome.svg b/apps/client/src/static/icons/brands/font-awesome.svg similarity index 100% rename from src/static/icons/brands/font-awesome.svg rename to apps/client/src/static/icons/brands/font-awesome.svg diff --git a/src/static/icons/brands/fonticons-fi.svg b/apps/client/src/static/icons/brands/fonticons-fi.svg similarity index 100% rename from src/static/icons/brands/fonticons-fi.svg rename to apps/client/src/static/icons/brands/fonticons-fi.svg diff --git a/src/static/icons/brands/fonticons.svg b/apps/client/src/static/icons/brands/fonticons.svg similarity index 100% rename from src/static/icons/brands/fonticons.svg rename to apps/client/src/static/icons/brands/fonticons.svg diff --git a/src/static/icons/brands/fort-awesome-alt.svg b/apps/client/src/static/icons/brands/fort-awesome-alt.svg similarity index 100% rename from src/static/icons/brands/fort-awesome-alt.svg rename to apps/client/src/static/icons/brands/fort-awesome-alt.svg diff --git a/src/static/icons/brands/fort-awesome.svg b/apps/client/src/static/icons/brands/fort-awesome.svg similarity index 100% rename from src/static/icons/brands/fort-awesome.svg rename to apps/client/src/static/icons/brands/fort-awesome.svg diff --git a/src/static/icons/brands/forumbee.svg b/apps/client/src/static/icons/brands/forumbee.svg similarity index 100% rename from src/static/icons/brands/forumbee.svg rename to apps/client/src/static/icons/brands/forumbee.svg diff --git a/src/static/icons/brands/foursquare.svg b/apps/client/src/static/icons/brands/foursquare.svg similarity index 100% rename from src/static/icons/brands/foursquare.svg rename to apps/client/src/static/icons/brands/foursquare.svg diff --git a/src/static/icons/brands/free-code-camp.svg b/apps/client/src/static/icons/brands/free-code-camp.svg similarity index 100% rename from src/static/icons/brands/free-code-camp.svg rename to apps/client/src/static/icons/brands/free-code-camp.svg diff --git a/src/static/icons/brands/freebsd.svg b/apps/client/src/static/icons/brands/freebsd.svg similarity index 100% rename from src/static/icons/brands/freebsd.svg rename to apps/client/src/static/icons/brands/freebsd.svg diff --git a/src/static/icons/brands/fulcrum.svg b/apps/client/src/static/icons/brands/fulcrum.svg similarity index 100% rename from src/static/icons/brands/fulcrum.svg rename to apps/client/src/static/icons/brands/fulcrum.svg diff --git a/src/static/icons/brands/galactic-republic.svg b/apps/client/src/static/icons/brands/galactic-republic.svg similarity index 100% rename from src/static/icons/brands/galactic-republic.svg rename to apps/client/src/static/icons/brands/galactic-republic.svg diff --git a/src/static/icons/brands/galactic-senate.svg b/apps/client/src/static/icons/brands/galactic-senate.svg similarity index 100% rename from src/static/icons/brands/galactic-senate.svg rename to apps/client/src/static/icons/brands/galactic-senate.svg diff --git a/src/static/icons/brands/get-pocket.svg b/apps/client/src/static/icons/brands/get-pocket.svg similarity index 100% rename from src/static/icons/brands/get-pocket.svg rename to apps/client/src/static/icons/brands/get-pocket.svg diff --git a/src/static/icons/brands/gg-circle.svg b/apps/client/src/static/icons/brands/gg-circle.svg similarity index 100% rename from src/static/icons/brands/gg-circle.svg rename to apps/client/src/static/icons/brands/gg-circle.svg diff --git a/src/static/icons/brands/gg.svg b/apps/client/src/static/icons/brands/gg.svg similarity index 100% rename from src/static/icons/brands/gg.svg rename to apps/client/src/static/icons/brands/gg.svg diff --git a/src/static/icons/brands/git-alt.svg b/apps/client/src/static/icons/brands/git-alt.svg similarity index 100% rename from src/static/icons/brands/git-alt.svg rename to apps/client/src/static/icons/brands/git-alt.svg diff --git a/src/static/icons/brands/git-square.svg b/apps/client/src/static/icons/brands/git-square.svg similarity index 100% rename from src/static/icons/brands/git-square.svg rename to apps/client/src/static/icons/brands/git-square.svg diff --git a/src/static/icons/brands/git.svg b/apps/client/src/static/icons/brands/git.svg similarity index 100% rename from src/static/icons/brands/git.svg rename to apps/client/src/static/icons/brands/git.svg diff --git a/src/static/icons/brands/github-alt.svg b/apps/client/src/static/icons/brands/github-alt.svg similarity index 100% rename from src/static/icons/brands/github-alt.svg rename to apps/client/src/static/icons/brands/github-alt.svg diff --git a/src/static/icons/brands/github-square.svg b/apps/client/src/static/icons/brands/github-square.svg similarity index 100% rename from src/static/icons/brands/github-square.svg rename to apps/client/src/static/icons/brands/github-square.svg diff --git a/src/static/icons/brands/github.svg b/apps/client/src/static/icons/brands/github.svg similarity index 100% rename from src/static/icons/brands/github.svg rename to apps/client/src/static/icons/brands/github.svg diff --git a/src/static/icons/brands/gitkraken.svg b/apps/client/src/static/icons/brands/gitkraken.svg similarity index 100% rename from src/static/icons/brands/gitkraken.svg rename to apps/client/src/static/icons/brands/gitkraken.svg diff --git a/src/static/icons/brands/gitlab.svg b/apps/client/src/static/icons/brands/gitlab.svg similarity index 100% rename from src/static/icons/brands/gitlab.svg rename to apps/client/src/static/icons/brands/gitlab.svg diff --git a/src/static/icons/brands/gitter.svg b/apps/client/src/static/icons/brands/gitter.svg similarity index 100% rename from src/static/icons/brands/gitter.svg rename to apps/client/src/static/icons/brands/gitter.svg diff --git a/src/static/icons/brands/glide-g.svg b/apps/client/src/static/icons/brands/glide-g.svg similarity index 100% rename from src/static/icons/brands/glide-g.svg rename to apps/client/src/static/icons/brands/glide-g.svg diff --git a/src/static/icons/brands/glide.svg b/apps/client/src/static/icons/brands/glide.svg similarity index 100% rename from src/static/icons/brands/glide.svg rename to apps/client/src/static/icons/brands/glide.svg diff --git a/src/static/icons/brands/gofore.svg b/apps/client/src/static/icons/brands/gofore.svg similarity index 100% rename from src/static/icons/brands/gofore.svg rename to apps/client/src/static/icons/brands/gofore.svg diff --git a/src/static/icons/brands/goodreads-g.svg b/apps/client/src/static/icons/brands/goodreads-g.svg similarity index 100% rename from src/static/icons/brands/goodreads-g.svg rename to apps/client/src/static/icons/brands/goodreads-g.svg diff --git a/src/static/icons/brands/goodreads.svg b/apps/client/src/static/icons/brands/goodreads.svg similarity index 100% rename from src/static/icons/brands/goodreads.svg rename to apps/client/src/static/icons/brands/goodreads.svg diff --git a/src/static/icons/brands/google-drive.svg b/apps/client/src/static/icons/brands/google-drive.svg similarity index 100% rename from src/static/icons/brands/google-drive.svg rename to apps/client/src/static/icons/brands/google-drive.svg diff --git a/src/static/icons/brands/google-play.svg b/apps/client/src/static/icons/brands/google-play.svg similarity index 100% rename from src/static/icons/brands/google-play.svg rename to apps/client/src/static/icons/brands/google-play.svg diff --git a/src/static/icons/brands/google-plus-g.svg b/apps/client/src/static/icons/brands/google-plus-g.svg similarity index 100% rename from src/static/icons/brands/google-plus-g.svg rename to apps/client/src/static/icons/brands/google-plus-g.svg diff --git a/src/static/icons/brands/google-plus-square.svg b/apps/client/src/static/icons/brands/google-plus-square.svg similarity index 100% rename from src/static/icons/brands/google-plus-square.svg rename to apps/client/src/static/icons/brands/google-plus-square.svg diff --git a/src/static/icons/brands/google-plus.svg b/apps/client/src/static/icons/brands/google-plus.svg similarity index 100% rename from src/static/icons/brands/google-plus.svg rename to apps/client/src/static/icons/brands/google-plus.svg diff --git a/src/static/icons/brands/google-wallet.svg b/apps/client/src/static/icons/brands/google-wallet.svg similarity index 100% rename from src/static/icons/brands/google-wallet.svg rename to apps/client/src/static/icons/brands/google-wallet.svg diff --git a/src/static/icons/brands/google.svg b/apps/client/src/static/icons/brands/google.svg similarity index 100% rename from src/static/icons/brands/google.svg rename to apps/client/src/static/icons/brands/google.svg diff --git a/src/static/icons/brands/gratipay.svg b/apps/client/src/static/icons/brands/gratipay.svg similarity index 100% rename from src/static/icons/brands/gratipay.svg rename to apps/client/src/static/icons/brands/gratipay.svg diff --git a/src/static/icons/brands/grav.svg b/apps/client/src/static/icons/brands/grav.svg similarity index 100% rename from src/static/icons/brands/grav.svg rename to apps/client/src/static/icons/brands/grav.svg diff --git a/src/static/icons/brands/gripfire.svg b/apps/client/src/static/icons/brands/gripfire.svg similarity index 100% rename from src/static/icons/brands/gripfire.svg rename to apps/client/src/static/icons/brands/gripfire.svg diff --git a/src/static/icons/brands/grunt.svg b/apps/client/src/static/icons/brands/grunt.svg similarity index 100% rename from src/static/icons/brands/grunt.svg rename to apps/client/src/static/icons/brands/grunt.svg diff --git a/src/static/icons/brands/gulp.svg b/apps/client/src/static/icons/brands/gulp.svg similarity index 100% rename from src/static/icons/brands/gulp.svg rename to apps/client/src/static/icons/brands/gulp.svg diff --git a/src/static/icons/brands/hacker-news-square.svg b/apps/client/src/static/icons/brands/hacker-news-square.svg similarity index 100% rename from src/static/icons/brands/hacker-news-square.svg rename to apps/client/src/static/icons/brands/hacker-news-square.svg diff --git a/src/static/icons/brands/hacker-news.svg b/apps/client/src/static/icons/brands/hacker-news.svg similarity index 100% rename from src/static/icons/brands/hacker-news.svg rename to apps/client/src/static/icons/brands/hacker-news.svg diff --git a/src/static/icons/brands/hackerrank.svg b/apps/client/src/static/icons/brands/hackerrank.svg similarity index 100% rename from src/static/icons/brands/hackerrank.svg rename to apps/client/src/static/icons/brands/hackerrank.svg diff --git a/src/static/icons/brands/hips.svg b/apps/client/src/static/icons/brands/hips.svg similarity index 100% rename from src/static/icons/brands/hips.svg rename to apps/client/src/static/icons/brands/hips.svg diff --git a/src/static/icons/brands/hire-a-helper.svg b/apps/client/src/static/icons/brands/hire-a-helper.svg similarity index 100% rename from src/static/icons/brands/hire-a-helper.svg rename to apps/client/src/static/icons/brands/hire-a-helper.svg diff --git a/src/static/icons/brands/hooli.svg b/apps/client/src/static/icons/brands/hooli.svg similarity index 100% rename from src/static/icons/brands/hooli.svg rename to apps/client/src/static/icons/brands/hooli.svg diff --git a/src/static/icons/brands/hornbill.svg b/apps/client/src/static/icons/brands/hornbill.svg similarity index 100% rename from src/static/icons/brands/hornbill.svg rename to apps/client/src/static/icons/brands/hornbill.svg diff --git a/src/static/icons/brands/hotjar.svg b/apps/client/src/static/icons/brands/hotjar.svg similarity index 100% rename from src/static/icons/brands/hotjar.svg rename to apps/client/src/static/icons/brands/hotjar.svg diff --git a/src/static/icons/brands/houzz.svg b/apps/client/src/static/icons/brands/houzz.svg similarity index 100% rename from src/static/icons/brands/houzz.svg rename to apps/client/src/static/icons/brands/houzz.svg diff --git a/src/static/icons/brands/html5.svg b/apps/client/src/static/icons/brands/html5.svg similarity index 100% rename from src/static/icons/brands/html5.svg rename to apps/client/src/static/icons/brands/html5.svg diff --git a/src/static/icons/brands/hubspot.svg b/apps/client/src/static/icons/brands/hubspot.svg similarity index 100% rename from src/static/icons/brands/hubspot.svg rename to apps/client/src/static/icons/brands/hubspot.svg diff --git a/src/static/icons/brands/ideal.svg b/apps/client/src/static/icons/brands/ideal.svg similarity index 100% rename from src/static/icons/brands/ideal.svg rename to apps/client/src/static/icons/brands/ideal.svg diff --git a/src/static/icons/brands/imdb.svg b/apps/client/src/static/icons/brands/imdb.svg similarity index 100% rename from src/static/icons/brands/imdb.svg rename to apps/client/src/static/icons/brands/imdb.svg diff --git a/src/static/icons/brands/instagram.svg b/apps/client/src/static/icons/brands/instagram.svg similarity index 100% rename from src/static/icons/brands/instagram.svg rename to apps/client/src/static/icons/brands/instagram.svg diff --git a/src/static/icons/brands/intercom.svg b/apps/client/src/static/icons/brands/intercom.svg similarity index 100% rename from src/static/icons/brands/intercom.svg rename to apps/client/src/static/icons/brands/intercom.svg diff --git a/src/static/icons/brands/internet-explorer.svg b/apps/client/src/static/icons/brands/internet-explorer.svg similarity index 100% rename from src/static/icons/brands/internet-explorer.svg rename to apps/client/src/static/icons/brands/internet-explorer.svg diff --git a/src/static/icons/brands/invision.svg b/apps/client/src/static/icons/brands/invision.svg similarity index 100% rename from src/static/icons/brands/invision.svg rename to apps/client/src/static/icons/brands/invision.svg diff --git a/src/static/icons/brands/ioxhost.svg b/apps/client/src/static/icons/brands/ioxhost.svg similarity index 100% rename from src/static/icons/brands/ioxhost.svg rename to apps/client/src/static/icons/brands/ioxhost.svg diff --git a/src/static/icons/brands/itch-io.svg b/apps/client/src/static/icons/brands/itch-io.svg similarity index 100% rename from src/static/icons/brands/itch-io.svg rename to apps/client/src/static/icons/brands/itch-io.svg diff --git a/src/static/icons/brands/itunes-note.svg b/apps/client/src/static/icons/brands/itunes-note.svg similarity index 100% rename from src/static/icons/brands/itunes-note.svg rename to apps/client/src/static/icons/brands/itunes-note.svg diff --git a/src/static/icons/brands/itunes.svg b/apps/client/src/static/icons/brands/itunes.svg similarity index 100% rename from src/static/icons/brands/itunes.svg rename to apps/client/src/static/icons/brands/itunes.svg diff --git a/src/static/icons/brands/java.svg b/apps/client/src/static/icons/brands/java.svg similarity index 100% rename from src/static/icons/brands/java.svg rename to apps/client/src/static/icons/brands/java.svg diff --git a/src/static/icons/brands/jedi-order.svg b/apps/client/src/static/icons/brands/jedi-order.svg similarity index 100% rename from src/static/icons/brands/jedi-order.svg rename to apps/client/src/static/icons/brands/jedi-order.svg diff --git a/src/static/icons/brands/jenkins.svg b/apps/client/src/static/icons/brands/jenkins.svg similarity index 100% rename from src/static/icons/brands/jenkins.svg rename to apps/client/src/static/icons/brands/jenkins.svg diff --git a/src/static/icons/brands/jira.svg b/apps/client/src/static/icons/brands/jira.svg similarity index 100% rename from src/static/icons/brands/jira.svg rename to apps/client/src/static/icons/brands/jira.svg diff --git a/src/static/icons/brands/joget.svg b/apps/client/src/static/icons/brands/joget.svg similarity index 100% rename from src/static/icons/brands/joget.svg rename to apps/client/src/static/icons/brands/joget.svg diff --git a/src/static/icons/brands/joomla.svg b/apps/client/src/static/icons/brands/joomla.svg similarity index 100% rename from src/static/icons/brands/joomla.svg rename to apps/client/src/static/icons/brands/joomla.svg diff --git a/src/static/icons/brands/js-square.svg b/apps/client/src/static/icons/brands/js-square.svg similarity index 100% rename from src/static/icons/brands/js-square.svg rename to apps/client/src/static/icons/brands/js-square.svg diff --git a/src/static/icons/brands/js.svg b/apps/client/src/static/icons/brands/js.svg similarity index 100% rename from src/static/icons/brands/js.svg rename to apps/client/src/static/icons/brands/js.svg diff --git a/src/static/icons/brands/jsfiddle.svg b/apps/client/src/static/icons/brands/jsfiddle.svg similarity index 100% rename from src/static/icons/brands/jsfiddle.svg rename to apps/client/src/static/icons/brands/jsfiddle.svg diff --git a/src/static/icons/brands/kaggle.svg b/apps/client/src/static/icons/brands/kaggle.svg similarity index 100% rename from src/static/icons/brands/kaggle.svg rename to apps/client/src/static/icons/brands/kaggle.svg diff --git a/src/static/icons/brands/keybase.svg b/apps/client/src/static/icons/brands/keybase.svg similarity index 100% rename from src/static/icons/brands/keybase.svg rename to apps/client/src/static/icons/brands/keybase.svg diff --git a/src/static/icons/brands/keycdn.svg b/apps/client/src/static/icons/brands/keycdn.svg similarity index 100% rename from src/static/icons/brands/keycdn.svg rename to apps/client/src/static/icons/brands/keycdn.svg diff --git a/src/static/icons/brands/kickstarter-k.svg b/apps/client/src/static/icons/brands/kickstarter-k.svg similarity index 100% rename from src/static/icons/brands/kickstarter-k.svg rename to apps/client/src/static/icons/brands/kickstarter-k.svg diff --git a/src/static/icons/brands/kickstarter.svg b/apps/client/src/static/icons/brands/kickstarter.svg similarity index 100% rename from src/static/icons/brands/kickstarter.svg rename to apps/client/src/static/icons/brands/kickstarter.svg diff --git a/src/static/icons/brands/korvue.svg b/apps/client/src/static/icons/brands/korvue.svg similarity index 100% rename from src/static/icons/brands/korvue.svg rename to apps/client/src/static/icons/brands/korvue.svg diff --git a/src/static/icons/brands/laravel.svg b/apps/client/src/static/icons/brands/laravel.svg similarity index 100% rename from src/static/icons/brands/laravel.svg rename to apps/client/src/static/icons/brands/laravel.svg diff --git a/src/static/icons/brands/lastfm-square.svg b/apps/client/src/static/icons/brands/lastfm-square.svg similarity index 100% rename from src/static/icons/brands/lastfm-square.svg rename to apps/client/src/static/icons/brands/lastfm-square.svg diff --git a/src/static/icons/brands/lastfm.svg b/apps/client/src/static/icons/brands/lastfm.svg similarity index 100% rename from src/static/icons/brands/lastfm.svg rename to apps/client/src/static/icons/brands/lastfm.svg diff --git a/src/static/icons/brands/leanpub.svg b/apps/client/src/static/icons/brands/leanpub.svg similarity index 100% rename from src/static/icons/brands/leanpub.svg rename to apps/client/src/static/icons/brands/leanpub.svg diff --git a/src/static/icons/brands/less.svg b/apps/client/src/static/icons/brands/less.svg similarity index 100% rename from src/static/icons/brands/less.svg rename to apps/client/src/static/icons/brands/less.svg diff --git a/src/static/icons/brands/line.svg b/apps/client/src/static/icons/brands/line.svg similarity index 100% rename from src/static/icons/brands/line.svg rename to apps/client/src/static/icons/brands/line.svg diff --git a/src/static/icons/brands/linkedin-in.svg b/apps/client/src/static/icons/brands/linkedin-in.svg similarity index 100% rename from src/static/icons/brands/linkedin-in.svg rename to apps/client/src/static/icons/brands/linkedin-in.svg diff --git a/src/static/icons/brands/linkedin.svg b/apps/client/src/static/icons/brands/linkedin.svg similarity index 100% rename from src/static/icons/brands/linkedin.svg rename to apps/client/src/static/icons/brands/linkedin.svg diff --git a/src/static/icons/brands/linode.svg b/apps/client/src/static/icons/brands/linode.svg similarity index 100% rename from src/static/icons/brands/linode.svg rename to apps/client/src/static/icons/brands/linode.svg diff --git a/src/static/icons/brands/linux.svg b/apps/client/src/static/icons/brands/linux.svg similarity index 100% rename from src/static/icons/brands/linux.svg rename to apps/client/src/static/icons/brands/linux.svg diff --git a/src/static/icons/brands/lyft.svg b/apps/client/src/static/icons/brands/lyft.svg similarity index 100% rename from src/static/icons/brands/lyft.svg rename to apps/client/src/static/icons/brands/lyft.svg diff --git a/src/static/icons/brands/magento.svg b/apps/client/src/static/icons/brands/magento.svg similarity index 100% rename from src/static/icons/brands/magento.svg rename to apps/client/src/static/icons/brands/magento.svg diff --git a/src/static/icons/brands/mailchimp.svg b/apps/client/src/static/icons/brands/mailchimp.svg similarity index 100% rename from src/static/icons/brands/mailchimp.svg rename to apps/client/src/static/icons/brands/mailchimp.svg diff --git a/src/static/icons/brands/mandalorian.svg b/apps/client/src/static/icons/brands/mandalorian.svg similarity index 100% rename from src/static/icons/brands/mandalorian.svg rename to apps/client/src/static/icons/brands/mandalorian.svg diff --git a/src/static/icons/brands/markdown.svg b/apps/client/src/static/icons/brands/markdown.svg similarity index 100% rename from src/static/icons/brands/markdown.svg rename to apps/client/src/static/icons/brands/markdown.svg diff --git a/src/static/icons/brands/mastodon.svg b/apps/client/src/static/icons/brands/mastodon.svg similarity index 100% rename from src/static/icons/brands/mastodon.svg rename to apps/client/src/static/icons/brands/mastodon.svg diff --git a/src/static/icons/brands/maxcdn.svg b/apps/client/src/static/icons/brands/maxcdn.svg similarity index 100% rename from src/static/icons/brands/maxcdn.svg rename to apps/client/src/static/icons/brands/maxcdn.svg diff --git a/src/static/icons/brands/mdb.svg b/apps/client/src/static/icons/brands/mdb.svg similarity index 100% rename from src/static/icons/brands/mdb.svg rename to apps/client/src/static/icons/brands/mdb.svg diff --git a/src/static/icons/brands/medapps.svg b/apps/client/src/static/icons/brands/medapps.svg similarity index 100% rename from src/static/icons/brands/medapps.svg rename to apps/client/src/static/icons/brands/medapps.svg diff --git a/src/static/icons/brands/medium-m.svg b/apps/client/src/static/icons/brands/medium-m.svg similarity index 100% rename from src/static/icons/brands/medium-m.svg rename to apps/client/src/static/icons/brands/medium-m.svg diff --git a/src/static/icons/brands/medium.svg b/apps/client/src/static/icons/brands/medium.svg similarity index 100% rename from src/static/icons/brands/medium.svg rename to apps/client/src/static/icons/brands/medium.svg diff --git a/src/static/icons/brands/medrt.svg b/apps/client/src/static/icons/brands/medrt.svg similarity index 100% rename from src/static/icons/brands/medrt.svg rename to apps/client/src/static/icons/brands/medrt.svg diff --git a/src/static/icons/brands/meetup.svg b/apps/client/src/static/icons/brands/meetup.svg similarity index 100% rename from src/static/icons/brands/meetup.svg rename to apps/client/src/static/icons/brands/meetup.svg diff --git a/src/static/icons/brands/megaport.svg b/apps/client/src/static/icons/brands/megaport.svg similarity index 100% rename from src/static/icons/brands/megaport.svg rename to apps/client/src/static/icons/brands/megaport.svg diff --git a/src/static/icons/brands/mendeley.svg b/apps/client/src/static/icons/brands/mendeley.svg similarity index 100% rename from src/static/icons/brands/mendeley.svg rename to apps/client/src/static/icons/brands/mendeley.svg diff --git a/src/static/icons/brands/microblog.svg b/apps/client/src/static/icons/brands/microblog.svg similarity index 100% rename from src/static/icons/brands/microblog.svg rename to apps/client/src/static/icons/brands/microblog.svg diff --git a/src/static/icons/brands/microsoft.svg b/apps/client/src/static/icons/brands/microsoft.svg similarity index 100% rename from src/static/icons/brands/microsoft.svg rename to apps/client/src/static/icons/brands/microsoft.svg diff --git a/src/static/icons/brands/mix.svg b/apps/client/src/static/icons/brands/mix.svg similarity index 100% rename from src/static/icons/brands/mix.svg rename to apps/client/src/static/icons/brands/mix.svg diff --git a/src/static/icons/brands/mixcloud.svg b/apps/client/src/static/icons/brands/mixcloud.svg similarity index 100% rename from src/static/icons/brands/mixcloud.svg rename to apps/client/src/static/icons/brands/mixcloud.svg diff --git a/src/static/icons/brands/mizuni.svg b/apps/client/src/static/icons/brands/mizuni.svg similarity index 100% rename from src/static/icons/brands/mizuni.svg rename to apps/client/src/static/icons/brands/mizuni.svg diff --git a/src/static/icons/brands/modx.svg b/apps/client/src/static/icons/brands/modx.svg similarity index 100% rename from src/static/icons/brands/modx.svg rename to apps/client/src/static/icons/brands/modx.svg diff --git a/src/static/icons/brands/monero.svg b/apps/client/src/static/icons/brands/monero.svg similarity index 100% rename from src/static/icons/brands/monero.svg rename to apps/client/src/static/icons/brands/monero.svg diff --git a/src/static/icons/brands/napster.svg b/apps/client/src/static/icons/brands/napster.svg similarity index 100% rename from src/static/icons/brands/napster.svg rename to apps/client/src/static/icons/brands/napster.svg diff --git a/src/static/icons/brands/neos.svg b/apps/client/src/static/icons/brands/neos.svg similarity index 100% rename from src/static/icons/brands/neos.svg rename to apps/client/src/static/icons/brands/neos.svg diff --git a/src/static/icons/brands/nimblr.svg b/apps/client/src/static/icons/brands/nimblr.svg similarity index 100% rename from src/static/icons/brands/nimblr.svg rename to apps/client/src/static/icons/brands/nimblr.svg diff --git a/src/static/icons/brands/node-js.svg b/apps/client/src/static/icons/brands/node-js.svg similarity index 100% rename from src/static/icons/brands/node-js.svg rename to apps/client/src/static/icons/brands/node-js.svg diff --git a/src/static/icons/brands/node.svg b/apps/client/src/static/icons/brands/node.svg similarity index 100% rename from src/static/icons/brands/node.svg rename to apps/client/src/static/icons/brands/node.svg diff --git a/src/static/icons/brands/npm.svg b/apps/client/src/static/icons/brands/npm.svg similarity index 100% rename from src/static/icons/brands/npm.svg rename to apps/client/src/static/icons/brands/npm.svg diff --git a/src/static/icons/brands/ns8.svg b/apps/client/src/static/icons/brands/ns8.svg similarity index 100% rename from src/static/icons/brands/ns8.svg rename to apps/client/src/static/icons/brands/ns8.svg diff --git a/src/static/icons/brands/nutritionix.svg b/apps/client/src/static/icons/brands/nutritionix.svg similarity index 100% rename from src/static/icons/brands/nutritionix.svg rename to apps/client/src/static/icons/brands/nutritionix.svg diff --git a/src/static/icons/brands/odnoklassniki-square.svg b/apps/client/src/static/icons/brands/odnoklassniki-square.svg similarity index 100% rename from src/static/icons/brands/odnoklassniki-square.svg rename to apps/client/src/static/icons/brands/odnoklassniki-square.svg diff --git a/src/static/icons/brands/odnoklassniki.svg b/apps/client/src/static/icons/brands/odnoklassniki.svg similarity index 100% rename from src/static/icons/brands/odnoklassniki.svg rename to apps/client/src/static/icons/brands/odnoklassniki.svg diff --git a/src/static/icons/brands/old-republic.svg b/apps/client/src/static/icons/brands/old-republic.svg similarity index 100% rename from src/static/icons/brands/old-republic.svg rename to apps/client/src/static/icons/brands/old-republic.svg diff --git a/src/static/icons/brands/opencart.svg b/apps/client/src/static/icons/brands/opencart.svg similarity index 100% rename from src/static/icons/brands/opencart.svg rename to apps/client/src/static/icons/brands/opencart.svg diff --git a/src/static/icons/brands/openid.svg b/apps/client/src/static/icons/brands/openid.svg similarity index 100% rename from src/static/icons/brands/openid.svg rename to apps/client/src/static/icons/brands/openid.svg diff --git a/src/static/icons/brands/opera.svg b/apps/client/src/static/icons/brands/opera.svg similarity index 100% rename from src/static/icons/brands/opera.svg rename to apps/client/src/static/icons/brands/opera.svg diff --git a/src/static/icons/brands/optin-monster.svg b/apps/client/src/static/icons/brands/optin-monster.svg similarity index 100% rename from src/static/icons/brands/optin-monster.svg rename to apps/client/src/static/icons/brands/optin-monster.svg diff --git a/src/static/icons/brands/orcid.svg b/apps/client/src/static/icons/brands/orcid.svg similarity index 100% rename from src/static/icons/brands/orcid.svg rename to apps/client/src/static/icons/brands/orcid.svg diff --git a/src/static/icons/brands/osi.svg b/apps/client/src/static/icons/brands/osi.svg similarity index 100% rename from src/static/icons/brands/osi.svg rename to apps/client/src/static/icons/brands/osi.svg diff --git a/src/static/icons/brands/page4.svg b/apps/client/src/static/icons/brands/page4.svg similarity index 100% rename from src/static/icons/brands/page4.svg rename to apps/client/src/static/icons/brands/page4.svg diff --git a/src/static/icons/brands/pagelines.svg b/apps/client/src/static/icons/brands/pagelines.svg similarity index 100% rename from src/static/icons/brands/pagelines.svg rename to apps/client/src/static/icons/brands/pagelines.svg diff --git a/src/static/icons/brands/palfed.svg b/apps/client/src/static/icons/brands/palfed.svg similarity index 100% rename from src/static/icons/brands/palfed.svg rename to apps/client/src/static/icons/brands/palfed.svg diff --git a/src/static/icons/brands/patreon.svg b/apps/client/src/static/icons/brands/patreon.svg similarity index 100% rename from src/static/icons/brands/patreon.svg rename to apps/client/src/static/icons/brands/patreon.svg diff --git a/src/static/icons/brands/paypal.svg b/apps/client/src/static/icons/brands/paypal.svg similarity index 100% rename from src/static/icons/brands/paypal.svg rename to apps/client/src/static/icons/brands/paypal.svg diff --git a/src/static/icons/brands/penny-arcade.svg b/apps/client/src/static/icons/brands/penny-arcade.svg similarity index 100% rename from src/static/icons/brands/penny-arcade.svg rename to apps/client/src/static/icons/brands/penny-arcade.svg diff --git a/src/static/icons/brands/periscope.svg b/apps/client/src/static/icons/brands/periscope.svg similarity index 100% rename from src/static/icons/brands/periscope.svg rename to apps/client/src/static/icons/brands/periscope.svg diff --git a/src/static/icons/brands/phabricator.svg b/apps/client/src/static/icons/brands/phabricator.svg similarity index 100% rename from src/static/icons/brands/phabricator.svg rename to apps/client/src/static/icons/brands/phabricator.svg diff --git a/src/static/icons/brands/phoenix-framework.svg b/apps/client/src/static/icons/brands/phoenix-framework.svg similarity index 100% rename from src/static/icons/brands/phoenix-framework.svg rename to apps/client/src/static/icons/brands/phoenix-framework.svg diff --git a/src/static/icons/brands/phoenix-squadron.svg b/apps/client/src/static/icons/brands/phoenix-squadron.svg similarity index 100% rename from src/static/icons/brands/phoenix-squadron.svg rename to apps/client/src/static/icons/brands/phoenix-squadron.svg diff --git a/src/static/icons/brands/php.svg b/apps/client/src/static/icons/brands/php.svg similarity index 100% rename from src/static/icons/brands/php.svg rename to apps/client/src/static/icons/brands/php.svg diff --git a/src/static/icons/brands/pied-piper-alt.svg b/apps/client/src/static/icons/brands/pied-piper-alt.svg similarity index 100% rename from src/static/icons/brands/pied-piper-alt.svg rename to apps/client/src/static/icons/brands/pied-piper-alt.svg diff --git a/src/static/icons/brands/pied-piper-hat.svg b/apps/client/src/static/icons/brands/pied-piper-hat.svg similarity index 100% rename from src/static/icons/brands/pied-piper-hat.svg rename to apps/client/src/static/icons/brands/pied-piper-hat.svg diff --git a/src/static/icons/brands/pied-piper-pp.svg b/apps/client/src/static/icons/brands/pied-piper-pp.svg similarity index 100% rename from src/static/icons/brands/pied-piper-pp.svg rename to apps/client/src/static/icons/brands/pied-piper-pp.svg diff --git a/src/static/icons/brands/pied-piper-square.svg b/apps/client/src/static/icons/brands/pied-piper-square.svg similarity index 100% rename from src/static/icons/brands/pied-piper-square.svg rename to apps/client/src/static/icons/brands/pied-piper-square.svg diff --git a/src/static/icons/brands/pied-piper.svg b/apps/client/src/static/icons/brands/pied-piper.svg similarity index 100% rename from src/static/icons/brands/pied-piper.svg rename to apps/client/src/static/icons/brands/pied-piper.svg diff --git a/src/static/icons/brands/pinterest-p.svg b/apps/client/src/static/icons/brands/pinterest-p.svg similarity index 100% rename from src/static/icons/brands/pinterest-p.svg rename to apps/client/src/static/icons/brands/pinterest-p.svg diff --git a/src/static/icons/brands/pinterest-square.svg b/apps/client/src/static/icons/brands/pinterest-square.svg similarity index 100% rename from src/static/icons/brands/pinterest-square.svg rename to apps/client/src/static/icons/brands/pinterest-square.svg diff --git a/src/static/icons/brands/pinterest.svg b/apps/client/src/static/icons/brands/pinterest.svg similarity index 100% rename from src/static/icons/brands/pinterest.svg rename to apps/client/src/static/icons/brands/pinterest.svg diff --git a/src/static/icons/brands/playstation.svg b/apps/client/src/static/icons/brands/playstation.svg similarity index 100% rename from src/static/icons/brands/playstation.svg rename to apps/client/src/static/icons/brands/playstation.svg diff --git a/src/static/icons/brands/product-hunt.svg b/apps/client/src/static/icons/brands/product-hunt.svg similarity index 100% rename from src/static/icons/brands/product-hunt.svg rename to apps/client/src/static/icons/brands/product-hunt.svg diff --git a/src/static/icons/brands/pushed.svg b/apps/client/src/static/icons/brands/pushed.svg similarity index 100% rename from src/static/icons/brands/pushed.svg rename to apps/client/src/static/icons/brands/pushed.svg diff --git a/src/static/icons/brands/python.svg b/apps/client/src/static/icons/brands/python.svg similarity index 100% rename from src/static/icons/brands/python.svg rename to apps/client/src/static/icons/brands/python.svg diff --git a/src/static/icons/brands/qq.svg b/apps/client/src/static/icons/brands/qq.svg similarity index 100% rename from src/static/icons/brands/qq.svg rename to apps/client/src/static/icons/brands/qq.svg diff --git a/src/static/icons/brands/quinscape.svg b/apps/client/src/static/icons/brands/quinscape.svg similarity index 100% rename from src/static/icons/brands/quinscape.svg rename to apps/client/src/static/icons/brands/quinscape.svg diff --git a/src/static/icons/brands/quora.svg b/apps/client/src/static/icons/brands/quora.svg similarity index 100% rename from src/static/icons/brands/quora.svg rename to apps/client/src/static/icons/brands/quora.svg diff --git a/src/static/icons/brands/r-project.svg b/apps/client/src/static/icons/brands/r-project.svg similarity index 100% rename from src/static/icons/brands/r-project.svg rename to apps/client/src/static/icons/brands/r-project.svg diff --git a/src/static/icons/brands/raspberry-pi.svg b/apps/client/src/static/icons/brands/raspberry-pi.svg similarity index 100% rename from src/static/icons/brands/raspberry-pi.svg rename to apps/client/src/static/icons/brands/raspberry-pi.svg diff --git a/src/static/icons/brands/ravelry.svg b/apps/client/src/static/icons/brands/ravelry.svg similarity index 100% rename from src/static/icons/brands/ravelry.svg rename to apps/client/src/static/icons/brands/ravelry.svg diff --git a/src/static/icons/brands/react.svg b/apps/client/src/static/icons/brands/react.svg similarity index 100% rename from src/static/icons/brands/react.svg rename to apps/client/src/static/icons/brands/react.svg diff --git a/src/static/icons/brands/reacteurope.svg b/apps/client/src/static/icons/brands/reacteurope.svg similarity index 100% rename from src/static/icons/brands/reacteurope.svg rename to apps/client/src/static/icons/brands/reacteurope.svg diff --git a/src/static/icons/brands/readme.svg b/apps/client/src/static/icons/brands/readme.svg similarity index 100% rename from src/static/icons/brands/readme.svg rename to apps/client/src/static/icons/brands/readme.svg diff --git a/src/static/icons/brands/rebel.svg b/apps/client/src/static/icons/brands/rebel.svg similarity index 100% rename from src/static/icons/brands/rebel.svg rename to apps/client/src/static/icons/brands/rebel.svg diff --git a/src/static/icons/brands/red-river.svg b/apps/client/src/static/icons/brands/red-river.svg similarity index 100% rename from src/static/icons/brands/red-river.svg rename to apps/client/src/static/icons/brands/red-river.svg diff --git a/src/static/icons/brands/reddit-alien.svg b/apps/client/src/static/icons/brands/reddit-alien.svg similarity index 100% rename from src/static/icons/brands/reddit-alien.svg rename to apps/client/src/static/icons/brands/reddit-alien.svg diff --git a/src/static/icons/brands/reddit-square.svg b/apps/client/src/static/icons/brands/reddit-square.svg similarity index 100% rename from src/static/icons/brands/reddit-square.svg rename to apps/client/src/static/icons/brands/reddit-square.svg diff --git a/src/static/icons/brands/reddit.svg b/apps/client/src/static/icons/brands/reddit.svg similarity index 100% rename from src/static/icons/brands/reddit.svg rename to apps/client/src/static/icons/brands/reddit.svg diff --git a/src/static/icons/brands/redhat.svg b/apps/client/src/static/icons/brands/redhat.svg similarity index 100% rename from src/static/icons/brands/redhat.svg rename to apps/client/src/static/icons/brands/redhat.svg diff --git a/src/static/icons/brands/renren.svg b/apps/client/src/static/icons/brands/renren.svg similarity index 100% rename from src/static/icons/brands/renren.svg rename to apps/client/src/static/icons/brands/renren.svg diff --git a/src/static/icons/brands/replyd.svg b/apps/client/src/static/icons/brands/replyd.svg similarity index 100% rename from src/static/icons/brands/replyd.svg rename to apps/client/src/static/icons/brands/replyd.svg diff --git a/src/static/icons/brands/researchgate.svg b/apps/client/src/static/icons/brands/researchgate.svg similarity index 100% rename from src/static/icons/brands/researchgate.svg rename to apps/client/src/static/icons/brands/researchgate.svg diff --git a/src/static/icons/brands/resolving.svg b/apps/client/src/static/icons/brands/resolving.svg similarity index 100% rename from src/static/icons/brands/resolving.svg rename to apps/client/src/static/icons/brands/resolving.svg diff --git a/src/static/icons/brands/rev.svg b/apps/client/src/static/icons/brands/rev.svg similarity index 100% rename from src/static/icons/brands/rev.svg rename to apps/client/src/static/icons/brands/rev.svg diff --git a/src/static/icons/brands/rocketchat.svg b/apps/client/src/static/icons/brands/rocketchat.svg similarity index 100% rename from src/static/icons/brands/rocketchat.svg rename to apps/client/src/static/icons/brands/rocketchat.svg diff --git a/src/static/icons/brands/rockrms.svg b/apps/client/src/static/icons/brands/rockrms.svg similarity index 100% rename from src/static/icons/brands/rockrms.svg rename to apps/client/src/static/icons/brands/rockrms.svg diff --git a/src/static/icons/brands/safari.svg b/apps/client/src/static/icons/brands/safari.svg similarity index 100% rename from src/static/icons/brands/safari.svg rename to apps/client/src/static/icons/brands/safari.svg diff --git a/src/static/icons/brands/salesforce.svg b/apps/client/src/static/icons/brands/salesforce.svg similarity index 100% rename from src/static/icons/brands/salesforce.svg rename to apps/client/src/static/icons/brands/salesforce.svg diff --git a/src/static/icons/brands/sass.svg b/apps/client/src/static/icons/brands/sass.svg similarity index 100% rename from src/static/icons/brands/sass.svg rename to apps/client/src/static/icons/brands/sass.svg diff --git a/src/static/icons/brands/schlix.svg b/apps/client/src/static/icons/brands/schlix.svg similarity index 100% rename from src/static/icons/brands/schlix.svg rename to apps/client/src/static/icons/brands/schlix.svg diff --git a/src/static/icons/brands/scribd.svg b/apps/client/src/static/icons/brands/scribd.svg similarity index 100% rename from src/static/icons/brands/scribd.svg rename to apps/client/src/static/icons/brands/scribd.svg diff --git a/src/static/icons/brands/searchengin.svg b/apps/client/src/static/icons/brands/searchengin.svg similarity index 100% rename from src/static/icons/brands/searchengin.svg rename to apps/client/src/static/icons/brands/searchengin.svg diff --git a/src/static/icons/brands/sellcast.svg b/apps/client/src/static/icons/brands/sellcast.svg similarity index 100% rename from src/static/icons/brands/sellcast.svg rename to apps/client/src/static/icons/brands/sellcast.svg diff --git a/src/static/icons/brands/sellsy.svg b/apps/client/src/static/icons/brands/sellsy.svg similarity index 100% rename from src/static/icons/brands/sellsy.svg rename to apps/client/src/static/icons/brands/sellsy.svg diff --git a/src/static/icons/brands/servicestack.svg b/apps/client/src/static/icons/brands/servicestack.svg similarity index 100% rename from src/static/icons/brands/servicestack.svg rename to apps/client/src/static/icons/brands/servicestack.svg diff --git a/src/static/icons/brands/shirtsinbulk.svg b/apps/client/src/static/icons/brands/shirtsinbulk.svg similarity index 100% rename from src/static/icons/brands/shirtsinbulk.svg rename to apps/client/src/static/icons/brands/shirtsinbulk.svg diff --git a/src/static/icons/brands/shopware.svg b/apps/client/src/static/icons/brands/shopware.svg similarity index 100% rename from src/static/icons/brands/shopware.svg rename to apps/client/src/static/icons/brands/shopware.svg diff --git a/src/static/icons/brands/simplybuilt.svg b/apps/client/src/static/icons/brands/simplybuilt.svg similarity index 100% rename from src/static/icons/brands/simplybuilt.svg rename to apps/client/src/static/icons/brands/simplybuilt.svg diff --git a/src/static/icons/brands/sistrix.svg b/apps/client/src/static/icons/brands/sistrix.svg similarity index 100% rename from src/static/icons/brands/sistrix.svg rename to apps/client/src/static/icons/brands/sistrix.svg diff --git a/src/static/icons/brands/sith.svg b/apps/client/src/static/icons/brands/sith.svg similarity index 100% rename from src/static/icons/brands/sith.svg rename to apps/client/src/static/icons/brands/sith.svg diff --git a/src/static/icons/brands/sketch.svg b/apps/client/src/static/icons/brands/sketch.svg similarity index 100% rename from src/static/icons/brands/sketch.svg rename to apps/client/src/static/icons/brands/sketch.svg diff --git a/src/static/icons/brands/skyatlas.svg b/apps/client/src/static/icons/brands/skyatlas.svg similarity index 100% rename from src/static/icons/brands/skyatlas.svg rename to apps/client/src/static/icons/brands/skyatlas.svg diff --git a/src/static/icons/brands/skype.svg b/apps/client/src/static/icons/brands/skype.svg similarity index 100% rename from src/static/icons/brands/skype.svg rename to apps/client/src/static/icons/brands/skype.svg diff --git a/src/static/icons/brands/slack-hash.svg b/apps/client/src/static/icons/brands/slack-hash.svg similarity index 100% rename from src/static/icons/brands/slack-hash.svg rename to apps/client/src/static/icons/brands/slack-hash.svg diff --git a/src/static/icons/brands/slack.svg b/apps/client/src/static/icons/brands/slack.svg similarity index 100% rename from src/static/icons/brands/slack.svg rename to apps/client/src/static/icons/brands/slack.svg diff --git a/src/static/icons/brands/slideshare.svg b/apps/client/src/static/icons/brands/slideshare.svg similarity index 100% rename from src/static/icons/brands/slideshare.svg rename to apps/client/src/static/icons/brands/slideshare.svg diff --git a/src/static/icons/brands/snapchat-ghost.svg b/apps/client/src/static/icons/brands/snapchat-ghost.svg similarity index 100% rename from src/static/icons/brands/snapchat-ghost.svg rename to apps/client/src/static/icons/brands/snapchat-ghost.svg diff --git a/src/static/icons/brands/snapchat-square.svg b/apps/client/src/static/icons/brands/snapchat-square.svg similarity index 100% rename from src/static/icons/brands/snapchat-square.svg rename to apps/client/src/static/icons/brands/snapchat-square.svg diff --git a/src/static/icons/brands/snapchat.svg b/apps/client/src/static/icons/brands/snapchat.svg similarity index 100% rename from src/static/icons/brands/snapchat.svg rename to apps/client/src/static/icons/brands/snapchat.svg diff --git a/src/static/icons/brands/soundcloud.svg b/apps/client/src/static/icons/brands/soundcloud.svg similarity index 100% rename from src/static/icons/brands/soundcloud.svg rename to apps/client/src/static/icons/brands/soundcloud.svg diff --git a/src/static/icons/brands/sourcetree.svg b/apps/client/src/static/icons/brands/sourcetree.svg similarity index 100% rename from src/static/icons/brands/sourcetree.svg rename to apps/client/src/static/icons/brands/sourcetree.svg diff --git a/src/static/icons/brands/speakap.svg b/apps/client/src/static/icons/brands/speakap.svg similarity index 100% rename from src/static/icons/brands/speakap.svg rename to apps/client/src/static/icons/brands/speakap.svg diff --git a/src/static/icons/brands/speaker-deck.svg b/apps/client/src/static/icons/brands/speaker-deck.svg similarity index 100% rename from src/static/icons/brands/speaker-deck.svg rename to apps/client/src/static/icons/brands/speaker-deck.svg diff --git a/src/static/icons/brands/spotify.svg b/apps/client/src/static/icons/brands/spotify.svg similarity index 100% rename from src/static/icons/brands/spotify.svg rename to apps/client/src/static/icons/brands/spotify.svg diff --git a/src/static/icons/brands/squarespace.svg b/apps/client/src/static/icons/brands/squarespace.svg similarity index 100% rename from src/static/icons/brands/squarespace.svg rename to apps/client/src/static/icons/brands/squarespace.svg diff --git a/src/static/icons/brands/stack-exchange.svg b/apps/client/src/static/icons/brands/stack-exchange.svg similarity index 100% rename from src/static/icons/brands/stack-exchange.svg rename to apps/client/src/static/icons/brands/stack-exchange.svg diff --git a/src/static/icons/brands/stack-overflow.svg b/apps/client/src/static/icons/brands/stack-overflow.svg similarity index 100% rename from src/static/icons/brands/stack-overflow.svg rename to apps/client/src/static/icons/brands/stack-overflow.svg diff --git a/src/static/icons/brands/stackpath.svg b/apps/client/src/static/icons/brands/stackpath.svg similarity index 100% rename from src/static/icons/brands/stackpath.svg rename to apps/client/src/static/icons/brands/stackpath.svg diff --git a/src/static/icons/brands/staylinked.svg b/apps/client/src/static/icons/brands/staylinked.svg similarity index 100% rename from src/static/icons/brands/staylinked.svg rename to apps/client/src/static/icons/brands/staylinked.svg diff --git a/src/static/icons/brands/steam-square.svg b/apps/client/src/static/icons/brands/steam-square.svg similarity index 100% rename from src/static/icons/brands/steam-square.svg rename to apps/client/src/static/icons/brands/steam-square.svg diff --git a/src/static/icons/brands/steam-symbol.svg b/apps/client/src/static/icons/brands/steam-symbol.svg similarity index 100% rename from src/static/icons/brands/steam-symbol.svg rename to apps/client/src/static/icons/brands/steam-symbol.svg diff --git a/src/static/icons/brands/steam.svg b/apps/client/src/static/icons/brands/steam.svg similarity index 100% rename from src/static/icons/brands/steam.svg rename to apps/client/src/static/icons/brands/steam.svg diff --git a/src/static/icons/brands/sticker-mule.svg b/apps/client/src/static/icons/brands/sticker-mule.svg similarity index 100% rename from src/static/icons/brands/sticker-mule.svg rename to apps/client/src/static/icons/brands/sticker-mule.svg diff --git a/src/static/icons/brands/strava.svg b/apps/client/src/static/icons/brands/strava.svg similarity index 100% rename from src/static/icons/brands/strava.svg rename to apps/client/src/static/icons/brands/strava.svg diff --git a/src/static/icons/brands/stripe-s.svg b/apps/client/src/static/icons/brands/stripe-s.svg similarity index 100% rename from src/static/icons/brands/stripe-s.svg rename to apps/client/src/static/icons/brands/stripe-s.svg diff --git a/src/static/icons/brands/stripe.svg b/apps/client/src/static/icons/brands/stripe.svg similarity index 100% rename from src/static/icons/brands/stripe.svg rename to apps/client/src/static/icons/brands/stripe.svg diff --git a/src/static/icons/brands/studiovinari.svg b/apps/client/src/static/icons/brands/studiovinari.svg similarity index 100% rename from src/static/icons/brands/studiovinari.svg rename to apps/client/src/static/icons/brands/studiovinari.svg diff --git a/src/static/icons/brands/stumbleupon-circle.svg b/apps/client/src/static/icons/brands/stumbleupon-circle.svg similarity index 100% rename from src/static/icons/brands/stumbleupon-circle.svg rename to apps/client/src/static/icons/brands/stumbleupon-circle.svg diff --git a/src/static/icons/brands/stumbleupon.svg b/apps/client/src/static/icons/brands/stumbleupon.svg similarity index 100% rename from src/static/icons/brands/stumbleupon.svg rename to apps/client/src/static/icons/brands/stumbleupon.svg diff --git a/src/static/icons/brands/superpowers.svg b/apps/client/src/static/icons/brands/superpowers.svg similarity index 100% rename from src/static/icons/brands/superpowers.svg rename to apps/client/src/static/icons/brands/superpowers.svg diff --git a/src/static/icons/brands/supple.svg b/apps/client/src/static/icons/brands/supple.svg similarity index 100% rename from src/static/icons/brands/supple.svg rename to apps/client/src/static/icons/brands/supple.svg diff --git a/src/static/icons/brands/suse.svg b/apps/client/src/static/icons/brands/suse.svg similarity index 100% rename from src/static/icons/brands/suse.svg rename to apps/client/src/static/icons/brands/suse.svg diff --git a/src/static/icons/brands/swift.svg b/apps/client/src/static/icons/brands/swift.svg similarity index 100% rename from src/static/icons/brands/swift.svg rename to apps/client/src/static/icons/brands/swift.svg diff --git a/src/static/icons/brands/symfony.svg b/apps/client/src/static/icons/brands/symfony.svg similarity index 100% rename from src/static/icons/brands/symfony.svg rename to apps/client/src/static/icons/brands/symfony.svg diff --git a/src/static/icons/brands/teamspeak.svg b/apps/client/src/static/icons/brands/teamspeak.svg similarity index 100% rename from src/static/icons/brands/teamspeak.svg rename to apps/client/src/static/icons/brands/teamspeak.svg diff --git a/src/static/icons/brands/telegram-plane.svg b/apps/client/src/static/icons/brands/telegram-plane.svg similarity index 100% rename from src/static/icons/brands/telegram-plane.svg rename to apps/client/src/static/icons/brands/telegram-plane.svg diff --git a/src/static/icons/brands/telegram.svg b/apps/client/src/static/icons/brands/telegram.svg similarity index 100% rename from src/static/icons/brands/telegram.svg rename to apps/client/src/static/icons/brands/telegram.svg diff --git a/src/static/icons/brands/tencent-weibo.svg b/apps/client/src/static/icons/brands/tencent-weibo.svg similarity index 100% rename from src/static/icons/brands/tencent-weibo.svg rename to apps/client/src/static/icons/brands/tencent-weibo.svg diff --git a/src/static/icons/brands/the-red-yeti.svg b/apps/client/src/static/icons/brands/the-red-yeti.svg similarity index 100% rename from src/static/icons/brands/the-red-yeti.svg rename to apps/client/src/static/icons/brands/the-red-yeti.svg diff --git a/src/static/icons/brands/themeco.svg b/apps/client/src/static/icons/brands/themeco.svg similarity index 100% rename from src/static/icons/brands/themeco.svg rename to apps/client/src/static/icons/brands/themeco.svg diff --git a/src/static/icons/brands/themeisle.svg b/apps/client/src/static/icons/brands/themeisle.svg similarity index 100% rename from src/static/icons/brands/themeisle.svg rename to apps/client/src/static/icons/brands/themeisle.svg diff --git a/src/static/icons/brands/think-peaks.svg b/apps/client/src/static/icons/brands/think-peaks.svg similarity index 100% rename from src/static/icons/brands/think-peaks.svg rename to apps/client/src/static/icons/brands/think-peaks.svg diff --git a/src/static/icons/brands/trade-federation.svg b/apps/client/src/static/icons/brands/trade-federation.svg similarity index 100% rename from src/static/icons/brands/trade-federation.svg rename to apps/client/src/static/icons/brands/trade-federation.svg diff --git a/src/static/icons/brands/trello.svg b/apps/client/src/static/icons/brands/trello.svg similarity index 100% rename from src/static/icons/brands/trello.svg rename to apps/client/src/static/icons/brands/trello.svg diff --git a/src/static/icons/brands/tripadvisor.svg b/apps/client/src/static/icons/brands/tripadvisor.svg similarity index 100% rename from src/static/icons/brands/tripadvisor.svg rename to apps/client/src/static/icons/brands/tripadvisor.svg diff --git a/src/static/icons/brands/tumblr-square.svg b/apps/client/src/static/icons/brands/tumblr-square.svg similarity index 100% rename from src/static/icons/brands/tumblr-square.svg rename to apps/client/src/static/icons/brands/tumblr-square.svg diff --git a/src/static/icons/brands/tumblr.svg b/apps/client/src/static/icons/brands/tumblr.svg similarity index 100% rename from src/static/icons/brands/tumblr.svg rename to apps/client/src/static/icons/brands/tumblr.svg diff --git a/src/static/icons/brands/twitch.svg b/apps/client/src/static/icons/brands/twitch.svg similarity index 100% rename from src/static/icons/brands/twitch.svg rename to apps/client/src/static/icons/brands/twitch.svg diff --git a/src/static/icons/brands/twitter-square.svg b/apps/client/src/static/icons/brands/twitter-square.svg similarity index 100% rename from src/static/icons/brands/twitter-square.svg rename to apps/client/src/static/icons/brands/twitter-square.svg diff --git a/src/static/icons/brands/twitter.svg b/apps/client/src/static/icons/brands/twitter.svg similarity index 100% rename from src/static/icons/brands/twitter.svg rename to apps/client/src/static/icons/brands/twitter.svg diff --git a/src/static/icons/brands/typo3.svg b/apps/client/src/static/icons/brands/typo3.svg similarity index 100% rename from src/static/icons/brands/typo3.svg rename to apps/client/src/static/icons/brands/typo3.svg diff --git a/src/static/icons/brands/uber.svg b/apps/client/src/static/icons/brands/uber.svg similarity index 100% rename from src/static/icons/brands/uber.svg rename to apps/client/src/static/icons/brands/uber.svg diff --git a/src/static/icons/brands/ubuntu.svg b/apps/client/src/static/icons/brands/ubuntu.svg similarity index 100% rename from src/static/icons/brands/ubuntu.svg rename to apps/client/src/static/icons/brands/ubuntu.svg diff --git a/src/static/icons/brands/uikit.svg b/apps/client/src/static/icons/brands/uikit.svg similarity index 100% rename from src/static/icons/brands/uikit.svg rename to apps/client/src/static/icons/brands/uikit.svg diff --git a/src/static/icons/brands/umbraco.svg b/apps/client/src/static/icons/brands/umbraco.svg similarity index 100% rename from src/static/icons/brands/umbraco.svg rename to apps/client/src/static/icons/brands/umbraco.svg diff --git a/src/static/icons/brands/uniregistry.svg b/apps/client/src/static/icons/brands/uniregistry.svg similarity index 100% rename from src/static/icons/brands/uniregistry.svg rename to apps/client/src/static/icons/brands/uniregistry.svg diff --git a/src/static/icons/brands/unity.svg b/apps/client/src/static/icons/brands/unity.svg similarity index 100% rename from src/static/icons/brands/unity.svg rename to apps/client/src/static/icons/brands/unity.svg diff --git a/src/static/icons/brands/untappd.svg b/apps/client/src/static/icons/brands/untappd.svg similarity index 100% rename from src/static/icons/brands/untappd.svg rename to apps/client/src/static/icons/brands/untappd.svg diff --git a/src/static/icons/brands/ups.svg b/apps/client/src/static/icons/brands/ups.svg similarity index 100% rename from src/static/icons/brands/ups.svg rename to apps/client/src/static/icons/brands/ups.svg diff --git a/src/static/icons/brands/usb.svg b/apps/client/src/static/icons/brands/usb.svg similarity index 100% rename from src/static/icons/brands/usb.svg rename to apps/client/src/static/icons/brands/usb.svg diff --git a/src/static/icons/brands/usps.svg b/apps/client/src/static/icons/brands/usps.svg similarity index 100% rename from src/static/icons/brands/usps.svg rename to apps/client/src/static/icons/brands/usps.svg diff --git a/src/static/icons/brands/ussunnah.svg b/apps/client/src/static/icons/brands/ussunnah.svg similarity index 100% rename from src/static/icons/brands/ussunnah.svg rename to apps/client/src/static/icons/brands/ussunnah.svg diff --git a/src/static/icons/brands/vaadin.svg b/apps/client/src/static/icons/brands/vaadin.svg similarity index 100% rename from src/static/icons/brands/vaadin.svg rename to apps/client/src/static/icons/brands/vaadin.svg diff --git a/src/static/icons/brands/viacoin.svg b/apps/client/src/static/icons/brands/viacoin.svg similarity index 100% rename from src/static/icons/brands/viacoin.svg rename to apps/client/src/static/icons/brands/viacoin.svg diff --git a/src/static/icons/brands/viadeo-square.svg b/apps/client/src/static/icons/brands/viadeo-square.svg similarity index 100% rename from src/static/icons/brands/viadeo-square.svg rename to apps/client/src/static/icons/brands/viadeo-square.svg diff --git a/src/static/icons/brands/viadeo.svg b/apps/client/src/static/icons/brands/viadeo.svg similarity index 100% rename from src/static/icons/brands/viadeo.svg rename to apps/client/src/static/icons/brands/viadeo.svg diff --git a/src/static/icons/brands/viber.svg b/apps/client/src/static/icons/brands/viber.svg similarity index 100% rename from src/static/icons/brands/viber.svg rename to apps/client/src/static/icons/brands/viber.svg diff --git a/src/static/icons/brands/vimeo-square.svg b/apps/client/src/static/icons/brands/vimeo-square.svg similarity index 100% rename from src/static/icons/brands/vimeo-square.svg rename to apps/client/src/static/icons/brands/vimeo-square.svg diff --git a/src/static/icons/brands/vimeo-v.svg b/apps/client/src/static/icons/brands/vimeo-v.svg similarity index 100% rename from src/static/icons/brands/vimeo-v.svg rename to apps/client/src/static/icons/brands/vimeo-v.svg diff --git a/src/static/icons/brands/vimeo.svg b/apps/client/src/static/icons/brands/vimeo.svg similarity index 100% rename from src/static/icons/brands/vimeo.svg rename to apps/client/src/static/icons/brands/vimeo.svg diff --git a/src/static/icons/brands/vine.svg b/apps/client/src/static/icons/brands/vine.svg similarity index 100% rename from src/static/icons/brands/vine.svg rename to apps/client/src/static/icons/brands/vine.svg diff --git a/src/static/icons/brands/vk.svg b/apps/client/src/static/icons/brands/vk.svg similarity index 100% rename from src/static/icons/brands/vk.svg rename to apps/client/src/static/icons/brands/vk.svg diff --git a/src/static/icons/brands/vnv.svg b/apps/client/src/static/icons/brands/vnv.svg similarity index 100% rename from src/static/icons/brands/vnv.svg rename to apps/client/src/static/icons/brands/vnv.svg diff --git a/src/static/icons/brands/vuejs.svg b/apps/client/src/static/icons/brands/vuejs.svg similarity index 100% rename from src/static/icons/brands/vuejs.svg rename to apps/client/src/static/icons/brands/vuejs.svg diff --git a/src/static/icons/brands/waze.svg b/apps/client/src/static/icons/brands/waze.svg similarity index 100% rename from src/static/icons/brands/waze.svg rename to apps/client/src/static/icons/brands/waze.svg diff --git a/src/static/icons/brands/weebly.svg b/apps/client/src/static/icons/brands/weebly.svg similarity index 100% rename from src/static/icons/brands/weebly.svg rename to apps/client/src/static/icons/brands/weebly.svg diff --git a/src/static/icons/brands/weibo.svg b/apps/client/src/static/icons/brands/weibo.svg similarity index 100% rename from src/static/icons/brands/weibo.svg rename to apps/client/src/static/icons/brands/weibo.svg diff --git a/src/static/icons/brands/weixin.svg b/apps/client/src/static/icons/brands/weixin.svg similarity index 100% rename from src/static/icons/brands/weixin.svg rename to apps/client/src/static/icons/brands/weixin.svg diff --git a/src/static/icons/brands/whatsapp-square.svg b/apps/client/src/static/icons/brands/whatsapp-square.svg similarity index 100% rename from src/static/icons/brands/whatsapp-square.svg rename to apps/client/src/static/icons/brands/whatsapp-square.svg diff --git a/src/static/icons/brands/whatsapp.svg b/apps/client/src/static/icons/brands/whatsapp.svg similarity index 100% rename from src/static/icons/brands/whatsapp.svg rename to apps/client/src/static/icons/brands/whatsapp.svg diff --git a/src/static/icons/brands/whmcs.svg b/apps/client/src/static/icons/brands/whmcs.svg similarity index 100% rename from src/static/icons/brands/whmcs.svg rename to apps/client/src/static/icons/brands/whmcs.svg diff --git a/src/static/icons/brands/wikipedia-w.svg b/apps/client/src/static/icons/brands/wikipedia-w.svg similarity index 100% rename from src/static/icons/brands/wikipedia-w.svg rename to apps/client/src/static/icons/brands/wikipedia-w.svg diff --git a/src/static/icons/brands/windows.svg b/apps/client/src/static/icons/brands/windows.svg similarity index 100% rename from src/static/icons/brands/windows.svg rename to apps/client/src/static/icons/brands/windows.svg diff --git a/src/static/icons/brands/wix.svg b/apps/client/src/static/icons/brands/wix.svg similarity index 100% rename from src/static/icons/brands/wix.svg rename to apps/client/src/static/icons/brands/wix.svg diff --git a/src/static/icons/brands/wizards-of-the-coast.svg b/apps/client/src/static/icons/brands/wizards-of-the-coast.svg similarity index 100% rename from src/static/icons/brands/wizards-of-the-coast.svg rename to apps/client/src/static/icons/brands/wizards-of-the-coast.svg diff --git a/src/static/icons/brands/wolf-pack-battalion.svg b/apps/client/src/static/icons/brands/wolf-pack-battalion.svg similarity index 100% rename from src/static/icons/brands/wolf-pack-battalion.svg rename to apps/client/src/static/icons/brands/wolf-pack-battalion.svg diff --git a/src/static/icons/brands/wordpress-simple.svg b/apps/client/src/static/icons/brands/wordpress-simple.svg similarity index 100% rename from src/static/icons/brands/wordpress-simple.svg rename to apps/client/src/static/icons/brands/wordpress-simple.svg diff --git a/src/static/icons/brands/wordpress.svg b/apps/client/src/static/icons/brands/wordpress.svg similarity index 100% rename from src/static/icons/brands/wordpress.svg rename to apps/client/src/static/icons/brands/wordpress.svg diff --git a/src/static/icons/brands/wpbeginner.svg b/apps/client/src/static/icons/brands/wpbeginner.svg similarity index 100% rename from src/static/icons/brands/wpbeginner.svg rename to apps/client/src/static/icons/brands/wpbeginner.svg diff --git a/src/static/icons/brands/wpexplorer.svg b/apps/client/src/static/icons/brands/wpexplorer.svg similarity index 100% rename from src/static/icons/brands/wpexplorer.svg rename to apps/client/src/static/icons/brands/wpexplorer.svg diff --git a/src/static/icons/brands/wpforms.svg b/apps/client/src/static/icons/brands/wpforms.svg similarity index 100% rename from src/static/icons/brands/wpforms.svg rename to apps/client/src/static/icons/brands/wpforms.svg diff --git a/src/static/icons/brands/wpressr.svg b/apps/client/src/static/icons/brands/wpressr.svg similarity index 100% rename from src/static/icons/brands/wpressr.svg rename to apps/client/src/static/icons/brands/wpressr.svg diff --git a/src/static/icons/brands/xbox.svg b/apps/client/src/static/icons/brands/xbox.svg similarity index 100% rename from src/static/icons/brands/xbox.svg rename to apps/client/src/static/icons/brands/xbox.svg diff --git a/src/static/icons/brands/xing-square.svg b/apps/client/src/static/icons/brands/xing-square.svg similarity index 100% rename from src/static/icons/brands/xing-square.svg rename to apps/client/src/static/icons/brands/xing-square.svg diff --git a/src/static/icons/brands/xing.svg b/apps/client/src/static/icons/brands/xing.svg similarity index 100% rename from src/static/icons/brands/xing.svg rename to apps/client/src/static/icons/brands/xing.svg diff --git a/src/static/icons/brands/y-combinator.svg b/apps/client/src/static/icons/brands/y-combinator.svg similarity index 100% rename from src/static/icons/brands/y-combinator.svg rename to apps/client/src/static/icons/brands/y-combinator.svg diff --git a/src/static/icons/brands/yahoo.svg b/apps/client/src/static/icons/brands/yahoo.svg similarity index 100% rename from src/static/icons/brands/yahoo.svg rename to apps/client/src/static/icons/brands/yahoo.svg diff --git a/src/static/icons/brands/yammer.svg b/apps/client/src/static/icons/brands/yammer.svg similarity index 100% rename from src/static/icons/brands/yammer.svg rename to apps/client/src/static/icons/brands/yammer.svg diff --git a/src/static/icons/brands/yandex-international.svg b/apps/client/src/static/icons/brands/yandex-international.svg similarity index 100% rename from src/static/icons/brands/yandex-international.svg rename to apps/client/src/static/icons/brands/yandex-international.svg diff --git a/src/static/icons/brands/yandex.svg b/apps/client/src/static/icons/brands/yandex.svg similarity index 100% rename from src/static/icons/brands/yandex.svg rename to apps/client/src/static/icons/brands/yandex.svg diff --git a/src/static/icons/brands/yarn.svg b/apps/client/src/static/icons/brands/yarn.svg similarity index 100% rename from src/static/icons/brands/yarn.svg rename to apps/client/src/static/icons/brands/yarn.svg diff --git a/src/static/icons/brands/yelp.svg b/apps/client/src/static/icons/brands/yelp.svg similarity index 100% rename from src/static/icons/brands/yelp.svg rename to apps/client/src/static/icons/brands/yelp.svg diff --git a/src/static/icons/brands/yoast.svg b/apps/client/src/static/icons/brands/yoast.svg similarity index 100% rename from src/static/icons/brands/yoast.svg rename to apps/client/src/static/icons/brands/yoast.svg diff --git a/src/static/icons/brands/youtube-square.svg b/apps/client/src/static/icons/brands/youtube-square.svg similarity index 100% rename from src/static/icons/brands/youtube-square.svg rename to apps/client/src/static/icons/brands/youtube-square.svg diff --git a/src/static/icons/brands/youtube.svg b/apps/client/src/static/icons/brands/youtube.svg similarity index 100% rename from src/static/icons/brands/youtube.svg rename to apps/client/src/static/icons/brands/youtube.svg diff --git a/src/static/icons/brands/zhihu.svg b/apps/client/src/static/icons/brands/zhihu.svg similarity index 100% rename from src/static/icons/brands/zhihu.svg rename to apps/client/src/static/icons/brands/zhihu.svg diff --git a/src/static/icons/duotone/abacus.svg b/apps/client/src/static/icons/duotone/abacus.svg similarity index 100% rename from src/static/icons/duotone/abacus.svg rename to apps/client/src/static/icons/duotone/abacus.svg diff --git a/src/static/icons/duotone/acorn.svg b/apps/client/src/static/icons/duotone/acorn.svg similarity index 100% rename from src/static/icons/duotone/acorn.svg rename to apps/client/src/static/icons/duotone/acorn.svg diff --git a/src/static/icons/duotone/ad.svg b/apps/client/src/static/icons/duotone/ad.svg similarity index 100% rename from src/static/icons/duotone/ad.svg rename to apps/client/src/static/icons/duotone/ad.svg diff --git a/src/static/icons/duotone/address-book.svg b/apps/client/src/static/icons/duotone/address-book.svg similarity index 100% rename from src/static/icons/duotone/address-book.svg rename to apps/client/src/static/icons/duotone/address-book.svg diff --git a/src/static/icons/duotone/address-card.svg b/apps/client/src/static/icons/duotone/address-card.svg similarity index 100% rename from src/static/icons/duotone/address-card.svg rename to apps/client/src/static/icons/duotone/address-card.svg diff --git a/src/static/icons/duotone/adjust.svg b/apps/client/src/static/icons/duotone/adjust.svg similarity index 100% rename from src/static/icons/duotone/adjust.svg rename to apps/client/src/static/icons/duotone/adjust.svg diff --git a/src/static/icons/duotone/air-conditioner.svg b/apps/client/src/static/icons/duotone/air-conditioner.svg similarity index 100% rename from src/static/icons/duotone/air-conditioner.svg rename to apps/client/src/static/icons/duotone/air-conditioner.svg diff --git a/src/static/icons/duotone/air-freshener.svg b/apps/client/src/static/icons/duotone/air-freshener.svg similarity index 100% rename from src/static/icons/duotone/air-freshener.svg rename to apps/client/src/static/icons/duotone/air-freshener.svg diff --git a/src/static/icons/duotone/alarm-clock.svg b/apps/client/src/static/icons/duotone/alarm-clock.svg similarity index 100% rename from src/static/icons/duotone/alarm-clock.svg rename to apps/client/src/static/icons/duotone/alarm-clock.svg diff --git a/src/static/icons/duotone/alarm-exclamation.svg b/apps/client/src/static/icons/duotone/alarm-exclamation.svg similarity index 100% rename from src/static/icons/duotone/alarm-exclamation.svg rename to apps/client/src/static/icons/duotone/alarm-exclamation.svg diff --git a/src/static/icons/duotone/alarm-plus.svg b/apps/client/src/static/icons/duotone/alarm-plus.svg similarity index 100% rename from src/static/icons/duotone/alarm-plus.svg rename to apps/client/src/static/icons/duotone/alarm-plus.svg diff --git a/src/static/icons/duotone/alarm-snooze.svg b/apps/client/src/static/icons/duotone/alarm-snooze.svg similarity index 100% rename from src/static/icons/duotone/alarm-snooze.svg rename to apps/client/src/static/icons/duotone/alarm-snooze.svg diff --git a/src/static/icons/duotone/album-collection.svg b/apps/client/src/static/icons/duotone/album-collection.svg similarity index 100% rename from src/static/icons/duotone/album-collection.svg rename to apps/client/src/static/icons/duotone/album-collection.svg diff --git a/src/static/icons/duotone/album.svg b/apps/client/src/static/icons/duotone/album.svg similarity index 100% rename from src/static/icons/duotone/album.svg rename to apps/client/src/static/icons/duotone/album.svg diff --git a/src/static/icons/duotone/alicorn.svg b/apps/client/src/static/icons/duotone/alicorn.svg similarity index 100% rename from src/static/icons/duotone/alicorn.svg rename to apps/client/src/static/icons/duotone/alicorn.svg diff --git a/src/static/icons/duotone/alien-monster.svg b/apps/client/src/static/icons/duotone/alien-monster.svg similarity index 100% rename from src/static/icons/duotone/alien-monster.svg rename to apps/client/src/static/icons/duotone/alien-monster.svg diff --git a/src/static/icons/duotone/alien.svg b/apps/client/src/static/icons/duotone/alien.svg similarity index 100% rename from src/static/icons/duotone/alien.svg rename to apps/client/src/static/icons/duotone/alien.svg diff --git a/src/static/icons/duotone/align-center.svg b/apps/client/src/static/icons/duotone/align-center.svg similarity index 100% rename from src/static/icons/duotone/align-center.svg rename to apps/client/src/static/icons/duotone/align-center.svg diff --git a/src/static/icons/duotone/align-justify.svg b/apps/client/src/static/icons/duotone/align-justify.svg similarity index 100% rename from src/static/icons/duotone/align-justify.svg rename to apps/client/src/static/icons/duotone/align-justify.svg diff --git a/src/static/icons/duotone/align-left.svg b/apps/client/src/static/icons/duotone/align-left.svg similarity index 100% rename from src/static/icons/duotone/align-left.svg rename to apps/client/src/static/icons/duotone/align-left.svg diff --git a/src/static/icons/duotone/align-right.svg b/apps/client/src/static/icons/duotone/align-right.svg similarity index 100% rename from src/static/icons/duotone/align-right.svg rename to apps/client/src/static/icons/duotone/align-right.svg diff --git a/src/static/icons/duotone/align-slash.svg b/apps/client/src/static/icons/duotone/align-slash.svg similarity index 100% rename from src/static/icons/duotone/align-slash.svg rename to apps/client/src/static/icons/duotone/align-slash.svg diff --git a/src/static/icons/duotone/allergies.svg b/apps/client/src/static/icons/duotone/allergies.svg similarity index 100% rename from src/static/icons/duotone/allergies.svg rename to apps/client/src/static/icons/duotone/allergies.svg diff --git a/src/static/icons/duotone/ambulance.svg b/apps/client/src/static/icons/duotone/ambulance.svg similarity index 100% rename from src/static/icons/duotone/ambulance.svg rename to apps/client/src/static/icons/duotone/ambulance.svg diff --git a/src/static/icons/duotone/american-sign-language-interpreting.svg b/apps/client/src/static/icons/duotone/american-sign-language-interpreting.svg similarity index 100% rename from src/static/icons/duotone/american-sign-language-interpreting.svg rename to apps/client/src/static/icons/duotone/american-sign-language-interpreting.svg diff --git a/src/static/icons/duotone/amp-guitar.svg b/apps/client/src/static/icons/duotone/amp-guitar.svg similarity index 100% rename from src/static/icons/duotone/amp-guitar.svg rename to apps/client/src/static/icons/duotone/amp-guitar.svg diff --git a/src/static/icons/duotone/analytics.svg b/apps/client/src/static/icons/duotone/analytics.svg similarity index 100% rename from src/static/icons/duotone/analytics.svg rename to apps/client/src/static/icons/duotone/analytics.svg diff --git a/src/static/icons/duotone/anchor.svg b/apps/client/src/static/icons/duotone/anchor.svg similarity index 100% rename from src/static/icons/duotone/anchor.svg rename to apps/client/src/static/icons/duotone/anchor.svg diff --git a/src/static/icons/duotone/angel.svg b/apps/client/src/static/icons/duotone/angel.svg similarity index 100% rename from src/static/icons/duotone/angel.svg rename to apps/client/src/static/icons/duotone/angel.svg diff --git a/src/static/icons/duotone/angle-double-down.svg b/apps/client/src/static/icons/duotone/angle-double-down.svg similarity index 100% rename from src/static/icons/duotone/angle-double-down.svg rename to apps/client/src/static/icons/duotone/angle-double-down.svg diff --git a/src/static/icons/duotone/angle-double-left.svg b/apps/client/src/static/icons/duotone/angle-double-left.svg similarity index 100% rename from src/static/icons/duotone/angle-double-left.svg rename to apps/client/src/static/icons/duotone/angle-double-left.svg diff --git a/src/static/icons/duotone/angle-double-right.svg b/apps/client/src/static/icons/duotone/angle-double-right.svg similarity index 100% rename from src/static/icons/duotone/angle-double-right.svg rename to apps/client/src/static/icons/duotone/angle-double-right.svg diff --git a/src/static/icons/duotone/angle-double-up.svg b/apps/client/src/static/icons/duotone/angle-double-up.svg similarity index 100% rename from src/static/icons/duotone/angle-double-up.svg rename to apps/client/src/static/icons/duotone/angle-double-up.svg diff --git a/src/static/icons/duotone/angle-down.svg b/apps/client/src/static/icons/duotone/angle-down.svg similarity index 100% rename from src/static/icons/duotone/angle-down.svg rename to apps/client/src/static/icons/duotone/angle-down.svg diff --git a/src/static/icons/duotone/angle-left.svg b/apps/client/src/static/icons/duotone/angle-left.svg similarity index 100% rename from src/static/icons/duotone/angle-left.svg rename to apps/client/src/static/icons/duotone/angle-left.svg diff --git a/src/static/icons/duotone/angle-right.svg b/apps/client/src/static/icons/duotone/angle-right.svg similarity index 100% rename from src/static/icons/duotone/angle-right.svg rename to apps/client/src/static/icons/duotone/angle-right.svg diff --git a/src/static/icons/duotone/angle-up.svg b/apps/client/src/static/icons/duotone/angle-up.svg similarity index 100% rename from src/static/icons/duotone/angle-up.svg rename to apps/client/src/static/icons/duotone/angle-up.svg diff --git a/src/static/icons/duotone/angry.svg b/apps/client/src/static/icons/duotone/angry.svg similarity index 100% rename from src/static/icons/duotone/angry.svg rename to apps/client/src/static/icons/duotone/angry.svg diff --git a/src/static/icons/duotone/ankh.svg b/apps/client/src/static/icons/duotone/ankh.svg similarity index 100% rename from src/static/icons/duotone/ankh.svg rename to apps/client/src/static/icons/duotone/ankh.svg diff --git a/src/static/icons/duotone/apple-alt.svg b/apps/client/src/static/icons/duotone/apple-alt.svg similarity index 100% rename from src/static/icons/duotone/apple-alt.svg rename to apps/client/src/static/icons/duotone/apple-alt.svg diff --git a/src/static/icons/duotone/apple-crate.svg b/apps/client/src/static/icons/duotone/apple-crate.svg similarity index 100% rename from src/static/icons/duotone/apple-crate.svg rename to apps/client/src/static/icons/duotone/apple-crate.svg diff --git a/src/static/icons/duotone/archive.svg b/apps/client/src/static/icons/duotone/archive.svg similarity index 100% rename from src/static/icons/duotone/archive.svg rename to apps/client/src/static/icons/duotone/archive.svg diff --git a/src/static/icons/duotone/archway.svg b/apps/client/src/static/icons/duotone/archway.svg similarity index 100% rename from src/static/icons/duotone/archway.svg rename to apps/client/src/static/icons/duotone/archway.svg diff --git a/src/static/icons/duotone/arrow-alt-circle-down.svg b/apps/client/src/static/icons/duotone/arrow-alt-circle-down.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-circle-down.svg rename to apps/client/src/static/icons/duotone/arrow-alt-circle-down.svg diff --git a/src/static/icons/duotone/arrow-alt-circle-left.svg b/apps/client/src/static/icons/duotone/arrow-alt-circle-left.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-circle-left.svg rename to apps/client/src/static/icons/duotone/arrow-alt-circle-left.svg diff --git a/src/static/icons/duotone/arrow-alt-circle-right.svg b/apps/client/src/static/icons/duotone/arrow-alt-circle-right.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-circle-right.svg rename to apps/client/src/static/icons/duotone/arrow-alt-circle-right.svg diff --git a/src/static/icons/duotone/arrow-alt-circle-up.svg b/apps/client/src/static/icons/duotone/arrow-alt-circle-up.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-circle-up.svg rename to apps/client/src/static/icons/duotone/arrow-alt-circle-up.svg diff --git a/src/static/icons/duotone/arrow-alt-down.svg b/apps/client/src/static/icons/duotone/arrow-alt-down.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-down.svg rename to apps/client/src/static/icons/duotone/arrow-alt-down.svg diff --git a/src/static/icons/duotone/arrow-alt-from-bottom.svg b/apps/client/src/static/icons/duotone/arrow-alt-from-bottom.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-from-bottom.svg rename to apps/client/src/static/icons/duotone/arrow-alt-from-bottom.svg diff --git a/src/static/icons/duotone/arrow-alt-from-left.svg b/apps/client/src/static/icons/duotone/arrow-alt-from-left.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-from-left.svg rename to apps/client/src/static/icons/duotone/arrow-alt-from-left.svg diff --git a/src/static/icons/duotone/arrow-alt-from-right.svg b/apps/client/src/static/icons/duotone/arrow-alt-from-right.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-from-right.svg rename to apps/client/src/static/icons/duotone/arrow-alt-from-right.svg diff --git a/src/static/icons/duotone/arrow-alt-from-top.svg b/apps/client/src/static/icons/duotone/arrow-alt-from-top.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-from-top.svg rename to apps/client/src/static/icons/duotone/arrow-alt-from-top.svg diff --git a/src/static/icons/duotone/arrow-alt-left.svg b/apps/client/src/static/icons/duotone/arrow-alt-left.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-left.svg rename to apps/client/src/static/icons/duotone/arrow-alt-left.svg diff --git a/src/static/icons/duotone/arrow-alt-right.svg b/apps/client/src/static/icons/duotone/arrow-alt-right.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-right.svg rename to apps/client/src/static/icons/duotone/arrow-alt-right.svg diff --git a/src/static/icons/duotone/arrow-alt-square-down.svg b/apps/client/src/static/icons/duotone/arrow-alt-square-down.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-square-down.svg rename to apps/client/src/static/icons/duotone/arrow-alt-square-down.svg diff --git a/src/static/icons/duotone/arrow-alt-square-left.svg b/apps/client/src/static/icons/duotone/arrow-alt-square-left.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-square-left.svg rename to apps/client/src/static/icons/duotone/arrow-alt-square-left.svg diff --git a/src/static/icons/duotone/arrow-alt-square-right.svg b/apps/client/src/static/icons/duotone/arrow-alt-square-right.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-square-right.svg rename to apps/client/src/static/icons/duotone/arrow-alt-square-right.svg diff --git a/src/static/icons/duotone/arrow-alt-square-up.svg b/apps/client/src/static/icons/duotone/arrow-alt-square-up.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-square-up.svg rename to apps/client/src/static/icons/duotone/arrow-alt-square-up.svg diff --git a/src/static/icons/duotone/arrow-alt-to-bottom.svg b/apps/client/src/static/icons/duotone/arrow-alt-to-bottom.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-to-bottom.svg rename to apps/client/src/static/icons/duotone/arrow-alt-to-bottom.svg diff --git a/src/static/icons/duotone/arrow-alt-to-left.svg b/apps/client/src/static/icons/duotone/arrow-alt-to-left.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-to-left.svg rename to apps/client/src/static/icons/duotone/arrow-alt-to-left.svg diff --git a/src/static/icons/duotone/arrow-alt-to-right.svg b/apps/client/src/static/icons/duotone/arrow-alt-to-right.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-to-right.svg rename to apps/client/src/static/icons/duotone/arrow-alt-to-right.svg diff --git a/src/static/icons/duotone/arrow-alt-to-top.svg b/apps/client/src/static/icons/duotone/arrow-alt-to-top.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-to-top.svg rename to apps/client/src/static/icons/duotone/arrow-alt-to-top.svg diff --git a/src/static/icons/duotone/arrow-alt-up.svg b/apps/client/src/static/icons/duotone/arrow-alt-up.svg similarity index 100% rename from src/static/icons/duotone/arrow-alt-up.svg rename to apps/client/src/static/icons/duotone/arrow-alt-up.svg diff --git a/src/static/icons/duotone/arrow-circle-down.svg b/apps/client/src/static/icons/duotone/arrow-circle-down.svg similarity index 100% rename from src/static/icons/duotone/arrow-circle-down.svg rename to apps/client/src/static/icons/duotone/arrow-circle-down.svg diff --git a/src/static/icons/duotone/arrow-circle-left.svg b/apps/client/src/static/icons/duotone/arrow-circle-left.svg similarity index 100% rename from src/static/icons/duotone/arrow-circle-left.svg rename to apps/client/src/static/icons/duotone/arrow-circle-left.svg diff --git a/src/static/icons/duotone/arrow-circle-right.svg b/apps/client/src/static/icons/duotone/arrow-circle-right.svg similarity index 100% rename from src/static/icons/duotone/arrow-circle-right.svg rename to apps/client/src/static/icons/duotone/arrow-circle-right.svg diff --git a/src/static/icons/duotone/arrow-circle-up.svg b/apps/client/src/static/icons/duotone/arrow-circle-up.svg similarity index 100% rename from src/static/icons/duotone/arrow-circle-up.svg rename to apps/client/src/static/icons/duotone/arrow-circle-up.svg diff --git a/src/static/icons/duotone/arrow-down.svg b/apps/client/src/static/icons/duotone/arrow-down.svg similarity index 100% rename from src/static/icons/duotone/arrow-down.svg rename to apps/client/src/static/icons/duotone/arrow-down.svg diff --git a/src/static/icons/duotone/arrow-from-bottom.svg b/apps/client/src/static/icons/duotone/arrow-from-bottom.svg similarity index 100% rename from src/static/icons/duotone/arrow-from-bottom.svg rename to apps/client/src/static/icons/duotone/arrow-from-bottom.svg diff --git a/src/static/icons/duotone/arrow-from-left.svg b/apps/client/src/static/icons/duotone/arrow-from-left.svg similarity index 100% rename from src/static/icons/duotone/arrow-from-left.svg rename to apps/client/src/static/icons/duotone/arrow-from-left.svg diff --git a/src/static/icons/duotone/arrow-from-right.svg b/apps/client/src/static/icons/duotone/arrow-from-right.svg similarity index 100% rename from src/static/icons/duotone/arrow-from-right.svg rename to apps/client/src/static/icons/duotone/arrow-from-right.svg diff --git a/src/static/icons/duotone/arrow-from-top.svg b/apps/client/src/static/icons/duotone/arrow-from-top.svg similarity index 100% rename from src/static/icons/duotone/arrow-from-top.svg rename to apps/client/src/static/icons/duotone/arrow-from-top.svg diff --git a/src/static/icons/duotone/arrow-left.svg b/apps/client/src/static/icons/duotone/arrow-left.svg similarity index 100% rename from src/static/icons/duotone/arrow-left.svg rename to apps/client/src/static/icons/duotone/arrow-left.svg diff --git a/src/static/icons/duotone/arrow-right.svg b/apps/client/src/static/icons/duotone/arrow-right.svg similarity index 100% rename from src/static/icons/duotone/arrow-right.svg rename to apps/client/src/static/icons/duotone/arrow-right.svg diff --git a/src/static/icons/duotone/arrow-square-down.svg b/apps/client/src/static/icons/duotone/arrow-square-down.svg similarity index 100% rename from src/static/icons/duotone/arrow-square-down.svg rename to apps/client/src/static/icons/duotone/arrow-square-down.svg diff --git a/src/static/icons/duotone/arrow-square-left.svg b/apps/client/src/static/icons/duotone/arrow-square-left.svg similarity index 100% rename from src/static/icons/duotone/arrow-square-left.svg rename to apps/client/src/static/icons/duotone/arrow-square-left.svg diff --git a/src/static/icons/duotone/arrow-square-right.svg b/apps/client/src/static/icons/duotone/arrow-square-right.svg similarity index 100% rename from src/static/icons/duotone/arrow-square-right.svg rename to apps/client/src/static/icons/duotone/arrow-square-right.svg diff --git a/src/static/icons/duotone/arrow-square-up.svg b/apps/client/src/static/icons/duotone/arrow-square-up.svg similarity index 100% rename from src/static/icons/duotone/arrow-square-up.svg rename to apps/client/src/static/icons/duotone/arrow-square-up.svg diff --git a/src/static/icons/duotone/arrow-to-bottom.svg b/apps/client/src/static/icons/duotone/arrow-to-bottom.svg similarity index 100% rename from src/static/icons/duotone/arrow-to-bottom.svg rename to apps/client/src/static/icons/duotone/arrow-to-bottom.svg diff --git a/src/static/icons/duotone/arrow-to-left.svg b/apps/client/src/static/icons/duotone/arrow-to-left.svg similarity index 100% rename from src/static/icons/duotone/arrow-to-left.svg rename to apps/client/src/static/icons/duotone/arrow-to-left.svg diff --git a/src/static/icons/duotone/arrow-to-right.svg b/apps/client/src/static/icons/duotone/arrow-to-right.svg similarity index 100% rename from src/static/icons/duotone/arrow-to-right.svg rename to apps/client/src/static/icons/duotone/arrow-to-right.svg diff --git a/src/static/icons/duotone/arrow-to-top.svg b/apps/client/src/static/icons/duotone/arrow-to-top.svg similarity index 100% rename from src/static/icons/duotone/arrow-to-top.svg rename to apps/client/src/static/icons/duotone/arrow-to-top.svg diff --git a/src/static/icons/duotone/arrow-up.svg b/apps/client/src/static/icons/duotone/arrow-up.svg similarity index 100% rename from src/static/icons/duotone/arrow-up.svg rename to apps/client/src/static/icons/duotone/arrow-up.svg diff --git a/src/static/icons/duotone/arrows-alt-h.svg b/apps/client/src/static/icons/duotone/arrows-alt-h.svg similarity index 100% rename from src/static/icons/duotone/arrows-alt-h.svg rename to apps/client/src/static/icons/duotone/arrows-alt-h.svg diff --git a/src/static/icons/duotone/arrows-alt-v.svg b/apps/client/src/static/icons/duotone/arrows-alt-v.svg similarity index 100% rename from src/static/icons/duotone/arrows-alt-v.svg rename to apps/client/src/static/icons/duotone/arrows-alt-v.svg diff --git a/src/static/icons/duotone/arrows-alt.svg b/apps/client/src/static/icons/duotone/arrows-alt.svg similarity index 100% rename from src/static/icons/duotone/arrows-alt.svg rename to apps/client/src/static/icons/duotone/arrows-alt.svg diff --git a/src/static/icons/duotone/arrows-h.svg b/apps/client/src/static/icons/duotone/arrows-h.svg similarity index 100% rename from src/static/icons/duotone/arrows-h.svg rename to apps/client/src/static/icons/duotone/arrows-h.svg diff --git a/src/static/icons/duotone/arrows-v.svg b/apps/client/src/static/icons/duotone/arrows-v.svg similarity index 100% rename from src/static/icons/duotone/arrows-v.svg rename to apps/client/src/static/icons/duotone/arrows-v.svg diff --git a/src/static/icons/duotone/arrows.svg b/apps/client/src/static/icons/duotone/arrows.svg similarity index 100% rename from src/static/icons/duotone/arrows.svg rename to apps/client/src/static/icons/duotone/arrows.svg diff --git a/src/static/icons/duotone/assistive-listening-systems.svg b/apps/client/src/static/icons/duotone/assistive-listening-systems.svg similarity index 100% rename from src/static/icons/duotone/assistive-listening-systems.svg rename to apps/client/src/static/icons/duotone/assistive-listening-systems.svg diff --git a/src/static/icons/duotone/asterisk.svg b/apps/client/src/static/icons/duotone/asterisk.svg similarity index 100% rename from src/static/icons/duotone/asterisk.svg rename to apps/client/src/static/icons/duotone/asterisk.svg diff --git a/src/static/icons/duotone/at.svg b/apps/client/src/static/icons/duotone/at.svg similarity index 100% rename from src/static/icons/duotone/at.svg rename to apps/client/src/static/icons/duotone/at.svg diff --git a/src/static/icons/duotone/atlas.svg b/apps/client/src/static/icons/duotone/atlas.svg similarity index 100% rename from src/static/icons/duotone/atlas.svg rename to apps/client/src/static/icons/duotone/atlas.svg diff --git a/src/static/icons/duotone/atom-alt.svg b/apps/client/src/static/icons/duotone/atom-alt.svg similarity index 100% rename from src/static/icons/duotone/atom-alt.svg rename to apps/client/src/static/icons/duotone/atom-alt.svg diff --git a/src/static/icons/duotone/atom.svg b/apps/client/src/static/icons/duotone/atom.svg similarity index 100% rename from src/static/icons/duotone/atom.svg rename to apps/client/src/static/icons/duotone/atom.svg diff --git a/src/static/icons/duotone/audio-description.svg b/apps/client/src/static/icons/duotone/audio-description.svg similarity index 100% rename from src/static/icons/duotone/audio-description.svg rename to apps/client/src/static/icons/duotone/audio-description.svg diff --git a/src/static/icons/duotone/award.svg b/apps/client/src/static/icons/duotone/award.svg similarity index 100% rename from src/static/icons/duotone/award.svg rename to apps/client/src/static/icons/duotone/award.svg diff --git a/src/static/icons/duotone/axe-battle.svg b/apps/client/src/static/icons/duotone/axe-battle.svg similarity index 100% rename from src/static/icons/duotone/axe-battle.svg rename to apps/client/src/static/icons/duotone/axe-battle.svg diff --git a/src/static/icons/duotone/axe.svg b/apps/client/src/static/icons/duotone/axe.svg similarity index 100% rename from src/static/icons/duotone/axe.svg rename to apps/client/src/static/icons/duotone/axe.svg diff --git a/src/static/icons/duotone/baby-carriage.svg b/apps/client/src/static/icons/duotone/baby-carriage.svg similarity index 100% rename from src/static/icons/duotone/baby-carriage.svg rename to apps/client/src/static/icons/duotone/baby-carriage.svg diff --git a/src/static/icons/duotone/baby.svg b/apps/client/src/static/icons/duotone/baby.svg similarity index 100% rename from src/static/icons/duotone/baby.svg rename to apps/client/src/static/icons/duotone/baby.svg diff --git a/src/static/icons/duotone/backpack.svg b/apps/client/src/static/icons/duotone/backpack.svg similarity index 100% rename from src/static/icons/duotone/backpack.svg rename to apps/client/src/static/icons/duotone/backpack.svg diff --git a/src/static/icons/duotone/backspace.svg b/apps/client/src/static/icons/duotone/backspace.svg similarity index 100% rename from src/static/icons/duotone/backspace.svg rename to apps/client/src/static/icons/duotone/backspace.svg diff --git a/src/static/icons/duotone/backward.svg b/apps/client/src/static/icons/duotone/backward.svg similarity index 100% rename from src/static/icons/duotone/backward.svg rename to apps/client/src/static/icons/duotone/backward.svg diff --git a/src/static/icons/duotone/bacon.svg b/apps/client/src/static/icons/duotone/bacon.svg similarity index 100% rename from src/static/icons/duotone/bacon.svg rename to apps/client/src/static/icons/duotone/bacon.svg diff --git a/src/static/icons/duotone/badge-check.svg b/apps/client/src/static/icons/duotone/badge-check.svg similarity index 100% rename from src/static/icons/duotone/badge-check.svg rename to apps/client/src/static/icons/duotone/badge-check.svg diff --git a/src/static/icons/duotone/badge-dollar.svg b/apps/client/src/static/icons/duotone/badge-dollar.svg similarity index 100% rename from src/static/icons/duotone/badge-dollar.svg rename to apps/client/src/static/icons/duotone/badge-dollar.svg diff --git a/src/static/icons/duotone/badge-percent.svg b/apps/client/src/static/icons/duotone/badge-percent.svg similarity index 100% rename from src/static/icons/duotone/badge-percent.svg rename to apps/client/src/static/icons/duotone/badge-percent.svg diff --git a/src/static/icons/duotone/badge-sheriff.svg b/apps/client/src/static/icons/duotone/badge-sheriff.svg similarity index 100% rename from src/static/icons/duotone/badge-sheriff.svg rename to apps/client/src/static/icons/duotone/badge-sheriff.svg diff --git a/src/static/icons/duotone/badge.svg b/apps/client/src/static/icons/duotone/badge.svg similarity index 100% rename from src/static/icons/duotone/badge.svg rename to apps/client/src/static/icons/duotone/badge.svg diff --git a/src/static/icons/duotone/badger-honey.svg b/apps/client/src/static/icons/duotone/badger-honey.svg similarity index 100% rename from src/static/icons/duotone/badger-honey.svg rename to apps/client/src/static/icons/duotone/badger-honey.svg diff --git a/src/static/icons/duotone/bags-shopping.svg b/apps/client/src/static/icons/duotone/bags-shopping.svg similarity index 100% rename from src/static/icons/duotone/bags-shopping.svg rename to apps/client/src/static/icons/duotone/bags-shopping.svg diff --git a/src/static/icons/duotone/bahai.svg b/apps/client/src/static/icons/duotone/bahai.svg similarity index 100% rename from src/static/icons/duotone/bahai.svg rename to apps/client/src/static/icons/duotone/bahai.svg diff --git a/src/static/icons/duotone/balance-scale-left.svg b/apps/client/src/static/icons/duotone/balance-scale-left.svg similarity index 100% rename from src/static/icons/duotone/balance-scale-left.svg rename to apps/client/src/static/icons/duotone/balance-scale-left.svg diff --git a/src/static/icons/duotone/balance-scale-right.svg b/apps/client/src/static/icons/duotone/balance-scale-right.svg similarity index 100% rename from src/static/icons/duotone/balance-scale-right.svg rename to apps/client/src/static/icons/duotone/balance-scale-right.svg diff --git a/src/static/icons/duotone/balance-scale.svg b/apps/client/src/static/icons/duotone/balance-scale.svg similarity index 100% rename from src/static/icons/duotone/balance-scale.svg rename to apps/client/src/static/icons/duotone/balance-scale.svg diff --git a/src/static/icons/duotone/ball-pile.svg b/apps/client/src/static/icons/duotone/ball-pile.svg similarity index 100% rename from src/static/icons/duotone/ball-pile.svg rename to apps/client/src/static/icons/duotone/ball-pile.svg diff --git a/src/static/icons/duotone/ballot-check.svg b/apps/client/src/static/icons/duotone/ballot-check.svg similarity index 100% rename from src/static/icons/duotone/ballot-check.svg rename to apps/client/src/static/icons/duotone/ballot-check.svg diff --git a/src/static/icons/duotone/ballot.svg b/apps/client/src/static/icons/duotone/ballot.svg similarity index 100% rename from src/static/icons/duotone/ballot.svg rename to apps/client/src/static/icons/duotone/ballot.svg diff --git a/src/static/icons/duotone/ban.svg b/apps/client/src/static/icons/duotone/ban.svg similarity index 100% rename from src/static/icons/duotone/ban.svg rename to apps/client/src/static/icons/duotone/ban.svg diff --git a/src/static/icons/duotone/band-aid.svg b/apps/client/src/static/icons/duotone/band-aid.svg similarity index 100% rename from src/static/icons/duotone/band-aid.svg rename to apps/client/src/static/icons/duotone/band-aid.svg diff --git a/src/static/icons/duotone/banjo.svg b/apps/client/src/static/icons/duotone/banjo.svg similarity index 100% rename from src/static/icons/duotone/banjo.svg rename to apps/client/src/static/icons/duotone/banjo.svg diff --git a/src/static/icons/duotone/barcode-alt.svg b/apps/client/src/static/icons/duotone/barcode-alt.svg similarity index 100% rename from src/static/icons/duotone/barcode-alt.svg rename to apps/client/src/static/icons/duotone/barcode-alt.svg diff --git a/src/static/icons/duotone/barcode-read.svg b/apps/client/src/static/icons/duotone/barcode-read.svg similarity index 100% rename from src/static/icons/duotone/barcode-read.svg rename to apps/client/src/static/icons/duotone/barcode-read.svg diff --git a/src/static/icons/duotone/barcode-scan.svg b/apps/client/src/static/icons/duotone/barcode-scan.svg similarity index 100% rename from src/static/icons/duotone/barcode-scan.svg rename to apps/client/src/static/icons/duotone/barcode-scan.svg diff --git a/src/static/icons/duotone/barcode.svg b/apps/client/src/static/icons/duotone/barcode.svg similarity index 100% rename from src/static/icons/duotone/barcode.svg rename to apps/client/src/static/icons/duotone/barcode.svg diff --git a/src/static/icons/duotone/bars.svg b/apps/client/src/static/icons/duotone/bars.svg similarity index 100% rename from src/static/icons/duotone/bars.svg rename to apps/client/src/static/icons/duotone/bars.svg diff --git a/src/static/icons/duotone/baseball-ball.svg b/apps/client/src/static/icons/duotone/baseball-ball.svg similarity index 100% rename from src/static/icons/duotone/baseball-ball.svg rename to apps/client/src/static/icons/duotone/baseball-ball.svg diff --git a/src/static/icons/duotone/baseball.svg b/apps/client/src/static/icons/duotone/baseball.svg similarity index 100% rename from src/static/icons/duotone/baseball.svg rename to apps/client/src/static/icons/duotone/baseball.svg diff --git a/src/static/icons/duotone/basketball-ball.svg b/apps/client/src/static/icons/duotone/basketball-ball.svg similarity index 100% rename from src/static/icons/duotone/basketball-ball.svg rename to apps/client/src/static/icons/duotone/basketball-ball.svg diff --git a/src/static/icons/duotone/basketball-hoop.svg b/apps/client/src/static/icons/duotone/basketball-hoop.svg similarity index 100% rename from src/static/icons/duotone/basketball-hoop.svg rename to apps/client/src/static/icons/duotone/basketball-hoop.svg diff --git a/src/static/icons/duotone/bat.svg b/apps/client/src/static/icons/duotone/bat.svg similarity index 100% rename from src/static/icons/duotone/bat.svg rename to apps/client/src/static/icons/duotone/bat.svg diff --git a/src/static/icons/duotone/bath.svg b/apps/client/src/static/icons/duotone/bath.svg similarity index 100% rename from src/static/icons/duotone/bath.svg rename to apps/client/src/static/icons/duotone/bath.svg diff --git a/src/static/icons/duotone/battery-bolt.svg b/apps/client/src/static/icons/duotone/battery-bolt.svg similarity index 100% rename from src/static/icons/duotone/battery-bolt.svg rename to apps/client/src/static/icons/duotone/battery-bolt.svg diff --git a/src/static/icons/duotone/battery-empty.svg b/apps/client/src/static/icons/duotone/battery-empty.svg similarity index 100% rename from src/static/icons/duotone/battery-empty.svg rename to apps/client/src/static/icons/duotone/battery-empty.svg diff --git a/src/static/icons/duotone/battery-full.svg b/apps/client/src/static/icons/duotone/battery-full.svg similarity index 100% rename from src/static/icons/duotone/battery-full.svg rename to apps/client/src/static/icons/duotone/battery-full.svg diff --git a/src/static/icons/duotone/battery-half.svg b/apps/client/src/static/icons/duotone/battery-half.svg similarity index 100% rename from src/static/icons/duotone/battery-half.svg rename to apps/client/src/static/icons/duotone/battery-half.svg diff --git a/src/static/icons/duotone/battery-quarter.svg b/apps/client/src/static/icons/duotone/battery-quarter.svg similarity index 100% rename from src/static/icons/duotone/battery-quarter.svg rename to apps/client/src/static/icons/duotone/battery-quarter.svg diff --git a/src/static/icons/duotone/battery-slash.svg b/apps/client/src/static/icons/duotone/battery-slash.svg similarity index 100% rename from src/static/icons/duotone/battery-slash.svg rename to apps/client/src/static/icons/duotone/battery-slash.svg diff --git a/src/static/icons/duotone/battery-three-quarters.svg b/apps/client/src/static/icons/duotone/battery-three-quarters.svg similarity index 100% rename from src/static/icons/duotone/battery-three-quarters.svg rename to apps/client/src/static/icons/duotone/battery-three-quarters.svg diff --git a/src/static/icons/duotone/bed-alt.svg b/apps/client/src/static/icons/duotone/bed-alt.svg similarity index 100% rename from src/static/icons/duotone/bed-alt.svg rename to apps/client/src/static/icons/duotone/bed-alt.svg diff --git a/src/static/icons/duotone/bed-bunk.svg b/apps/client/src/static/icons/duotone/bed-bunk.svg similarity index 100% rename from src/static/icons/duotone/bed-bunk.svg rename to apps/client/src/static/icons/duotone/bed-bunk.svg diff --git a/src/static/icons/duotone/bed-empty.svg b/apps/client/src/static/icons/duotone/bed-empty.svg similarity index 100% rename from src/static/icons/duotone/bed-empty.svg rename to apps/client/src/static/icons/duotone/bed-empty.svg diff --git a/src/static/icons/duotone/bed.svg b/apps/client/src/static/icons/duotone/bed.svg similarity index 100% rename from src/static/icons/duotone/bed.svg rename to apps/client/src/static/icons/duotone/bed.svg diff --git a/src/static/icons/duotone/beer.svg b/apps/client/src/static/icons/duotone/beer.svg similarity index 100% rename from src/static/icons/duotone/beer.svg rename to apps/client/src/static/icons/duotone/beer.svg diff --git a/src/static/icons/duotone/bell-exclamation.svg b/apps/client/src/static/icons/duotone/bell-exclamation.svg similarity index 100% rename from src/static/icons/duotone/bell-exclamation.svg rename to apps/client/src/static/icons/duotone/bell-exclamation.svg diff --git a/src/static/icons/duotone/bell-on.svg b/apps/client/src/static/icons/duotone/bell-on.svg similarity index 100% rename from src/static/icons/duotone/bell-on.svg rename to apps/client/src/static/icons/duotone/bell-on.svg diff --git a/src/static/icons/duotone/bell-plus.svg b/apps/client/src/static/icons/duotone/bell-plus.svg similarity index 100% rename from src/static/icons/duotone/bell-plus.svg rename to apps/client/src/static/icons/duotone/bell-plus.svg diff --git a/src/static/icons/duotone/bell-school-slash.svg b/apps/client/src/static/icons/duotone/bell-school-slash.svg similarity index 100% rename from src/static/icons/duotone/bell-school-slash.svg rename to apps/client/src/static/icons/duotone/bell-school-slash.svg diff --git a/src/static/icons/duotone/bell-school.svg b/apps/client/src/static/icons/duotone/bell-school.svg similarity index 100% rename from src/static/icons/duotone/bell-school.svg rename to apps/client/src/static/icons/duotone/bell-school.svg diff --git a/src/static/icons/duotone/bell-slash.svg b/apps/client/src/static/icons/duotone/bell-slash.svg similarity index 100% rename from src/static/icons/duotone/bell-slash.svg rename to apps/client/src/static/icons/duotone/bell-slash.svg diff --git a/src/static/icons/duotone/bell.svg b/apps/client/src/static/icons/duotone/bell.svg similarity index 100% rename from src/static/icons/duotone/bell.svg rename to apps/client/src/static/icons/duotone/bell.svg diff --git a/src/static/icons/duotone/bells.svg b/apps/client/src/static/icons/duotone/bells.svg similarity index 100% rename from src/static/icons/duotone/bells.svg rename to apps/client/src/static/icons/duotone/bells.svg diff --git a/src/static/icons/duotone/betamax.svg b/apps/client/src/static/icons/duotone/betamax.svg similarity index 100% rename from src/static/icons/duotone/betamax.svg rename to apps/client/src/static/icons/duotone/betamax.svg diff --git a/src/static/icons/duotone/bezier-curve.svg b/apps/client/src/static/icons/duotone/bezier-curve.svg similarity index 100% rename from src/static/icons/duotone/bezier-curve.svg rename to apps/client/src/static/icons/duotone/bezier-curve.svg diff --git a/src/static/icons/duotone/bible.svg b/apps/client/src/static/icons/duotone/bible.svg similarity index 100% rename from src/static/icons/duotone/bible.svg rename to apps/client/src/static/icons/duotone/bible.svg diff --git a/src/static/icons/duotone/bicycle.svg b/apps/client/src/static/icons/duotone/bicycle.svg similarity index 100% rename from src/static/icons/duotone/bicycle.svg rename to apps/client/src/static/icons/duotone/bicycle.svg diff --git a/src/static/icons/duotone/biking-mountain.svg b/apps/client/src/static/icons/duotone/biking-mountain.svg similarity index 100% rename from src/static/icons/duotone/biking-mountain.svg rename to apps/client/src/static/icons/duotone/biking-mountain.svg diff --git a/src/static/icons/duotone/biking.svg b/apps/client/src/static/icons/duotone/biking.svg similarity index 100% rename from src/static/icons/duotone/biking.svg rename to apps/client/src/static/icons/duotone/biking.svg diff --git a/src/static/icons/duotone/binoculars.svg b/apps/client/src/static/icons/duotone/binoculars.svg similarity index 100% rename from src/static/icons/duotone/binoculars.svg rename to apps/client/src/static/icons/duotone/binoculars.svg diff --git a/src/static/icons/duotone/biohazard.svg b/apps/client/src/static/icons/duotone/biohazard.svg similarity index 100% rename from src/static/icons/duotone/biohazard.svg rename to apps/client/src/static/icons/duotone/biohazard.svg diff --git a/src/static/icons/duotone/birthday-cake.svg b/apps/client/src/static/icons/duotone/birthday-cake.svg similarity index 100% rename from src/static/icons/duotone/birthday-cake.svg rename to apps/client/src/static/icons/duotone/birthday-cake.svg diff --git a/src/static/icons/duotone/blanket.svg b/apps/client/src/static/icons/duotone/blanket.svg similarity index 100% rename from src/static/icons/duotone/blanket.svg rename to apps/client/src/static/icons/duotone/blanket.svg diff --git a/src/static/icons/duotone/blender-phone.svg b/apps/client/src/static/icons/duotone/blender-phone.svg similarity index 100% rename from src/static/icons/duotone/blender-phone.svg rename to apps/client/src/static/icons/duotone/blender-phone.svg diff --git a/src/static/icons/duotone/blender.svg b/apps/client/src/static/icons/duotone/blender.svg similarity index 100% rename from src/static/icons/duotone/blender.svg rename to apps/client/src/static/icons/duotone/blender.svg diff --git a/src/static/icons/duotone/blind.svg b/apps/client/src/static/icons/duotone/blind.svg similarity index 100% rename from src/static/icons/duotone/blind.svg rename to apps/client/src/static/icons/duotone/blind.svg diff --git a/src/static/icons/duotone/blinds-open.svg b/apps/client/src/static/icons/duotone/blinds-open.svg similarity index 100% rename from src/static/icons/duotone/blinds-open.svg rename to apps/client/src/static/icons/duotone/blinds-open.svg diff --git a/src/static/icons/duotone/blinds-raised.svg b/apps/client/src/static/icons/duotone/blinds-raised.svg similarity index 100% rename from src/static/icons/duotone/blinds-raised.svg rename to apps/client/src/static/icons/duotone/blinds-raised.svg diff --git a/src/static/icons/duotone/blinds.svg b/apps/client/src/static/icons/duotone/blinds.svg similarity index 100% rename from src/static/icons/duotone/blinds.svg rename to apps/client/src/static/icons/duotone/blinds.svg diff --git a/src/static/icons/duotone/blog.svg b/apps/client/src/static/icons/duotone/blog.svg similarity index 100% rename from src/static/icons/duotone/blog.svg rename to apps/client/src/static/icons/duotone/blog.svg diff --git a/src/static/icons/duotone/bold.svg b/apps/client/src/static/icons/duotone/bold.svg similarity index 100% rename from src/static/icons/duotone/bold.svg rename to apps/client/src/static/icons/duotone/bold.svg diff --git a/src/static/icons/duotone/bolt.svg b/apps/client/src/static/icons/duotone/bolt.svg similarity index 100% rename from src/static/icons/duotone/bolt.svg rename to apps/client/src/static/icons/duotone/bolt.svg diff --git a/src/static/icons/duotone/bomb.svg b/apps/client/src/static/icons/duotone/bomb.svg similarity index 100% rename from src/static/icons/duotone/bomb.svg rename to apps/client/src/static/icons/duotone/bomb.svg diff --git a/src/static/icons/duotone/bone-break.svg b/apps/client/src/static/icons/duotone/bone-break.svg similarity index 100% rename from src/static/icons/duotone/bone-break.svg rename to apps/client/src/static/icons/duotone/bone-break.svg diff --git a/src/static/icons/duotone/bone.svg b/apps/client/src/static/icons/duotone/bone.svg similarity index 100% rename from src/static/icons/duotone/bone.svg rename to apps/client/src/static/icons/duotone/bone.svg diff --git a/src/static/icons/duotone/bong.svg b/apps/client/src/static/icons/duotone/bong.svg similarity index 100% rename from src/static/icons/duotone/bong.svg rename to apps/client/src/static/icons/duotone/bong.svg diff --git a/src/static/icons/duotone/book-alt.svg b/apps/client/src/static/icons/duotone/book-alt.svg similarity index 100% rename from src/static/icons/duotone/book-alt.svg rename to apps/client/src/static/icons/duotone/book-alt.svg diff --git a/src/static/icons/duotone/book-dead.svg b/apps/client/src/static/icons/duotone/book-dead.svg similarity index 100% rename from src/static/icons/duotone/book-dead.svg rename to apps/client/src/static/icons/duotone/book-dead.svg diff --git a/src/static/icons/duotone/book-heart.svg b/apps/client/src/static/icons/duotone/book-heart.svg similarity index 100% rename from src/static/icons/duotone/book-heart.svg rename to apps/client/src/static/icons/duotone/book-heart.svg diff --git a/src/static/icons/duotone/book-medical.svg b/apps/client/src/static/icons/duotone/book-medical.svg similarity index 100% rename from src/static/icons/duotone/book-medical.svg rename to apps/client/src/static/icons/duotone/book-medical.svg diff --git a/src/static/icons/duotone/book-open.svg b/apps/client/src/static/icons/duotone/book-open.svg similarity index 100% rename from src/static/icons/duotone/book-open.svg rename to apps/client/src/static/icons/duotone/book-open.svg diff --git a/src/static/icons/duotone/book-reader.svg b/apps/client/src/static/icons/duotone/book-reader.svg similarity index 100% rename from src/static/icons/duotone/book-reader.svg rename to apps/client/src/static/icons/duotone/book-reader.svg diff --git a/src/static/icons/duotone/book-spells.svg b/apps/client/src/static/icons/duotone/book-spells.svg similarity index 100% rename from src/static/icons/duotone/book-spells.svg rename to apps/client/src/static/icons/duotone/book-spells.svg diff --git a/src/static/icons/duotone/book-user.svg b/apps/client/src/static/icons/duotone/book-user.svg similarity index 100% rename from src/static/icons/duotone/book-user.svg rename to apps/client/src/static/icons/duotone/book-user.svg diff --git a/src/static/icons/duotone/book.svg b/apps/client/src/static/icons/duotone/book.svg similarity index 100% rename from src/static/icons/duotone/book.svg rename to apps/client/src/static/icons/duotone/book.svg diff --git a/src/static/icons/duotone/bookmark.svg b/apps/client/src/static/icons/duotone/bookmark.svg similarity index 100% rename from src/static/icons/duotone/bookmark.svg rename to apps/client/src/static/icons/duotone/bookmark.svg diff --git a/src/static/icons/duotone/books-medical.svg b/apps/client/src/static/icons/duotone/books-medical.svg similarity index 100% rename from src/static/icons/duotone/books-medical.svg rename to apps/client/src/static/icons/duotone/books-medical.svg diff --git a/src/static/icons/duotone/books.svg b/apps/client/src/static/icons/duotone/books.svg similarity index 100% rename from src/static/icons/duotone/books.svg rename to apps/client/src/static/icons/duotone/books.svg diff --git a/src/static/icons/duotone/boombox.svg b/apps/client/src/static/icons/duotone/boombox.svg similarity index 100% rename from src/static/icons/duotone/boombox.svg rename to apps/client/src/static/icons/duotone/boombox.svg diff --git a/src/static/icons/duotone/boot.svg b/apps/client/src/static/icons/duotone/boot.svg similarity index 100% rename from src/static/icons/duotone/boot.svg rename to apps/client/src/static/icons/duotone/boot.svg diff --git a/src/static/icons/duotone/booth-curtain.svg b/apps/client/src/static/icons/duotone/booth-curtain.svg similarity index 100% rename from src/static/icons/duotone/booth-curtain.svg rename to apps/client/src/static/icons/duotone/booth-curtain.svg diff --git a/src/static/icons/duotone/border-all.svg b/apps/client/src/static/icons/duotone/border-all.svg similarity index 100% rename from src/static/icons/duotone/border-all.svg rename to apps/client/src/static/icons/duotone/border-all.svg diff --git a/src/static/icons/duotone/border-bottom.svg b/apps/client/src/static/icons/duotone/border-bottom.svg similarity index 100% rename from src/static/icons/duotone/border-bottom.svg rename to apps/client/src/static/icons/duotone/border-bottom.svg diff --git a/src/static/icons/duotone/border-center-h.svg b/apps/client/src/static/icons/duotone/border-center-h.svg similarity index 100% rename from src/static/icons/duotone/border-center-h.svg rename to apps/client/src/static/icons/duotone/border-center-h.svg diff --git a/src/static/icons/duotone/border-center-v.svg b/apps/client/src/static/icons/duotone/border-center-v.svg similarity index 100% rename from src/static/icons/duotone/border-center-v.svg rename to apps/client/src/static/icons/duotone/border-center-v.svg diff --git a/src/static/icons/duotone/border-inner.svg b/apps/client/src/static/icons/duotone/border-inner.svg similarity index 100% rename from src/static/icons/duotone/border-inner.svg rename to apps/client/src/static/icons/duotone/border-inner.svg diff --git a/src/static/icons/duotone/border-left.svg b/apps/client/src/static/icons/duotone/border-left.svg similarity index 100% rename from src/static/icons/duotone/border-left.svg rename to apps/client/src/static/icons/duotone/border-left.svg diff --git a/src/static/icons/duotone/border-none.svg b/apps/client/src/static/icons/duotone/border-none.svg similarity index 100% rename from src/static/icons/duotone/border-none.svg rename to apps/client/src/static/icons/duotone/border-none.svg diff --git a/src/static/icons/duotone/border-outer.svg b/apps/client/src/static/icons/duotone/border-outer.svg similarity index 100% rename from src/static/icons/duotone/border-outer.svg rename to apps/client/src/static/icons/duotone/border-outer.svg diff --git a/src/static/icons/duotone/border-right.svg b/apps/client/src/static/icons/duotone/border-right.svg similarity index 100% rename from src/static/icons/duotone/border-right.svg rename to apps/client/src/static/icons/duotone/border-right.svg diff --git a/src/static/icons/duotone/border-style-alt.svg b/apps/client/src/static/icons/duotone/border-style-alt.svg similarity index 100% rename from src/static/icons/duotone/border-style-alt.svg rename to apps/client/src/static/icons/duotone/border-style-alt.svg diff --git a/src/static/icons/duotone/border-style.svg b/apps/client/src/static/icons/duotone/border-style.svg similarity index 100% rename from src/static/icons/duotone/border-style.svg rename to apps/client/src/static/icons/duotone/border-style.svg diff --git a/src/static/icons/duotone/border-top.svg b/apps/client/src/static/icons/duotone/border-top.svg similarity index 100% rename from src/static/icons/duotone/border-top.svg rename to apps/client/src/static/icons/duotone/border-top.svg diff --git a/src/static/icons/duotone/bow-arrow.svg b/apps/client/src/static/icons/duotone/bow-arrow.svg similarity index 100% rename from src/static/icons/duotone/bow-arrow.svg rename to apps/client/src/static/icons/duotone/bow-arrow.svg diff --git a/src/static/icons/duotone/bowling-ball.svg b/apps/client/src/static/icons/duotone/bowling-ball.svg similarity index 100% rename from src/static/icons/duotone/bowling-ball.svg rename to apps/client/src/static/icons/duotone/bowling-ball.svg diff --git a/src/static/icons/duotone/bowling-pins.svg b/apps/client/src/static/icons/duotone/bowling-pins.svg similarity index 100% rename from src/static/icons/duotone/bowling-pins.svg rename to apps/client/src/static/icons/duotone/bowling-pins.svg diff --git a/src/static/icons/duotone/box-alt.svg b/apps/client/src/static/icons/duotone/box-alt.svg similarity index 100% rename from src/static/icons/duotone/box-alt.svg rename to apps/client/src/static/icons/duotone/box-alt.svg diff --git a/src/static/icons/duotone/box-ballot.svg b/apps/client/src/static/icons/duotone/box-ballot.svg similarity index 100% rename from src/static/icons/duotone/box-ballot.svg rename to apps/client/src/static/icons/duotone/box-ballot.svg diff --git a/src/static/icons/duotone/box-check.svg b/apps/client/src/static/icons/duotone/box-check.svg similarity index 100% rename from src/static/icons/duotone/box-check.svg rename to apps/client/src/static/icons/duotone/box-check.svg diff --git a/src/static/icons/duotone/box-fragile.svg b/apps/client/src/static/icons/duotone/box-fragile.svg similarity index 100% rename from src/static/icons/duotone/box-fragile.svg rename to apps/client/src/static/icons/duotone/box-fragile.svg diff --git a/src/static/icons/duotone/box-full.svg b/apps/client/src/static/icons/duotone/box-full.svg similarity index 100% rename from src/static/icons/duotone/box-full.svg rename to apps/client/src/static/icons/duotone/box-full.svg diff --git a/src/static/icons/duotone/box-heart.svg b/apps/client/src/static/icons/duotone/box-heart.svg similarity index 100% rename from src/static/icons/duotone/box-heart.svg rename to apps/client/src/static/icons/duotone/box-heart.svg diff --git a/src/static/icons/duotone/box-open.svg b/apps/client/src/static/icons/duotone/box-open.svg similarity index 100% rename from src/static/icons/duotone/box-open.svg rename to apps/client/src/static/icons/duotone/box-open.svg diff --git a/src/static/icons/duotone/box-up.svg b/apps/client/src/static/icons/duotone/box-up.svg similarity index 100% rename from src/static/icons/duotone/box-up.svg rename to apps/client/src/static/icons/duotone/box-up.svg diff --git a/src/static/icons/duotone/box-usd.svg b/apps/client/src/static/icons/duotone/box-usd.svg similarity index 100% rename from src/static/icons/duotone/box-usd.svg rename to apps/client/src/static/icons/duotone/box-usd.svg diff --git a/src/static/icons/duotone/box.svg b/apps/client/src/static/icons/duotone/box.svg similarity index 100% rename from src/static/icons/duotone/box.svg rename to apps/client/src/static/icons/duotone/box.svg diff --git a/src/static/icons/duotone/boxes-alt.svg b/apps/client/src/static/icons/duotone/boxes-alt.svg similarity index 100% rename from src/static/icons/duotone/boxes-alt.svg rename to apps/client/src/static/icons/duotone/boxes-alt.svg diff --git a/src/static/icons/duotone/boxes.svg b/apps/client/src/static/icons/duotone/boxes.svg similarity index 100% rename from src/static/icons/duotone/boxes.svg rename to apps/client/src/static/icons/duotone/boxes.svg diff --git a/src/static/icons/duotone/boxing-glove.svg b/apps/client/src/static/icons/duotone/boxing-glove.svg similarity index 100% rename from src/static/icons/duotone/boxing-glove.svg rename to apps/client/src/static/icons/duotone/boxing-glove.svg diff --git a/src/static/icons/duotone/brackets-curly.svg b/apps/client/src/static/icons/duotone/brackets-curly.svg similarity index 100% rename from src/static/icons/duotone/brackets-curly.svg rename to apps/client/src/static/icons/duotone/brackets-curly.svg diff --git a/src/static/icons/duotone/brackets.svg b/apps/client/src/static/icons/duotone/brackets.svg similarity index 100% rename from src/static/icons/duotone/brackets.svg rename to apps/client/src/static/icons/duotone/brackets.svg diff --git a/src/static/icons/duotone/braille.svg b/apps/client/src/static/icons/duotone/braille.svg similarity index 100% rename from src/static/icons/duotone/braille.svg rename to apps/client/src/static/icons/duotone/braille.svg diff --git a/src/static/icons/duotone/brain.svg b/apps/client/src/static/icons/duotone/brain.svg similarity index 100% rename from src/static/icons/duotone/brain.svg rename to apps/client/src/static/icons/duotone/brain.svg diff --git a/src/static/icons/duotone/bread-loaf.svg b/apps/client/src/static/icons/duotone/bread-loaf.svg similarity index 100% rename from src/static/icons/duotone/bread-loaf.svg rename to apps/client/src/static/icons/duotone/bread-loaf.svg diff --git a/src/static/icons/duotone/bread-slice.svg b/apps/client/src/static/icons/duotone/bread-slice.svg similarity index 100% rename from src/static/icons/duotone/bread-slice.svg rename to apps/client/src/static/icons/duotone/bread-slice.svg diff --git a/src/static/icons/duotone/briefcase-medical.svg b/apps/client/src/static/icons/duotone/briefcase-medical.svg similarity index 100% rename from src/static/icons/duotone/briefcase-medical.svg rename to apps/client/src/static/icons/duotone/briefcase-medical.svg diff --git a/src/static/icons/duotone/briefcase.svg b/apps/client/src/static/icons/duotone/briefcase.svg similarity index 100% rename from src/static/icons/duotone/briefcase.svg rename to apps/client/src/static/icons/duotone/briefcase.svg diff --git a/src/static/icons/duotone/bring-forward.svg b/apps/client/src/static/icons/duotone/bring-forward.svg similarity index 100% rename from src/static/icons/duotone/bring-forward.svg rename to apps/client/src/static/icons/duotone/bring-forward.svg diff --git a/src/static/icons/duotone/bring-front.svg b/apps/client/src/static/icons/duotone/bring-front.svg similarity index 100% rename from src/static/icons/duotone/bring-front.svg rename to apps/client/src/static/icons/duotone/bring-front.svg diff --git a/src/static/icons/duotone/broadcast-tower.svg b/apps/client/src/static/icons/duotone/broadcast-tower.svg similarity index 100% rename from src/static/icons/duotone/broadcast-tower.svg rename to apps/client/src/static/icons/duotone/broadcast-tower.svg diff --git a/src/static/icons/duotone/broom.svg b/apps/client/src/static/icons/duotone/broom.svg similarity index 100% rename from src/static/icons/duotone/broom.svg rename to apps/client/src/static/icons/duotone/broom.svg diff --git a/src/static/icons/duotone/browser.svg b/apps/client/src/static/icons/duotone/browser.svg similarity index 100% rename from src/static/icons/duotone/browser.svg rename to apps/client/src/static/icons/duotone/browser.svg diff --git a/src/static/icons/duotone/brush.svg b/apps/client/src/static/icons/duotone/brush.svg similarity index 100% rename from src/static/icons/duotone/brush.svg rename to apps/client/src/static/icons/duotone/brush.svg diff --git a/src/static/icons/duotone/bug.svg b/apps/client/src/static/icons/duotone/bug.svg similarity index 100% rename from src/static/icons/duotone/bug.svg rename to apps/client/src/static/icons/duotone/bug.svg diff --git a/src/static/icons/duotone/building.svg b/apps/client/src/static/icons/duotone/building.svg similarity index 100% rename from src/static/icons/duotone/building.svg rename to apps/client/src/static/icons/duotone/building.svg diff --git a/src/static/icons/duotone/bullhorn.svg b/apps/client/src/static/icons/duotone/bullhorn.svg similarity index 100% rename from src/static/icons/duotone/bullhorn.svg rename to apps/client/src/static/icons/duotone/bullhorn.svg diff --git a/src/static/icons/duotone/bullseye-arrow.svg b/apps/client/src/static/icons/duotone/bullseye-arrow.svg similarity index 100% rename from src/static/icons/duotone/bullseye-arrow.svg rename to apps/client/src/static/icons/duotone/bullseye-arrow.svg diff --git a/src/static/icons/duotone/bullseye-pointer.svg b/apps/client/src/static/icons/duotone/bullseye-pointer.svg similarity index 100% rename from src/static/icons/duotone/bullseye-pointer.svg rename to apps/client/src/static/icons/duotone/bullseye-pointer.svg diff --git a/src/static/icons/duotone/bullseye.svg b/apps/client/src/static/icons/duotone/bullseye.svg similarity index 100% rename from src/static/icons/duotone/bullseye.svg rename to apps/client/src/static/icons/duotone/bullseye.svg diff --git a/src/static/icons/duotone/burger-soda.svg b/apps/client/src/static/icons/duotone/burger-soda.svg similarity index 100% rename from src/static/icons/duotone/burger-soda.svg rename to apps/client/src/static/icons/duotone/burger-soda.svg diff --git a/src/static/icons/duotone/burn.svg b/apps/client/src/static/icons/duotone/burn.svg similarity index 100% rename from src/static/icons/duotone/burn.svg rename to apps/client/src/static/icons/duotone/burn.svg diff --git a/src/static/icons/duotone/burrito.svg b/apps/client/src/static/icons/duotone/burrito.svg similarity index 100% rename from src/static/icons/duotone/burrito.svg rename to apps/client/src/static/icons/duotone/burrito.svg diff --git a/src/static/icons/duotone/bus-alt.svg b/apps/client/src/static/icons/duotone/bus-alt.svg similarity index 100% rename from src/static/icons/duotone/bus-alt.svg rename to apps/client/src/static/icons/duotone/bus-alt.svg diff --git a/src/static/icons/duotone/bus-school.svg b/apps/client/src/static/icons/duotone/bus-school.svg similarity index 100% rename from src/static/icons/duotone/bus-school.svg rename to apps/client/src/static/icons/duotone/bus-school.svg diff --git a/src/static/icons/duotone/bus.svg b/apps/client/src/static/icons/duotone/bus.svg similarity index 100% rename from src/static/icons/duotone/bus.svg rename to apps/client/src/static/icons/duotone/bus.svg diff --git a/src/static/icons/duotone/business-time.svg b/apps/client/src/static/icons/duotone/business-time.svg similarity index 100% rename from src/static/icons/duotone/business-time.svg rename to apps/client/src/static/icons/duotone/business-time.svg diff --git a/src/static/icons/duotone/cabinet-filing.svg b/apps/client/src/static/icons/duotone/cabinet-filing.svg similarity index 100% rename from src/static/icons/duotone/cabinet-filing.svg rename to apps/client/src/static/icons/duotone/cabinet-filing.svg diff --git a/src/static/icons/duotone/cactus.svg b/apps/client/src/static/icons/duotone/cactus.svg similarity index 100% rename from src/static/icons/duotone/cactus.svg rename to apps/client/src/static/icons/duotone/cactus.svg diff --git a/src/static/icons/duotone/calculator-alt.svg b/apps/client/src/static/icons/duotone/calculator-alt.svg similarity index 100% rename from src/static/icons/duotone/calculator-alt.svg rename to apps/client/src/static/icons/duotone/calculator-alt.svg diff --git a/src/static/icons/duotone/calculator.svg b/apps/client/src/static/icons/duotone/calculator.svg similarity index 100% rename from src/static/icons/duotone/calculator.svg rename to apps/client/src/static/icons/duotone/calculator.svg diff --git a/src/static/icons/duotone/calendar-alt.svg b/apps/client/src/static/icons/duotone/calendar-alt.svg similarity index 100% rename from src/static/icons/duotone/calendar-alt.svg rename to apps/client/src/static/icons/duotone/calendar-alt.svg diff --git a/src/static/icons/duotone/calendar-check.svg b/apps/client/src/static/icons/duotone/calendar-check.svg similarity index 100% rename from src/static/icons/duotone/calendar-check.svg rename to apps/client/src/static/icons/duotone/calendar-check.svg diff --git a/src/static/icons/duotone/calendar-day.svg b/apps/client/src/static/icons/duotone/calendar-day.svg similarity index 100% rename from src/static/icons/duotone/calendar-day.svg rename to apps/client/src/static/icons/duotone/calendar-day.svg diff --git a/src/static/icons/duotone/calendar-edit.svg b/apps/client/src/static/icons/duotone/calendar-edit.svg similarity index 100% rename from src/static/icons/duotone/calendar-edit.svg rename to apps/client/src/static/icons/duotone/calendar-edit.svg diff --git a/src/static/icons/duotone/calendar-exclamation.svg b/apps/client/src/static/icons/duotone/calendar-exclamation.svg similarity index 100% rename from src/static/icons/duotone/calendar-exclamation.svg rename to apps/client/src/static/icons/duotone/calendar-exclamation.svg diff --git a/src/static/icons/duotone/calendar-minus.svg b/apps/client/src/static/icons/duotone/calendar-minus.svg similarity index 100% rename from src/static/icons/duotone/calendar-minus.svg rename to apps/client/src/static/icons/duotone/calendar-minus.svg diff --git a/src/static/icons/duotone/calendar-plus.svg b/apps/client/src/static/icons/duotone/calendar-plus.svg similarity index 100% rename from src/static/icons/duotone/calendar-plus.svg rename to apps/client/src/static/icons/duotone/calendar-plus.svg diff --git a/src/static/icons/duotone/calendar-star.svg b/apps/client/src/static/icons/duotone/calendar-star.svg similarity index 100% rename from src/static/icons/duotone/calendar-star.svg rename to apps/client/src/static/icons/duotone/calendar-star.svg diff --git a/src/static/icons/duotone/calendar-times.svg b/apps/client/src/static/icons/duotone/calendar-times.svg similarity index 100% rename from src/static/icons/duotone/calendar-times.svg rename to apps/client/src/static/icons/duotone/calendar-times.svg diff --git a/src/static/icons/duotone/calendar-week.svg b/apps/client/src/static/icons/duotone/calendar-week.svg similarity index 100% rename from src/static/icons/duotone/calendar-week.svg rename to apps/client/src/static/icons/duotone/calendar-week.svg diff --git a/src/static/icons/duotone/calendar.svg b/apps/client/src/static/icons/duotone/calendar.svg similarity index 100% rename from src/static/icons/duotone/calendar.svg rename to apps/client/src/static/icons/duotone/calendar.svg diff --git a/src/static/icons/duotone/camcorder.svg b/apps/client/src/static/icons/duotone/camcorder.svg similarity index 100% rename from src/static/icons/duotone/camcorder.svg rename to apps/client/src/static/icons/duotone/camcorder.svg diff --git a/src/static/icons/duotone/camera-alt.svg b/apps/client/src/static/icons/duotone/camera-alt.svg similarity index 100% rename from src/static/icons/duotone/camera-alt.svg rename to apps/client/src/static/icons/duotone/camera-alt.svg diff --git a/src/static/icons/duotone/camera-home.svg b/apps/client/src/static/icons/duotone/camera-home.svg similarity index 100% rename from src/static/icons/duotone/camera-home.svg rename to apps/client/src/static/icons/duotone/camera-home.svg diff --git a/src/static/icons/duotone/camera-movie.svg b/apps/client/src/static/icons/duotone/camera-movie.svg similarity index 100% rename from src/static/icons/duotone/camera-movie.svg rename to apps/client/src/static/icons/duotone/camera-movie.svg diff --git a/src/static/icons/duotone/camera-polaroid.svg b/apps/client/src/static/icons/duotone/camera-polaroid.svg similarity index 100% rename from src/static/icons/duotone/camera-polaroid.svg rename to apps/client/src/static/icons/duotone/camera-polaroid.svg diff --git a/src/static/icons/duotone/camera-retro.svg b/apps/client/src/static/icons/duotone/camera-retro.svg similarity index 100% rename from src/static/icons/duotone/camera-retro.svg rename to apps/client/src/static/icons/duotone/camera-retro.svg diff --git a/src/static/icons/duotone/camera.svg b/apps/client/src/static/icons/duotone/camera.svg similarity index 100% rename from src/static/icons/duotone/camera.svg rename to apps/client/src/static/icons/duotone/camera.svg diff --git a/src/static/icons/duotone/campfire.svg b/apps/client/src/static/icons/duotone/campfire.svg similarity index 100% rename from src/static/icons/duotone/campfire.svg rename to apps/client/src/static/icons/duotone/campfire.svg diff --git a/src/static/icons/duotone/campground.svg b/apps/client/src/static/icons/duotone/campground.svg similarity index 100% rename from src/static/icons/duotone/campground.svg rename to apps/client/src/static/icons/duotone/campground.svg diff --git a/src/static/icons/duotone/candle-holder.svg b/apps/client/src/static/icons/duotone/candle-holder.svg similarity index 100% rename from src/static/icons/duotone/candle-holder.svg rename to apps/client/src/static/icons/duotone/candle-holder.svg diff --git a/src/static/icons/duotone/candy-cane.svg b/apps/client/src/static/icons/duotone/candy-cane.svg similarity index 100% rename from src/static/icons/duotone/candy-cane.svg rename to apps/client/src/static/icons/duotone/candy-cane.svg diff --git a/src/static/icons/duotone/candy-corn.svg b/apps/client/src/static/icons/duotone/candy-corn.svg similarity index 100% rename from src/static/icons/duotone/candy-corn.svg rename to apps/client/src/static/icons/duotone/candy-corn.svg diff --git a/src/static/icons/duotone/cannabis.svg b/apps/client/src/static/icons/duotone/cannabis.svg similarity index 100% rename from src/static/icons/duotone/cannabis.svg rename to apps/client/src/static/icons/duotone/cannabis.svg diff --git a/src/static/icons/duotone/capsules.svg b/apps/client/src/static/icons/duotone/capsules.svg similarity index 100% rename from src/static/icons/duotone/capsules.svg rename to apps/client/src/static/icons/duotone/capsules.svg diff --git a/src/static/icons/duotone/car-alt.svg b/apps/client/src/static/icons/duotone/car-alt.svg similarity index 100% rename from src/static/icons/duotone/car-alt.svg rename to apps/client/src/static/icons/duotone/car-alt.svg diff --git a/src/static/icons/duotone/car-battery.svg b/apps/client/src/static/icons/duotone/car-battery.svg similarity index 100% rename from src/static/icons/duotone/car-battery.svg rename to apps/client/src/static/icons/duotone/car-battery.svg diff --git a/src/static/icons/duotone/car-building.svg b/apps/client/src/static/icons/duotone/car-building.svg similarity index 100% rename from src/static/icons/duotone/car-building.svg rename to apps/client/src/static/icons/duotone/car-building.svg diff --git a/src/static/icons/duotone/car-bump.svg b/apps/client/src/static/icons/duotone/car-bump.svg similarity index 100% rename from src/static/icons/duotone/car-bump.svg rename to apps/client/src/static/icons/duotone/car-bump.svg diff --git a/src/static/icons/duotone/car-bus.svg b/apps/client/src/static/icons/duotone/car-bus.svg similarity index 100% rename from src/static/icons/duotone/car-bus.svg rename to apps/client/src/static/icons/duotone/car-bus.svg diff --git a/src/static/icons/duotone/car-crash.svg b/apps/client/src/static/icons/duotone/car-crash.svg similarity index 100% rename from src/static/icons/duotone/car-crash.svg rename to apps/client/src/static/icons/duotone/car-crash.svg diff --git a/src/static/icons/duotone/car-garage.svg b/apps/client/src/static/icons/duotone/car-garage.svg similarity index 100% rename from src/static/icons/duotone/car-garage.svg rename to apps/client/src/static/icons/duotone/car-garage.svg diff --git a/src/static/icons/duotone/car-mechanic.svg b/apps/client/src/static/icons/duotone/car-mechanic.svg similarity index 100% rename from src/static/icons/duotone/car-mechanic.svg rename to apps/client/src/static/icons/duotone/car-mechanic.svg diff --git a/src/static/icons/duotone/car-side.svg b/apps/client/src/static/icons/duotone/car-side.svg similarity index 100% rename from src/static/icons/duotone/car-side.svg rename to apps/client/src/static/icons/duotone/car-side.svg diff --git a/src/static/icons/duotone/car-tilt.svg b/apps/client/src/static/icons/duotone/car-tilt.svg similarity index 100% rename from src/static/icons/duotone/car-tilt.svg rename to apps/client/src/static/icons/duotone/car-tilt.svg diff --git a/src/static/icons/duotone/car-wash.svg b/apps/client/src/static/icons/duotone/car-wash.svg similarity index 100% rename from src/static/icons/duotone/car-wash.svg rename to apps/client/src/static/icons/duotone/car-wash.svg diff --git a/src/static/icons/duotone/car.svg b/apps/client/src/static/icons/duotone/car.svg similarity index 100% rename from src/static/icons/duotone/car.svg rename to apps/client/src/static/icons/duotone/car.svg diff --git a/src/static/icons/duotone/caravan-alt.svg b/apps/client/src/static/icons/duotone/caravan-alt.svg similarity index 100% rename from src/static/icons/duotone/caravan-alt.svg rename to apps/client/src/static/icons/duotone/caravan-alt.svg diff --git a/src/static/icons/duotone/caravan.svg b/apps/client/src/static/icons/duotone/caravan.svg similarity index 100% rename from src/static/icons/duotone/caravan.svg rename to apps/client/src/static/icons/duotone/caravan.svg diff --git a/src/static/icons/duotone/caret-circle-down.svg b/apps/client/src/static/icons/duotone/caret-circle-down.svg similarity index 100% rename from src/static/icons/duotone/caret-circle-down.svg rename to apps/client/src/static/icons/duotone/caret-circle-down.svg diff --git a/src/static/icons/duotone/caret-circle-left.svg b/apps/client/src/static/icons/duotone/caret-circle-left.svg similarity index 100% rename from src/static/icons/duotone/caret-circle-left.svg rename to apps/client/src/static/icons/duotone/caret-circle-left.svg diff --git a/src/static/icons/duotone/caret-circle-right.svg b/apps/client/src/static/icons/duotone/caret-circle-right.svg similarity index 100% rename from src/static/icons/duotone/caret-circle-right.svg rename to apps/client/src/static/icons/duotone/caret-circle-right.svg diff --git a/src/static/icons/duotone/caret-circle-up.svg b/apps/client/src/static/icons/duotone/caret-circle-up.svg similarity index 100% rename from src/static/icons/duotone/caret-circle-up.svg rename to apps/client/src/static/icons/duotone/caret-circle-up.svg diff --git a/src/static/icons/duotone/caret-down.svg b/apps/client/src/static/icons/duotone/caret-down.svg similarity index 100% rename from src/static/icons/duotone/caret-down.svg rename to apps/client/src/static/icons/duotone/caret-down.svg diff --git a/src/static/icons/duotone/caret-left.svg b/apps/client/src/static/icons/duotone/caret-left.svg similarity index 100% rename from src/static/icons/duotone/caret-left.svg rename to apps/client/src/static/icons/duotone/caret-left.svg diff --git a/src/static/icons/duotone/caret-right.svg b/apps/client/src/static/icons/duotone/caret-right.svg similarity index 100% rename from src/static/icons/duotone/caret-right.svg rename to apps/client/src/static/icons/duotone/caret-right.svg diff --git a/src/static/icons/duotone/caret-square-down.svg b/apps/client/src/static/icons/duotone/caret-square-down.svg similarity index 100% rename from src/static/icons/duotone/caret-square-down.svg rename to apps/client/src/static/icons/duotone/caret-square-down.svg diff --git a/src/static/icons/duotone/caret-square-left.svg b/apps/client/src/static/icons/duotone/caret-square-left.svg similarity index 100% rename from src/static/icons/duotone/caret-square-left.svg rename to apps/client/src/static/icons/duotone/caret-square-left.svg diff --git a/src/static/icons/duotone/caret-square-right.svg b/apps/client/src/static/icons/duotone/caret-square-right.svg similarity index 100% rename from src/static/icons/duotone/caret-square-right.svg rename to apps/client/src/static/icons/duotone/caret-square-right.svg diff --git a/src/static/icons/duotone/caret-square-up.svg b/apps/client/src/static/icons/duotone/caret-square-up.svg similarity index 100% rename from src/static/icons/duotone/caret-square-up.svg rename to apps/client/src/static/icons/duotone/caret-square-up.svg diff --git a/src/static/icons/duotone/caret-up.svg b/apps/client/src/static/icons/duotone/caret-up.svg similarity index 100% rename from src/static/icons/duotone/caret-up.svg rename to apps/client/src/static/icons/duotone/caret-up.svg diff --git a/src/static/icons/duotone/carrot.svg b/apps/client/src/static/icons/duotone/carrot.svg similarity index 100% rename from src/static/icons/duotone/carrot.svg rename to apps/client/src/static/icons/duotone/carrot.svg diff --git a/src/static/icons/duotone/cars.svg b/apps/client/src/static/icons/duotone/cars.svg similarity index 100% rename from src/static/icons/duotone/cars.svg rename to apps/client/src/static/icons/duotone/cars.svg diff --git a/src/static/icons/duotone/cart-arrow-down.svg b/apps/client/src/static/icons/duotone/cart-arrow-down.svg similarity index 100% rename from src/static/icons/duotone/cart-arrow-down.svg rename to apps/client/src/static/icons/duotone/cart-arrow-down.svg diff --git a/src/static/icons/duotone/cart-plus.svg b/apps/client/src/static/icons/duotone/cart-plus.svg similarity index 100% rename from src/static/icons/duotone/cart-plus.svg rename to apps/client/src/static/icons/duotone/cart-plus.svg diff --git a/src/static/icons/duotone/cash-register.svg b/apps/client/src/static/icons/duotone/cash-register.svg similarity index 100% rename from src/static/icons/duotone/cash-register.svg rename to apps/client/src/static/icons/duotone/cash-register.svg diff --git a/src/static/icons/duotone/cassette-tape.svg b/apps/client/src/static/icons/duotone/cassette-tape.svg similarity index 100% rename from src/static/icons/duotone/cassette-tape.svg rename to apps/client/src/static/icons/duotone/cassette-tape.svg diff --git a/src/static/icons/duotone/cat-space.svg b/apps/client/src/static/icons/duotone/cat-space.svg similarity index 100% rename from src/static/icons/duotone/cat-space.svg rename to apps/client/src/static/icons/duotone/cat-space.svg diff --git a/src/static/icons/duotone/cat.svg b/apps/client/src/static/icons/duotone/cat.svg similarity index 100% rename from src/static/icons/duotone/cat.svg rename to apps/client/src/static/icons/duotone/cat.svg diff --git a/src/static/icons/duotone/cauldron.svg b/apps/client/src/static/icons/duotone/cauldron.svg similarity index 100% rename from src/static/icons/duotone/cauldron.svg rename to apps/client/src/static/icons/duotone/cauldron.svg diff --git a/src/static/icons/duotone/cctv.svg b/apps/client/src/static/icons/duotone/cctv.svg similarity index 100% rename from src/static/icons/duotone/cctv.svg rename to apps/client/src/static/icons/duotone/cctv.svg diff --git a/src/static/icons/duotone/certificate.svg b/apps/client/src/static/icons/duotone/certificate.svg similarity index 100% rename from src/static/icons/duotone/certificate.svg rename to apps/client/src/static/icons/duotone/certificate.svg diff --git a/src/static/icons/duotone/chair-office.svg b/apps/client/src/static/icons/duotone/chair-office.svg similarity index 100% rename from src/static/icons/duotone/chair-office.svg rename to apps/client/src/static/icons/duotone/chair-office.svg diff --git a/src/static/icons/duotone/chair.svg b/apps/client/src/static/icons/duotone/chair.svg similarity index 100% rename from src/static/icons/duotone/chair.svg rename to apps/client/src/static/icons/duotone/chair.svg diff --git a/src/static/icons/duotone/chalkboard-teacher.svg b/apps/client/src/static/icons/duotone/chalkboard-teacher.svg similarity index 100% rename from src/static/icons/duotone/chalkboard-teacher.svg rename to apps/client/src/static/icons/duotone/chalkboard-teacher.svg diff --git a/src/static/icons/duotone/chalkboard.svg b/apps/client/src/static/icons/duotone/chalkboard.svg similarity index 100% rename from src/static/icons/duotone/chalkboard.svg rename to apps/client/src/static/icons/duotone/chalkboard.svg diff --git a/src/static/icons/duotone/charging-station.svg b/apps/client/src/static/icons/duotone/charging-station.svg similarity index 100% rename from src/static/icons/duotone/charging-station.svg rename to apps/client/src/static/icons/duotone/charging-station.svg diff --git a/src/static/icons/duotone/chart-area.svg b/apps/client/src/static/icons/duotone/chart-area.svg similarity index 100% rename from src/static/icons/duotone/chart-area.svg rename to apps/client/src/static/icons/duotone/chart-area.svg diff --git a/src/static/icons/duotone/chart-bar.svg b/apps/client/src/static/icons/duotone/chart-bar.svg similarity index 100% rename from src/static/icons/duotone/chart-bar.svg rename to apps/client/src/static/icons/duotone/chart-bar.svg diff --git a/src/static/icons/duotone/chart-line-down.svg b/apps/client/src/static/icons/duotone/chart-line-down.svg similarity index 100% rename from src/static/icons/duotone/chart-line-down.svg rename to apps/client/src/static/icons/duotone/chart-line-down.svg diff --git a/src/static/icons/duotone/chart-line.svg b/apps/client/src/static/icons/duotone/chart-line.svg similarity index 100% rename from src/static/icons/duotone/chart-line.svg rename to apps/client/src/static/icons/duotone/chart-line.svg diff --git a/src/static/icons/duotone/chart-network.svg b/apps/client/src/static/icons/duotone/chart-network.svg similarity index 100% rename from src/static/icons/duotone/chart-network.svg rename to apps/client/src/static/icons/duotone/chart-network.svg diff --git a/src/static/icons/duotone/chart-pie-alt.svg b/apps/client/src/static/icons/duotone/chart-pie-alt.svg similarity index 100% rename from src/static/icons/duotone/chart-pie-alt.svg rename to apps/client/src/static/icons/duotone/chart-pie-alt.svg diff --git a/src/static/icons/duotone/chart-pie.svg b/apps/client/src/static/icons/duotone/chart-pie.svg similarity index 100% rename from src/static/icons/duotone/chart-pie.svg rename to apps/client/src/static/icons/duotone/chart-pie.svg diff --git a/src/static/icons/duotone/chart-scatter.svg b/apps/client/src/static/icons/duotone/chart-scatter.svg similarity index 100% rename from src/static/icons/duotone/chart-scatter.svg rename to apps/client/src/static/icons/duotone/chart-scatter.svg diff --git a/src/static/icons/duotone/check-circle.svg b/apps/client/src/static/icons/duotone/check-circle.svg similarity index 100% rename from src/static/icons/duotone/check-circle.svg rename to apps/client/src/static/icons/duotone/check-circle.svg diff --git a/src/static/icons/duotone/check-double.svg b/apps/client/src/static/icons/duotone/check-double.svg similarity index 100% rename from src/static/icons/duotone/check-double.svg rename to apps/client/src/static/icons/duotone/check-double.svg diff --git a/src/static/icons/duotone/check-square.svg b/apps/client/src/static/icons/duotone/check-square.svg similarity index 100% rename from src/static/icons/duotone/check-square.svg rename to apps/client/src/static/icons/duotone/check-square.svg diff --git a/src/static/icons/duotone/check.svg b/apps/client/src/static/icons/duotone/check.svg similarity index 100% rename from src/static/icons/duotone/check.svg rename to apps/client/src/static/icons/duotone/check.svg diff --git a/src/static/icons/duotone/cheese-swiss.svg b/apps/client/src/static/icons/duotone/cheese-swiss.svg similarity index 100% rename from src/static/icons/duotone/cheese-swiss.svg rename to apps/client/src/static/icons/duotone/cheese-swiss.svg diff --git a/src/static/icons/duotone/cheese.svg b/apps/client/src/static/icons/duotone/cheese.svg similarity index 100% rename from src/static/icons/duotone/cheese.svg rename to apps/client/src/static/icons/duotone/cheese.svg diff --git a/src/static/icons/duotone/cheeseburger.svg b/apps/client/src/static/icons/duotone/cheeseburger.svg similarity index 100% rename from src/static/icons/duotone/cheeseburger.svg rename to apps/client/src/static/icons/duotone/cheeseburger.svg diff --git a/src/static/icons/duotone/chess-bishop-alt.svg b/apps/client/src/static/icons/duotone/chess-bishop-alt.svg similarity index 100% rename from src/static/icons/duotone/chess-bishop-alt.svg rename to apps/client/src/static/icons/duotone/chess-bishop-alt.svg diff --git a/src/static/icons/duotone/chess-bishop.svg b/apps/client/src/static/icons/duotone/chess-bishop.svg similarity index 100% rename from src/static/icons/duotone/chess-bishop.svg rename to apps/client/src/static/icons/duotone/chess-bishop.svg diff --git a/src/static/icons/duotone/chess-board.svg b/apps/client/src/static/icons/duotone/chess-board.svg similarity index 100% rename from src/static/icons/duotone/chess-board.svg rename to apps/client/src/static/icons/duotone/chess-board.svg diff --git a/src/static/icons/duotone/chess-clock-alt.svg b/apps/client/src/static/icons/duotone/chess-clock-alt.svg similarity index 100% rename from src/static/icons/duotone/chess-clock-alt.svg rename to apps/client/src/static/icons/duotone/chess-clock-alt.svg diff --git a/src/static/icons/duotone/chess-clock.svg b/apps/client/src/static/icons/duotone/chess-clock.svg similarity index 100% rename from src/static/icons/duotone/chess-clock.svg rename to apps/client/src/static/icons/duotone/chess-clock.svg diff --git a/src/static/icons/duotone/chess-king-alt.svg b/apps/client/src/static/icons/duotone/chess-king-alt.svg similarity index 100% rename from src/static/icons/duotone/chess-king-alt.svg rename to apps/client/src/static/icons/duotone/chess-king-alt.svg diff --git a/src/static/icons/duotone/chess-king.svg b/apps/client/src/static/icons/duotone/chess-king.svg similarity index 100% rename from src/static/icons/duotone/chess-king.svg rename to apps/client/src/static/icons/duotone/chess-king.svg diff --git a/src/static/icons/duotone/chess-knight-alt.svg b/apps/client/src/static/icons/duotone/chess-knight-alt.svg similarity index 100% rename from src/static/icons/duotone/chess-knight-alt.svg rename to apps/client/src/static/icons/duotone/chess-knight-alt.svg diff --git a/src/static/icons/duotone/chess-knight.svg b/apps/client/src/static/icons/duotone/chess-knight.svg similarity index 100% rename from src/static/icons/duotone/chess-knight.svg rename to apps/client/src/static/icons/duotone/chess-knight.svg diff --git a/src/static/icons/duotone/chess-pawn-alt.svg b/apps/client/src/static/icons/duotone/chess-pawn-alt.svg similarity index 100% rename from src/static/icons/duotone/chess-pawn-alt.svg rename to apps/client/src/static/icons/duotone/chess-pawn-alt.svg diff --git a/src/static/icons/duotone/chess-pawn.svg b/apps/client/src/static/icons/duotone/chess-pawn.svg similarity index 100% rename from src/static/icons/duotone/chess-pawn.svg rename to apps/client/src/static/icons/duotone/chess-pawn.svg diff --git a/src/static/icons/duotone/chess-queen-alt.svg b/apps/client/src/static/icons/duotone/chess-queen-alt.svg similarity index 100% rename from src/static/icons/duotone/chess-queen-alt.svg rename to apps/client/src/static/icons/duotone/chess-queen-alt.svg diff --git a/src/static/icons/duotone/chess-queen.svg b/apps/client/src/static/icons/duotone/chess-queen.svg similarity index 100% rename from src/static/icons/duotone/chess-queen.svg rename to apps/client/src/static/icons/duotone/chess-queen.svg diff --git a/src/static/icons/duotone/chess-rook-alt.svg b/apps/client/src/static/icons/duotone/chess-rook-alt.svg similarity index 100% rename from src/static/icons/duotone/chess-rook-alt.svg rename to apps/client/src/static/icons/duotone/chess-rook-alt.svg diff --git a/src/static/icons/duotone/chess-rook.svg b/apps/client/src/static/icons/duotone/chess-rook.svg similarity index 100% rename from src/static/icons/duotone/chess-rook.svg rename to apps/client/src/static/icons/duotone/chess-rook.svg diff --git a/src/static/icons/duotone/chess.svg b/apps/client/src/static/icons/duotone/chess.svg similarity index 100% rename from src/static/icons/duotone/chess.svg rename to apps/client/src/static/icons/duotone/chess.svg diff --git a/src/static/icons/duotone/chevron-circle-down.svg b/apps/client/src/static/icons/duotone/chevron-circle-down.svg similarity index 100% rename from src/static/icons/duotone/chevron-circle-down.svg rename to apps/client/src/static/icons/duotone/chevron-circle-down.svg diff --git a/src/static/icons/duotone/chevron-circle-left.svg b/apps/client/src/static/icons/duotone/chevron-circle-left.svg similarity index 100% rename from src/static/icons/duotone/chevron-circle-left.svg rename to apps/client/src/static/icons/duotone/chevron-circle-left.svg diff --git a/src/static/icons/duotone/chevron-circle-right.svg b/apps/client/src/static/icons/duotone/chevron-circle-right.svg similarity index 100% rename from src/static/icons/duotone/chevron-circle-right.svg rename to apps/client/src/static/icons/duotone/chevron-circle-right.svg diff --git a/src/static/icons/duotone/chevron-circle-up.svg b/apps/client/src/static/icons/duotone/chevron-circle-up.svg similarity index 100% rename from src/static/icons/duotone/chevron-circle-up.svg rename to apps/client/src/static/icons/duotone/chevron-circle-up.svg diff --git a/src/static/icons/duotone/chevron-double-down.svg b/apps/client/src/static/icons/duotone/chevron-double-down.svg similarity index 100% rename from src/static/icons/duotone/chevron-double-down.svg rename to apps/client/src/static/icons/duotone/chevron-double-down.svg diff --git a/src/static/icons/duotone/chevron-double-left.svg b/apps/client/src/static/icons/duotone/chevron-double-left.svg similarity index 100% rename from src/static/icons/duotone/chevron-double-left.svg rename to apps/client/src/static/icons/duotone/chevron-double-left.svg diff --git a/src/static/icons/duotone/chevron-double-right.svg b/apps/client/src/static/icons/duotone/chevron-double-right.svg similarity index 100% rename from src/static/icons/duotone/chevron-double-right.svg rename to apps/client/src/static/icons/duotone/chevron-double-right.svg diff --git a/src/static/icons/duotone/chevron-double-up.svg b/apps/client/src/static/icons/duotone/chevron-double-up.svg similarity index 100% rename from src/static/icons/duotone/chevron-double-up.svg rename to apps/client/src/static/icons/duotone/chevron-double-up.svg diff --git a/src/static/icons/duotone/chevron-down.svg b/apps/client/src/static/icons/duotone/chevron-down.svg similarity index 100% rename from src/static/icons/duotone/chevron-down.svg rename to apps/client/src/static/icons/duotone/chevron-down.svg diff --git a/src/static/icons/duotone/chevron-left.svg b/apps/client/src/static/icons/duotone/chevron-left.svg similarity index 100% rename from src/static/icons/duotone/chevron-left.svg rename to apps/client/src/static/icons/duotone/chevron-left.svg diff --git a/src/static/icons/duotone/chevron-right.svg b/apps/client/src/static/icons/duotone/chevron-right.svg similarity index 100% rename from src/static/icons/duotone/chevron-right.svg rename to apps/client/src/static/icons/duotone/chevron-right.svg diff --git a/src/static/icons/duotone/chevron-square-down.svg b/apps/client/src/static/icons/duotone/chevron-square-down.svg similarity index 100% rename from src/static/icons/duotone/chevron-square-down.svg rename to apps/client/src/static/icons/duotone/chevron-square-down.svg diff --git a/src/static/icons/duotone/chevron-square-left.svg b/apps/client/src/static/icons/duotone/chevron-square-left.svg similarity index 100% rename from src/static/icons/duotone/chevron-square-left.svg rename to apps/client/src/static/icons/duotone/chevron-square-left.svg diff --git a/src/static/icons/duotone/chevron-square-right.svg b/apps/client/src/static/icons/duotone/chevron-square-right.svg similarity index 100% rename from src/static/icons/duotone/chevron-square-right.svg rename to apps/client/src/static/icons/duotone/chevron-square-right.svg diff --git a/src/static/icons/duotone/chevron-square-up.svg b/apps/client/src/static/icons/duotone/chevron-square-up.svg similarity index 100% rename from src/static/icons/duotone/chevron-square-up.svg rename to apps/client/src/static/icons/duotone/chevron-square-up.svg diff --git a/src/static/icons/duotone/chevron-up.svg b/apps/client/src/static/icons/duotone/chevron-up.svg similarity index 100% rename from src/static/icons/duotone/chevron-up.svg rename to apps/client/src/static/icons/duotone/chevron-up.svg diff --git a/src/static/icons/duotone/child.svg b/apps/client/src/static/icons/duotone/child.svg similarity index 100% rename from src/static/icons/duotone/child.svg rename to apps/client/src/static/icons/duotone/child.svg diff --git a/src/static/icons/duotone/chimney.svg b/apps/client/src/static/icons/duotone/chimney.svg similarity index 100% rename from src/static/icons/duotone/chimney.svg rename to apps/client/src/static/icons/duotone/chimney.svg diff --git a/src/static/icons/duotone/church.svg b/apps/client/src/static/icons/duotone/church.svg similarity index 100% rename from src/static/icons/duotone/church.svg rename to apps/client/src/static/icons/duotone/church.svg diff --git a/src/static/icons/duotone/circle-notch.svg b/apps/client/src/static/icons/duotone/circle-notch.svg similarity index 100% rename from src/static/icons/duotone/circle-notch.svg rename to apps/client/src/static/icons/duotone/circle-notch.svg diff --git a/src/static/icons/duotone/circle.svg b/apps/client/src/static/icons/duotone/circle.svg similarity index 100% rename from src/static/icons/duotone/circle.svg rename to apps/client/src/static/icons/duotone/circle.svg diff --git a/src/static/icons/duotone/city.svg b/apps/client/src/static/icons/duotone/city.svg similarity index 100% rename from src/static/icons/duotone/city.svg rename to apps/client/src/static/icons/duotone/city.svg diff --git a/src/static/icons/duotone/clarinet.svg b/apps/client/src/static/icons/duotone/clarinet.svg similarity index 100% rename from src/static/icons/duotone/clarinet.svg rename to apps/client/src/static/icons/duotone/clarinet.svg diff --git a/src/static/icons/duotone/claw-marks.svg b/apps/client/src/static/icons/duotone/claw-marks.svg similarity index 100% rename from src/static/icons/duotone/claw-marks.svg rename to apps/client/src/static/icons/duotone/claw-marks.svg diff --git a/src/static/icons/duotone/clinic-medical.svg b/apps/client/src/static/icons/duotone/clinic-medical.svg similarity index 100% rename from src/static/icons/duotone/clinic-medical.svg rename to apps/client/src/static/icons/duotone/clinic-medical.svg diff --git a/src/static/icons/duotone/clipboard-check.svg b/apps/client/src/static/icons/duotone/clipboard-check.svg similarity index 100% rename from src/static/icons/duotone/clipboard-check.svg rename to apps/client/src/static/icons/duotone/clipboard-check.svg diff --git a/src/static/icons/duotone/clipboard-list-check.svg b/apps/client/src/static/icons/duotone/clipboard-list-check.svg similarity index 100% rename from src/static/icons/duotone/clipboard-list-check.svg rename to apps/client/src/static/icons/duotone/clipboard-list-check.svg diff --git a/src/static/icons/duotone/clipboard-list.svg b/apps/client/src/static/icons/duotone/clipboard-list.svg similarity index 100% rename from src/static/icons/duotone/clipboard-list.svg rename to apps/client/src/static/icons/duotone/clipboard-list.svg diff --git a/src/static/icons/duotone/clipboard-prescription.svg b/apps/client/src/static/icons/duotone/clipboard-prescription.svg similarity index 100% rename from src/static/icons/duotone/clipboard-prescription.svg rename to apps/client/src/static/icons/duotone/clipboard-prescription.svg diff --git a/src/static/icons/duotone/clipboard-user.svg b/apps/client/src/static/icons/duotone/clipboard-user.svg similarity index 100% rename from src/static/icons/duotone/clipboard-user.svg rename to apps/client/src/static/icons/duotone/clipboard-user.svg diff --git a/src/static/icons/duotone/clipboard.svg b/apps/client/src/static/icons/duotone/clipboard.svg similarity index 100% rename from src/static/icons/duotone/clipboard.svg rename to apps/client/src/static/icons/duotone/clipboard.svg diff --git a/src/static/icons/duotone/clock.svg b/apps/client/src/static/icons/duotone/clock.svg similarity index 100% rename from src/static/icons/duotone/clock.svg rename to apps/client/src/static/icons/duotone/clock.svg diff --git a/src/static/icons/duotone/clone.svg b/apps/client/src/static/icons/duotone/clone.svg similarity index 100% rename from src/static/icons/duotone/clone.svg rename to apps/client/src/static/icons/duotone/clone.svg diff --git a/src/static/icons/duotone/closed-captioning.svg b/apps/client/src/static/icons/duotone/closed-captioning.svg similarity index 100% rename from src/static/icons/duotone/closed-captioning.svg rename to apps/client/src/static/icons/duotone/closed-captioning.svg diff --git a/src/static/icons/duotone/cloud-download-alt.svg b/apps/client/src/static/icons/duotone/cloud-download-alt.svg similarity index 100% rename from src/static/icons/duotone/cloud-download-alt.svg rename to apps/client/src/static/icons/duotone/cloud-download-alt.svg diff --git a/src/static/icons/duotone/cloud-download.svg b/apps/client/src/static/icons/duotone/cloud-download.svg similarity index 100% rename from src/static/icons/duotone/cloud-download.svg rename to apps/client/src/static/icons/duotone/cloud-download.svg diff --git a/src/static/icons/duotone/cloud-drizzle.svg b/apps/client/src/static/icons/duotone/cloud-drizzle.svg similarity index 100% rename from src/static/icons/duotone/cloud-drizzle.svg rename to apps/client/src/static/icons/duotone/cloud-drizzle.svg diff --git a/src/static/icons/duotone/cloud-hail-mixed.svg b/apps/client/src/static/icons/duotone/cloud-hail-mixed.svg similarity index 100% rename from src/static/icons/duotone/cloud-hail-mixed.svg rename to apps/client/src/static/icons/duotone/cloud-hail-mixed.svg diff --git a/src/static/icons/duotone/cloud-hail.svg b/apps/client/src/static/icons/duotone/cloud-hail.svg similarity index 100% rename from src/static/icons/duotone/cloud-hail.svg rename to apps/client/src/static/icons/duotone/cloud-hail.svg diff --git a/src/static/icons/duotone/cloud-meatball.svg b/apps/client/src/static/icons/duotone/cloud-meatball.svg similarity index 100% rename from src/static/icons/duotone/cloud-meatball.svg rename to apps/client/src/static/icons/duotone/cloud-meatball.svg diff --git a/src/static/icons/duotone/cloud-moon-rain.svg b/apps/client/src/static/icons/duotone/cloud-moon-rain.svg similarity index 100% rename from src/static/icons/duotone/cloud-moon-rain.svg rename to apps/client/src/static/icons/duotone/cloud-moon-rain.svg diff --git a/src/static/icons/duotone/cloud-moon.svg b/apps/client/src/static/icons/duotone/cloud-moon.svg similarity index 100% rename from src/static/icons/duotone/cloud-moon.svg rename to apps/client/src/static/icons/duotone/cloud-moon.svg diff --git a/src/static/icons/duotone/cloud-music.svg b/apps/client/src/static/icons/duotone/cloud-music.svg similarity index 100% rename from src/static/icons/duotone/cloud-music.svg rename to apps/client/src/static/icons/duotone/cloud-music.svg diff --git a/src/static/icons/duotone/cloud-rain.svg b/apps/client/src/static/icons/duotone/cloud-rain.svg similarity index 100% rename from src/static/icons/duotone/cloud-rain.svg rename to apps/client/src/static/icons/duotone/cloud-rain.svg diff --git a/src/static/icons/duotone/cloud-rainbow.svg b/apps/client/src/static/icons/duotone/cloud-rainbow.svg similarity index 100% rename from src/static/icons/duotone/cloud-rainbow.svg rename to apps/client/src/static/icons/duotone/cloud-rainbow.svg diff --git a/src/static/icons/duotone/cloud-showers-heavy.svg b/apps/client/src/static/icons/duotone/cloud-showers-heavy.svg similarity index 100% rename from src/static/icons/duotone/cloud-showers-heavy.svg rename to apps/client/src/static/icons/duotone/cloud-showers-heavy.svg diff --git a/src/static/icons/duotone/cloud-showers.svg b/apps/client/src/static/icons/duotone/cloud-showers.svg similarity index 100% rename from src/static/icons/duotone/cloud-showers.svg rename to apps/client/src/static/icons/duotone/cloud-showers.svg diff --git a/src/static/icons/duotone/cloud-sleet.svg b/apps/client/src/static/icons/duotone/cloud-sleet.svg similarity index 100% rename from src/static/icons/duotone/cloud-sleet.svg rename to apps/client/src/static/icons/duotone/cloud-sleet.svg diff --git a/src/static/icons/duotone/cloud-snow.svg b/apps/client/src/static/icons/duotone/cloud-snow.svg similarity index 100% rename from src/static/icons/duotone/cloud-snow.svg rename to apps/client/src/static/icons/duotone/cloud-snow.svg diff --git a/src/static/icons/duotone/cloud-sun-rain.svg b/apps/client/src/static/icons/duotone/cloud-sun-rain.svg similarity index 100% rename from src/static/icons/duotone/cloud-sun-rain.svg rename to apps/client/src/static/icons/duotone/cloud-sun-rain.svg diff --git a/src/static/icons/duotone/cloud-sun.svg b/apps/client/src/static/icons/duotone/cloud-sun.svg similarity index 100% rename from src/static/icons/duotone/cloud-sun.svg rename to apps/client/src/static/icons/duotone/cloud-sun.svg diff --git a/src/static/icons/duotone/cloud-upload-alt.svg b/apps/client/src/static/icons/duotone/cloud-upload-alt.svg similarity index 100% rename from src/static/icons/duotone/cloud-upload-alt.svg rename to apps/client/src/static/icons/duotone/cloud-upload-alt.svg diff --git a/src/static/icons/duotone/cloud-upload.svg b/apps/client/src/static/icons/duotone/cloud-upload.svg similarity index 100% rename from src/static/icons/duotone/cloud-upload.svg rename to apps/client/src/static/icons/duotone/cloud-upload.svg diff --git a/src/static/icons/duotone/cloud.svg b/apps/client/src/static/icons/duotone/cloud.svg similarity index 100% rename from src/static/icons/duotone/cloud.svg rename to apps/client/src/static/icons/duotone/cloud.svg diff --git a/src/static/icons/duotone/clouds-moon.svg b/apps/client/src/static/icons/duotone/clouds-moon.svg similarity index 100% rename from src/static/icons/duotone/clouds-moon.svg rename to apps/client/src/static/icons/duotone/clouds-moon.svg diff --git a/src/static/icons/duotone/clouds-sun.svg b/apps/client/src/static/icons/duotone/clouds-sun.svg similarity index 100% rename from src/static/icons/duotone/clouds-sun.svg rename to apps/client/src/static/icons/duotone/clouds-sun.svg diff --git a/src/static/icons/duotone/clouds.svg b/apps/client/src/static/icons/duotone/clouds.svg similarity index 100% rename from src/static/icons/duotone/clouds.svg rename to apps/client/src/static/icons/duotone/clouds.svg diff --git a/src/static/icons/duotone/club.svg b/apps/client/src/static/icons/duotone/club.svg similarity index 100% rename from src/static/icons/duotone/club.svg rename to apps/client/src/static/icons/duotone/club.svg diff --git a/src/static/icons/duotone/cocktail.svg b/apps/client/src/static/icons/duotone/cocktail.svg similarity index 100% rename from src/static/icons/duotone/cocktail.svg rename to apps/client/src/static/icons/duotone/cocktail.svg diff --git a/src/static/icons/duotone/code-branch.svg b/apps/client/src/static/icons/duotone/code-branch.svg similarity index 100% rename from src/static/icons/duotone/code-branch.svg rename to apps/client/src/static/icons/duotone/code-branch.svg diff --git a/src/static/icons/duotone/code-commit.svg b/apps/client/src/static/icons/duotone/code-commit.svg similarity index 100% rename from src/static/icons/duotone/code-commit.svg rename to apps/client/src/static/icons/duotone/code-commit.svg diff --git a/src/static/icons/duotone/code-merge.svg b/apps/client/src/static/icons/duotone/code-merge.svg similarity index 100% rename from src/static/icons/duotone/code-merge.svg rename to apps/client/src/static/icons/duotone/code-merge.svg diff --git a/src/static/icons/duotone/code.svg b/apps/client/src/static/icons/duotone/code.svg similarity index 100% rename from src/static/icons/duotone/code.svg rename to apps/client/src/static/icons/duotone/code.svg diff --git a/src/static/icons/duotone/coffee-pot.svg b/apps/client/src/static/icons/duotone/coffee-pot.svg similarity index 100% rename from src/static/icons/duotone/coffee-pot.svg rename to apps/client/src/static/icons/duotone/coffee-pot.svg diff --git a/src/static/icons/duotone/coffee-togo.svg b/apps/client/src/static/icons/duotone/coffee-togo.svg similarity index 100% rename from src/static/icons/duotone/coffee-togo.svg rename to apps/client/src/static/icons/duotone/coffee-togo.svg diff --git a/src/static/icons/duotone/coffee.svg b/apps/client/src/static/icons/duotone/coffee.svg similarity index 100% rename from src/static/icons/duotone/coffee.svg rename to apps/client/src/static/icons/duotone/coffee.svg diff --git a/src/static/icons/duotone/coffin.svg b/apps/client/src/static/icons/duotone/coffin.svg similarity index 100% rename from src/static/icons/duotone/coffin.svg rename to apps/client/src/static/icons/duotone/coffin.svg diff --git a/src/static/icons/duotone/cog.svg b/apps/client/src/static/icons/duotone/cog.svg similarity index 100% rename from src/static/icons/duotone/cog.svg rename to apps/client/src/static/icons/duotone/cog.svg diff --git a/src/static/icons/duotone/cogs.svg b/apps/client/src/static/icons/duotone/cogs.svg similarity index 100% rename from src/static/icons/duotone/cogs.svg rename to apps/client/src/static/icons/duotone/cogs.svg diff --git a/src/static/icons/duotone/coin.svg b/apps/client/src/static/icons/duotone/coin.svg similarity index 100% rename from src/static/icons/duotone/coin.svg rename to apps/client/src/static/icons/duotone/coin.svg diff --git a/src/static/icons/duotone/coins.svg b/apps/client/src/static/icons/duotone/coins.svg similarity index 100% rename from src/static/icons/duotone/coins.svg rename to apps/client/src/static/icons/duotone/coins.svg diff --git a/src/static/icons/duotone/columns.svg b/apps/client/src/static/icons/duotone/columns.svg similarity index 100% rename from src/static/icons/duotone/columns.svg rename to apps/client/src/static/icons/duotone/columns.svg diff --git a/src/static/icons/duotone/comet.svg b/apps/client/src/static/icons/duotone/comet.svg similarity index 100% rename from src/static/icons/duotone/comet.svg rename to apps/client/src/static/icons/duotone/comet.svg diff --git a/src/static/icons/duotone/comment-alt-check.svg b/apps/client/src/static/icons/duotone/comment-alt-check.svg similarity index 100% rename from src/static/icons/duotone/comment-alt-check.svg rename to apps/client/src/static/icons/duotone/comment-alt-check.svg diff --git a/src/static/icons/duotone/comment-alt-dollar.svg b/apps/client/src/static/icons/duotone/comment-alt-dollar.svg similarity index 100% rename from src/static/icons/duotone/comment-alt-dollar.svg rename to apps/client/src/static/icons/duotone/comment-alt-dollar.svg diff --git a/src/static/icons/duotone/comment-alt-dots.svg b/apps/client/src/static/icons/duotone/comment-alt-dots.svg similarity index 100% rename from src/static/icons/duotone/comment-alt-dots.svg rename to apps/client/src/static/icons/duotone/comment-alt-dots.svg diff --git a/src/static/icons/duotone/comment-alt-edit.svg b/apps/client/src/static/icons/duotone/comment-alt-edit.svg similarity index 100% rename from src/static/icons/duotone/comment-alt-edit.svg rename to apps/client/src/static/icons/duotone/comment-alt-edit.svg diff --git a/src/static/icons/duotone/comment-alt-exclamation.svg b/apps/client/src/static/icons/duotone/comment-alt-exclamation.svg similarity index 100% rename from src/static/icons/duotone/comment-alt-exclamation.svg rename to apps/client/src/static/icons/duotone/comment-alt-exclamation.svg diff --git a/src/static/icons/duotone/comment-alt-lines.svg b/apps/client/src/static/icons/duotone/comment-alt-lines.svg similarity index 100% rename from src/static/icons/duotone/comment-alt-lines.svg rename to apps/client/src/static/icons/duotone/comment-alt-lines.svg diff --git a/src/static/icons/duotone/comment-alt-medical.svg b/apps/client/src/static/icons/duotone/comment-alt-medical.svg similarity index 100% rename from src/static/icons/duotone/comment-alt-medical.svg rename to apps/client/src/static/icons/duotone/comment-alt-medical.svg diff --git a/src/static/icons/duotone/comment-alt-minus.svg b/apps/client/src/static/icons/duotone/comment-alt-minus.svg similarity index 100% rename from src/static/icons/duotone/comment-alt-minus.svg rename to apps/client/src/static/icons/duotone/comment-alt-minus.svg diff --git a/src/static/icons/duotone/comment-alt-music.svg b/apps/client/src/static/icons/duotone/comment-alt-music.svg similarity index 100% rename from src/static/icons/duotone/comment-alt-music.svg rename to apps/client/src/static/icons/duotone/comment-alt-music.svg diff --git a/src/static/icons/duotone/comment-alt-plus.svg b/apps/client/src/static/icons/duotone/comment-alt-plus.svg similarity index 100% rename from src/static/icons/duotone/comment-alt-plus.svg rename to apps/client/src/static/icons/duotone/comment-alt-plus.svg diff --git a/src/static/icons/duotone/comment-alt-slash.svg b/apps/client/src/static/icons/duotone/comment-alt-slash.svg similarity index 100% rename from src/static/icons/duotone/comment-alt-slash.svg rename to apps/client/src/static/icons/duotone/comment-alt-slash.svg diff --git a/src/static/icons/duotone/comment-alt-smile.svg b/apps/client/src/static/icons/duotone/comment-alt-smile.svg similarity index 100% rename from src/static/icons/duotone/comment-alt-smile.svg rename to apps/client/src/static/icons/duotone/comment-alt-smile.svg diff --git a/src/static/icons/duotone/comment-alt-times.svg b/apps/client/src/static/icons/duotone/comment-alt-times.svg similarity index 100% rename from src/static/icons/duotone/comment-alt-times.svg rename to apps/client/src/static/icons/duotone/comment-alt-times.svg diff --git a/src/static/icons/duotone/comment-alt.svg b/apps/client/src/static/icons/duotone/comment-alt.svg similarity index 100% rename from src/static/icons/duotone/comment-alt.svg rename to apps/client/src/static/icons/duotone/comment-alt.svg diff --git a/src/static/icons/duotone/comment-check.svg b/apps/client/src/static/icons/duotone/comment-check.svg similarity index 100% rename from src/static/icons/duotone/comment-check.svg rename to apps/client/src/static/icons/duotone/comment-check.svg diff --git a/src/static/icons/duotone/comment-dollar.svg b/apps/client/src/static/icons/duotone/comment-dollar.svg similarity index 100% rename from src/static/icons/duotone/comment-dollar.svg rename to apps/client/src/static/icons/duotone/comment-dollar.svg diff --git a/src/static/icons/duotone/comment-dots.svg b/apps/client/src/static/icons/duotone/comment-dots.svg similarity index 100% rename from src/static/icons/duotone/comment-dots.svg rename to apps/client/src/static/icons/duotone/comment-dots.svg diff --git a/src/static/icons/duotone/comment-edit.svg b/apps/client/src/static/icons/duotone/comment-edit.svg similarity index 100% rename from src/static/icons/duotone/comment-edit.svg rename to apps/client/src/static/icons/duotone/comment-edit.svg diff --git a/src/static/icons/duotone/comment-exclamation.svg b/apps/client/src/static/icons/duotone/comment-exclamation.svg similarity index 100% rename from src/static/icons/duotone/comment-exclamation.svg rename to apps/client/src/static/icons/duotone/comment-exclamation.svg diff --git a/src/static/icons/duotone/comment-lines.svg b/apps/client/src/static/icons/duotone/comment-lines.svg similarity index 100% rename from src/static/icons/duotone/comment-lines.svg rename to apps/client/src/static/icons/duotone/comment-lines.svg diff --git a/src/static/icons/duotone/comment-medical.svg b/apps/client/src/static/icons/duotone/comment-medical.svg similarity index 100% rename from src/static/icons/duotone/comment-medical.svg rename to apps/client/src/static/icons/duotone/comment-medical.svg diff --git a/src/static/icons/duotone/comment-minus.svg b/apps/client/src/static/icons/duotone/comment-minus.svg similarity index 100% rename from src/static/icons/duotone/comment-minus.svg rename to apps/client/src/static/icons/duotone/comment-minus.svg diff --git a/src/static/icons/duotone/comment-music.svg b/apps/client/src/static/icons/duotone/comment-music.svg similarity index 100% rename from src/static/icons/duotone/comment-music.svg rename to apps/client/src/static/icons/duotone/comment-music.svg diff --git a/src/static/icons/duotone/comment-plus.svg b/apps/client/src/static/icons/duotone/comment-plus.svg similarity index 100% rename from src/static/icons/duotone/comment-plus.svg rename to apps/client/src/static/icons/duotone/comment-plus.svg diff --git a/src/static/icons/duotone/comment-slash.svg b/apps/client/src/static/icons/duotone/comment-slash.svg similarity index 100% rename from src/static/icons/duotone/comment-slash.svg rename to apps/client/src/static/icons/duotone/comment-slash.svg diff --git a/src/static/icons/duotone/comment-smile.svg b/apps/client/src/static/icons/duotone/comment-smile.svg similarity index 100% rename from src/static/icons/duotone/comment-smile.svg rename to apps/client/src/static/icons/duotone/comment-smile.svg diff --git a/src/static/icons/duotone/comment-times.svg b/apps/client/src/static/icons/duotone/comment-times.svg similarity index 100% rename from src/static/icons/duotone/comment-times.svg rename to apps/client/src/static/icons/duotone/comment-times.svg diff --git a/src/static/icons/duotone/comment.svg b/apps/client/src/static/icons/duotone/comment.svg similarity index 100% rename from src/static/icons/duotone/comment.svg rename to apps/client/src/static/icons/duotone/comment.svg diff --git a/src/static/icons/duotone/comments-alt-dollar.svg b/apps/client/src/static/icons/duotone/comments-alt-dollar.svg similarity index 100% rename from src/static/icons/duotone/comments-alt-dollar.svg rename to apps/client/src/static/icons/duotone/comments-alt-dollar.svg diff --git a/src/static/icons/duotone/comments-alt.svg b/apps/client/src/static/icons/duotone/comments-alt.svg similarity index 100% rename from src/static/icons/duotone/comments-alt.svg rename to apps/client/src/static/icons/duotone/comments-alt.svg diff --git a/src/static/icons/duotone/comments-dollar.svg b/apps/client/src/static/icons/duotone/comments-dollar.svg similarity index 100% rename from src/static/icons/duotone/comments-dollar.svg rename to apps/client/src/static/icons/duotone/comments-dollar.svg diff --git a/src/static/icons/duotone/comments.svg b/apps/client/src/static/icons/duotone/comments.svg similarity index 100% rename from src/static/icons/duotone/comments.svg rename to apps/client/src/static/icons/duotone/comments.svg diff --git a/src/static/icons/duotone/compact-disc.svg b/apps/client/src/static/icons/duotone/compact-disc.svg similarity index 100% rename from src/static/icons/duotone/compact-disc.svg rename to apps/client/src/static/icons/duotone/compact-disc.svg diff --git a/src/static/icons/duotone/compass-slash.svg b/apps/client/src/static/icons/duotone/compass-slash.svg similarity index 100% rename from src/static/icons/duotone/compass-slash.svg rename to apps/client/src/static/icons/duotone/compass-slash.svg diff --git a/src/static/icons/duotone/compass.svg b/apps/client/src/static/icons/duotone/compass.svg similarity index 100% rename from src/static/icons/duotone/compass.svg rename to apps/client/src/static/icons/duotone/compass.svg diff --git a/src/static/icons/duotone/compress-alt.svg b/apps/client/src/static/icons/duotone/compress-alt.svg similarity index 100% rename from src/static/icons/duotone/compress-alt.svg rename to apps/client/src/static/icons/duotone/compress-alt.svg diff --git a/src/static/icons/duotone/compress-arrows-alt.svg b/apps/client/src/static/icons/duotone/compress-arrows-alt.svg similarity index 100% rename from src/static/icons/duotone/compress-arrows-alt.svg rename to apps/client/src/static/icons/duotone/compress-arrows-alt.svg diff --git a/src/static/icons/duotone/compress-wide.svg b/apps/client/src/static/icons/duotone/compress-wide.svg similarity index 100% rename from src/static/icons/duotone/compress-wide.svg rename to apps/client/src/static/icons/duotone/compress-wide.svg diff --git a/src/static/icons/duotone/compress.svg b/apps/client/src/static/icons/duotone/compress.svg similarity index 100% rename from src/static/icons/duotone/compress.svg rename to apps/client/src/static/icons/duotone/compress.svg diff --git a/src/static/icons/duotone/computer-classic.svg b/apps/client/src/static/icons/duotone/computer-classic.svg similarity index 100% rename from src/static/icons/duotone/computer-classic.svg rename to apps/client/src/static/icons/duotone/computer-classic.svg diff --git a/src/static/icons/duotone/computer-speaker.svg b/apps/client/src/static/icons/duotone/computer-speaker.svg similarity index 100% rename from src/static/icons/duotone/computer-speaker.svg rename to apps/client/src/static/icons/duotone/computer-speaker.svg diff --git a/src/static/icons/duotone/concierge-bell.svg b/apps/client/src/static/icons/duotone/concierge-bell.svg similarity index 100% rename from src/static/icons/duotone/concierge-bell.svg rename to apps/client/src/static/icons/duotone/concierge-bell.svg diff --git a/src/static/icons/duotone/construction.svg b/apps/client/src/static/icons/duotone/construction.svg similarity index 100% rename from src/static/icons/duotone/construction.svg rename to apps/client/src/static/icons/duotone/construction.svg diff --git a/src/static/icons/duotone/container-storage.svg b/apps/client/src/static/icons/duotone/container-storage.svg similarity index 100% rename from src/static/icons/duotone/container-storage.svg rename to apps/client/src/static/icons/duotone/container-storage.svg diff --git a/src/static/icons/duotone/conveyor-belt-alt.svg b/apps/client/src/static/icons/duotone/conveyor-belt-alt.svg similarity index 100% rename from src/static/icons/duotone/conveyor-belt-alt.svg rename to apps/client/src/static/icons/duotone/conveyor-belt-alt.svg diff --git a/src/static/icons/duotone/conveyor-belt.svg b/apps/client/src/static/icons/duotone/conveyor-belt.svg similarity index 100% rename from src/static/icons/duotone/conveyor-belt.svg rename to apps/client/src/static/icons/duotone/conveyor-belt.svg diff --git a/src/static/icons/duotone/cookie-bite.svg b/apps/client/src/static/icons/duotone/cookie-bite.svg similarity index 100% rename from src/static/icons/duotone/cookie-bite.svg rename to apps/client/src/static/icons/duotone/cookie-bite.svg diff --git a/src/static/icons/duotone/cookie.svg b/apps/client/src/static/icons/duotone/cookie.svg similarity index 100% rename from src/static/icons/duotone/cookie.svg rename to apps/client/src/static/icons/duotone/cookie.svg diff --git a/src/static/icons/duotone/copy.svg b/apps/client/src/static/icons/duotone/copy.svg similarity index 100% rename from src/static/icons/duotone/copy.svg rename to apps/client/src/static/icons/duotone/copy.svg diff --git a/src/static/icons/duotone/copyright.svg b/apps/client/src/static/icons/duotone/copyright.svg similarity index 100% rename from src/static/icons/duotone/copyright.svg rename to apps/client/src/static/icons/duotone/copyright.svg diff --git a/src/static/icons/duotone/corn.svg b/apps/client/src/static/icons/duotone/corn.svg similarity index 100% rename from src/static/icons/duotone/corn.svg rename to apps/client/src/static/icons/duotone/corn.svg diff --git a/src/static/icons/duotone/couch.svg b/apps/client/src/static/icons/duotone/couch.svg similarity index 100% rename from src/static/icons/duotone/couch.svg rename to apps/client/src/static/icons/duotone/couch.svg diff --git a/src/static/icons/duotone/cow.svg b/apps/client/src/static/icons/duotone/cow.svg similarity index 100% rename from src/static/icons/duotone/cow.svg rename to apps/client/src/static/icons/duotone/cow.svg diff --git a/src/static/icons/duotone/cowbell-more.svg b/apps/client/src/static/icons/duotone/cowbell-more.svg similarity index 100% rename from src/static/icons/duotone/cowbell-more.svg rename to apps/client/src/static/icons/duotone/cowbell-more.svg diff --git a/src/static/icons/duotone/cowbell.svg b/apps/client/src/static/icons/duotone/cowbell.svg similarity index 100% rename from src/static/icons/duotone/cowbell.svg rename to apps/client/src/static/icons/duotone/cowbell.svg diff --git a/src/static/icons/duotone/credit-card-blank.svg b/apps/client/src/static/icons/duotone/credit-card-blank.svg similarity index 100% rename from src/static/icons/duotone/credit-card-blank.svg rename to apps/client/src/static/icons/duotone/credit-card-blank.svg diff --git a/src/static/icons/duotone/credit-card-front.svg b/apps/client/src/static/icons/duotone/credit-card-front.svg similarity index 100% rename from src/static/icons/duotone/credit-card-front.svg rename to apps/client/src/static/icons/duotone/credit-card-front.svg diff --git a/src/static/icons/duotone/credit-card.svg b/apps/client/src/static/icons/duotone/credit-card.svg similarity index 100% rename from src/static/icons/duotone/credit-card.svg rename to apps/client/src/static/icons/duotone/credit-card.svg diff --git a/src/static/icons/duotone/cricket.svg b/apps/client/src/static/icons/duotone/cricket.svg similarity index 100% rename from src/static/icons/duotone/cricket.svg rename to apps/client/src/static/icons/duotone/cricket.svg diff --git a/src/static/icons/duotone/croissant.svg b/apps/client/src/static/icons/duotone/croissant.svg similarity index 100% rename from src/static/icons/duotone/croissant.svg rename to apps/client/src/static/icons/duotone/croissant.svg diff --git a/src/static/icons/duotone/crop-alt.svg b/apps/client/src/static/icons/duotone/crop-alt.svg similarity index 100% rename from src/static/icons/duotone/crop-alt.svg rename to apps/client/src/static/icons/duotone/crop-alt.svg diff --git a/src/static/icons/duotone/crop.svg b/apps/client/src/static/icons/duotone/crop.svg similarity index 100% rename from src/static/icons/duotone/crop.svg rename to apps/client/src/static/icons/duotone/crop.svg diff --git a/src/static/icons/duotone/cross.svg b/apps/client/src/static/icons/duotone/cross.svg similarity index 100% rename from src/static/icons/duotone/cross.svg rename to apps/client/src/static/icons/duotone/cross.svg diff --git a/src/static/icons/duotone/crosshairs.svg b/apps/client/src/static/icons/duotone/crosshairs.svg similarity index 100% rename from src/static/icons/duotone/crosshairs.svg rename to apps/client/src/static/icons/duotone/crosshairs.svg diff --git a/src/static/icons/duotone/crow.svg b/apps/client/src/static/icons/duotone/crow.svg similarity index 100% rename from src/static/icons/duotone/crow.svg rename to apps/client/src/static/icons/duotone/crow.svg diff --git a/src/static/icons/duotone/crown.svg b/apps/client/src/static/icons/duotone/crown.svg similarity index 100% rename from src/static/icons/duotone/crown.svg rename to apps/client/src/static/icons/duotone/crown.svg diff --git a/src/static/icons/duotone/crutch.svg b/apps/client/src/static/icons/duotone/crutch.svg similarity index 100% rename from src/static/icons/duotone/crutch.svg rename to apps/client/src/static/icons/duotone/crutch.svg diff --git a/src/static/icons/duotone/crutches.svg b/apps/client/src/static/icons/duotone/crutches.svg similarity index 100% rename from src/static/icons/duotone/crutches.svg rename to apps/client/src/static/icons/duotone/crutches.svg diff --git a/src/static/icons/duotone/cube.svg b/apps/client/src/static/icons/duotone/cube.svg similarity index 100% rename from src/static/icons/duotone/cube.svg rename to apps/client/src/static/icons/duotone/cube.svg diff --git a/src/static/icons/duotone/cubes.svg b/apps/client/src/static/icons/duotone/cubes.svg similarity index 100% rename from src/static/icons/duotone/cubes.svg rename to apps/client/src/static/icons/duotone/cubes.svg diff --git a/src/static/icons/duotone/curling.svg b/apps/client/src/static/icons/duotone/curling.svg similarity index 100% rename from src/static/icons/duotone/curling.svg rename to apps/client/src/static/icons/duotone/curling.svg diff --git a/src/static/icons/duotone/cut.svg b/apps/client/src/static/icons/duotone/cut.svg similarity index 100% rename from src/static/icons/duotone/cut.svg rename to apps/client/src/static/icons/duotone/cut.svg diff --git a/src/static/icons/duotone/dagger.svg b/apps/client/src/static/icons/duotone/dagger.svg similarity index 100% rename from src/static/icons/duotone/dagger.svg rename to apps/client/src/static/icons/duotone/dagger.svg diff --git a/src/static/icons/duotone/database.svg b/apps/client/src/static/icons/duotone/database.svg similarity index 100% rename from src/static/icons/duotone/database.svg rename to apps/client/src/static/icons/duotone/database.svg diff --git a/src/static/icons/duotone/deaf.svg b/apps/client/src/static/icons/duotone/deaf.svg similarity index 100% rename from src/static/icons/duotone/deaf.svg rename to apps/client/src/static/icons/duotone/deaf.svg diff --git a/src/static/icons/duotone/debug.svg b/apps/client/src/static/icons/duotone/debug.svg similarity index 100% rename from src/static/icons/duotone/debug.svg rename to apps/client/src/static/icons/duotone/debug.svg diff --git a/src/static/icons/duotone/deer-rudolph.svg b/apps/client/src/static/icons/duotone/deer-rudolph.svg similarity index 100% rename from src/static/icons/duotone/deer-rudolph.svg rename to apps/client/src/static/icons/duotone/deer-rudolph.svg diff --git a/src/static/icons/duotone/deer.svg b/apps/client/src/static/icons/duotone/deer.svg similarity index 100% rename from src/static/icons/duotone/deer.svg rename to apps/client/src/static/icons/duotone/deer.svg diff --git a/src/static/icons/duotone/democrat.svg b/apps/client/src/static/icons/duotone/democrat.svg similarity index 100% rename from src/static/icons/duotone/democrat.svg rename to apps/client/src/static/icons/duotone/democrat.svg diff --git a/src/static/icons/duotone/desktop-alt.svg b/apps/client/src/static/icons/duotone/desktop-alt.svg similarity index 100% rename from src/static/icons/duotone/desktop-alt.svg rename to apps/client/src/static/icons/duotone/desktop-alt.svg diff --git a/src/static/icons/duotone/desktop.svg b/apps/client/src/static/icons/duotone/desktop.svg similarity index 100% rename from src/static/icons/duotone/desktop.svg rename to apps/client/src/static/icons/duotone/desktop.svg diff --git a/src/static/icons/duotone/dewpoint.svg b/apps/client/src/static/icons/duotone/dewpoint.svg similarity index 100% rename from src/static/icons/duotone/dewpoint.svg rename to apps/client/src/static/icons/duotone/dewpoint.svg diff --git a/src/static/icons/duotone/dharmachakra.svg b/apps/client/src/static/icons/duotone/dharmachakra.svg similarity index 100% rename from src/static/icons/duotone/dharmachakra.svg rename to apps/client/src/static/icons/duotone/dharmachakra.svg diff --git a/src/static/icons/duotone/diagnoses.svg b/apps/client/src/static/icons/duotone/diagnoses.svg similarity index 100% rename from src/static/icons/duotone/diagnoses.svg rename to apps/client/src/static/icons/duotone/diagnoses.svg diff --git a/src/static/icons/duotone/diamond.svg b/apps/client/src/static/icons/duotone/diamond.svg similarity index 100% rename from src/static/icons/duotone/diamond.svg rename to apps/client/src/static/icons/duotone/diamond.svg diff --git a/src/static/icons/duotone/dice-d10.svg b/apps/client/src/static/icons/duotone/dice-d10.svg similarity index 100% rename from src/static/icons/duotone/dice-d10.svg rename to apps/client/src/static/icons/duotone/dice-d10.svg diff --git a/src/static/icons/duotone/dice-d12.svg b/apps/client/src/static/icons/duotone/dice-d12.svg similarity index 100% rename from src/static/icons/duotone/dice-d12.svg rename to apps/client/src/static/icons/duotone/dice-d12.svg diff --git a/src/static/icons/duotone/dice-d20.svg b/apps/client/src/static/icons/duotone/dice-d20.svg similarity index 100% rename from src/static/icons/duotone/dice-d20.svg rename to apps/client/src/static/icons/duotone/dice-d20.svg diff --git a/src/static/icons/duotone/dice-d4.svg b/apps/client/src/static/icons/duotone/dice-d4.svg similarity index 100% rename from src/static/icons/duotone/dice-d4.svg rename to apps/client/src/static/icons/duotone/dice-d4.svg diff --git a/src/static/icons/duotone/dice-d6.svg b/apps/client/src/static/icons/duotone/dice-d6.svg similarity index 100% rename from src/static/icons/duotone/dice-d6.svg rename to apps/client/src/static/icons/duotone/dice-d6.svg diff --git a/src/static/icons/duotone/dice-d8.svg b/apps/client/src/static/icons/duotone/dice-d8.svg similarity index 100% rename from src/static/icons/duotone/dice-d8.svg rename to apps/client/src/static/icons/duotone/dice-d8.svg diff --git a/src/static/icons/duotone/dice-five.svg b/apps/client/src/static/icons/duotone/dice-five.svg similarity index 100% rename from src/static/icons/duotone/dice-five.svg rename to apps/client/src/static/icons/duotone/dice-five.svg diff --git a/src/static/icons/duotone/dice-four.svg b/apps/client/src/static/icons/duotone/dice-four.svg similarity index 100% rename from src/static/icons/duotone/dice-four.svg rename to apps/client/src/static/icons/duotone/dice-four.svg diff --git a/src/static/icons/duotone/dice-one.svg b/apps/client/src/static/icons/duotone/dice-one.svg similarity index 100% rename from src/static/icons/duotone/dice-one.svg rename to apps/client/src/static/icons/duotone/dice-one.svg diff --git a/src/static/icons/duotone/dice-six.svg b/apps/client/src/static/icons/duotone/dice-six.svg similarity index 100% rename from src/static/icons/duotone/dice-six.svg rename to apps/client/src/static/icons/duotone/dice-six.svg diff --git a/src/static/icons/duotone/dice-three.svg b/apps/client/src/static/icons/duotone/dice-three.svg similarity index 100% rename from src/static/icons/duotone/dice-three.svg rename to apps/client/src/static/icons/duotone/dice-three.svg diff --git a/src/static/icons/duotone/dice-two.svg b/apps/client/src/static/icons/duotone/dice-two.svg similarity index 100% rename from src/static/icons/duotone/dice-two.svg rename to apps/client/src/static/icons/duotone/dice-two.svg diff --git a/src/static/icons/duotone/dice.svg b/apps/client/src/static/icons/duotone/dice.svg similarity index 100% rename from src/static/icons/duotone/dice.svg rename to apps/client/src/static/icons/duotone/dice.svg diff --git a/src/static/icons/duotone/digging.svg b/apps/client/src/static/icons/duotone/digging.svg similarity index 100% rename from src/static/icons/duotone/digging.svg rename to apps/client/src/static/icons/duotone/digging.svg diff --git a/src/static/icons/duotone/digital-tachograph.svg b/apps/client/src/static/icons/duotone/digital-tachograph.svg similarity index 100% rename from src/static/icons/duotone/digital-tachograph.svg rename to apps/client/src/static/icons/duotone/digital-tachograph.svg diff --git a/src/static/icons/duotone/diploma.svg b/apps/client/src/static/icons/duotone/diploma.svg similarity index 100% rename from src/static/icons/duotone/diploma.svg rename to apps/client/src/static/icons/duotone/diploma.svg diff --git a/src/static/icons/duotone/directions.svg b/apps/client/src/static/icons/duotone/directions.svg similarity index 100% rename from src/static/icons/duotone/directions.svg rename to apps/client/src/static/icons/duotone/directions.svg diff --git a/src/static/icons/duotone/disc-drive.svg b/apps/client/src/static/icons/duotone/disc-drive.svg similarity index 100% rename from src/static/icons/duotone/disc-drive.svg rename to apps/client/src/static/icons/duotone/disc-drive.svg diff --git a/src/static/icons/duotone/disease.svg b/apps/client/src/static/icons/duotone/disease.svg similarity index 100% rename from src/static/icons/duotone/disease.svg rename to apps/client/src/static/icons/duotone/disease.svg diff --git a/src/static/icons/duotone/divide.svg b/apps/client/src/static/icons/duotone/divide.svg similarity index 100% rename from src/static/icons/duotone/divide.svg rename to apps/client/src/static/icons/duotone/divide.svg diff --git a/src/static/icons/duotone/dizzy.svg b/apps/client/src/static/icons/duotone/dizzy.svg similarity index 100% rename from src/static/icons/duotone/dizzy.svg rename to apps/client/src/static/icons/duotone/dizzy.svg diff --git a/src/static/icons/duotone/dna.svg b/apps/client/src/static/icons/duotone/dna.svg similarity index 100% rename from src/static/icons/duotone/dna.svg rename to apps/client/src/static/icons/duotone/dna.svg diff --git a/src/static/icons/duotone/do-not-enter.svg b/apps/client/src/static/icons/duotone/do-not-enter.svg similarity index 100% rename from src/static/icons/duotone/do-not-enter.svg rename to apps/client/src/static/icons/duotone/do-not-enter.svg diff --git a/src/static/icons/duotone/dog-leashed.svg b/apps/client/src/static/icons/duotone/dog-leashed.svg similarity index 100% rename from src/static/icons/duotone/dog-leashed.svg rename to apps/client/src/static/icons/duotone/dog-leashed.svg diff --git a/src/static/icons/duotone/dog.svg b/apps/client/src/static/icons/duotone/dog.svg similarity index 100% rename from src/static/icons/duotone/dog.svg rename to apps/client/src/static/icons/duotone/dog.svg diff --git a/src/static/icons/duotone/dollar-sign.svg b/apps/client/src/static/icons/duotone/dollar-sign.svg similarity index 100% rename from src/static/icons/duotone/dollar-sign.svg rename to apps/client/src/static/icons/duotone/dollar-sign.svg diff --git a/src/static/icons/duotone/dolly-empty.svg b/apps/client/src/static/icons/duotone/dolly-empty.svg similarity index 100% rename from src/static/icons/duotone/dolly-empty.svg rename to apps/client/src/static/icons/duotone/dolly-empty.svg diff --git a/src/static/icons/duotone/dolly-flatbed-alt.svg b/apps/client/src/static/icons/duotone/dolly-flatbed-alt.svg similarity index 100% rename from src/static/icons/duotone/dolly-flatbed-alt.svg rename to apps/client/src/static/icons/duotone/dolly-flatbed-alt.svg diff --git a/src/static/icons/duotone/dolly-flatbed-empty.svg b/apps/client/src/static/icons/duotone/dolly-flatbed-empty.svg similarity index 100% rename from src/static/icons/duotone/dolly-flatbed-empty.svg rename to apps/client/src/static/icons/duotone/dolly-flatbed-empty.svg diff --git a/src/static/icons/duotone/dolly-flatbed.svg b/apps/client/src/static/icons/duotone/dolly-flatbed.svg similarity index 100% rename from src/static/icons/duotone/dolly-flatbed.svg rename to apps/client/src/static/icons/duotone/dolly-flatbed.svg diff --git a/src/static/icons/duotone/dolly.svg b/apps/client/src/static/icons/duotone/dolly.svg similarity index 100% rename from src/static/icons/duotone/dolly.svg rename to apps/client/src/static/icons/duotone/dolly.svg diff --git a/src/static/icons/duotone/donate.svg b/apps/client/src/static/icons/duotone/donate.svg similarity index 100% rename from src/static/icons/duotone/donate.svg rename to apps/client/src/static/icons/duotone/donate.svg diff --git a/src/static/icons/duotone/door-closed.svg b/apps/client/src/static/icons/duotone/door-closed.svg similarity index 100% rename from src/static/icons/duotone/door-closed.svg rename to apps/client/src/static/icons/duotone/door-closed.svg diff --git a/src/static/icons/duotone/door-open.svg b/apps/client/src/static/icons/duotone/door-open.svg similarity index 100% rename from src/static/icons/duotone/door-open.svg rename to apps/client/src/static/icons/duotone/door-open.svg diff --git a/src/static/icons/duotone/dot-circle.svg b/apps/client/src/static/icons/duotone/dot-circle.svg similarity index 100% rename from src/static/icons/duotone/dot-circle.svg rename to apps/client/src/static/icons/duotone/dot-circle.svg diff --git a/src/static/icons/duotone/dove.svg b/apps/client/src/static/icons/duotone/dove.svg similarity index 100% rename from src/static/icons/duotone/dove.svg rename to apps/client/src/static/icons/duotone/dove.svg diff --git a/src/static/icons/duotone/download.svg b/apps/client/src/static/icons/duotone/download.svg similarity index 100% rename from src/static/icons/duotone/download.svg rename to apps/client/src/static/icons/duotone/download.svg diff --git a/src/static/icons/duotone/drafting-compass.svg b/apps/client/src/static/icons/duotone/drafting-compass.svg similarity index 100% rename from src/static/icons/duotone/drafting-compass.svg rename to apps/client/src/static/icons/duotone/drafting-compass.svg diff --git a/src/static/icons/duotone/dragon.svg b/apps/client/src/static/icons/duotone/dragon.svg similarity index 100% rename from src/static/icons/duotone/dragon.svg rename to apps/client/src/static/icons/duotone/dragon.svg diff --git a/src/static/icons/duotone/draw-circle.svg b/apps/client/src/static/icons/duotone/draw-circle.svg similarity index 100% rename from src/static/icons/duotone/draw-circle.svg rename to apps/client/src/static/icons/duotone/draw-circle.svg diff --git a/src/static/icons/duotone/draw-polygon.svg b/apps/client/src/static/icons/duotone/draw-polygon.svg similarity index 100% rename from src/static/icons/duotone/draw-polygon.svg rename to apps/client/src/static/icons/duotone/draw-polygon.svg diff --git a/src/static/icons/duotone/draw-square.svg b/apps/client/src/static/icons/duotone/draw-square.svg similarity index 100% rename from src/static/icons/duotone/draw-square.svg rename to apps/client/src/static/icons/duotone/draw-square.svg diff --git a/src/static/icons/duotone/dreidel.svg b/apps/client/src/static/icons/duotone/dreidel.svg similarity index 100% rename from src/static/icons/duotone/dreidel.svg rename to apps/client/src/static/icons/duotone/dreidel.svg diff --git a/src/static/icons/duotone/drone-alt.svg b/apps/client/src/static/icons/duotone/drone-alt.svg similarity index 100% rename from src/static/icons/duotone/drone-alt.svg rename to apps/client/src/static/icons/duotone/drone-alt.svg diff --git a/src/static/icons/duotone/drone.svg b/apps/client/src/static/icons/duotone/drone.svg similarity index 100% rename from src/static/icons/duotone/drone.svg rename to apps/client/src/static/icons/duotone/drone.svg diff --git a/src/static/icons/duotone/drum-steelpan.svg b/apps/client/src/static/icons/duotone/drum-steelpan.svg similarity index 100% rename from src/static/icons/duotone/drum-steelpan.svg rename to apps/client/src/static/icons/duotone/drum-steelpan.svg diff --git a/src/static/icons/duotone/drum.svg b/apps/client/src/static/icons/duotone/drum.svg similarity index 100% rename from src/static/icons/duotone/drum.svg rename to apps/client/src/static/icons/duotone/drum.svg diff --git a/src/static/icons/duotone/drumstick-bite.svg b/apps/client/src/static/icons/duotone/drumstick-bite.svg similarity index 100% rename from src/static/icons/duotone/drumstick-bite.svg rename to apps/client/src/static/icons/duotone/drumstick-bite.svg diff --git a/src/static/icons/duotone/drumstick.svg b/apps/client/src/static/icons/duotone/drumstick.svg similarity index 100% rename from src/static/icons/duotone/drumstick.svg rename to apps/client/src/static/icons/duotone/drumstick.svg diff --git a/src/static/icons/duotone/dryer-alt.svg b/apps/client/src/static/icons/duotone/dryer-alt.svg similarity index 100% rename from src/static/icons/duotone/dryer-alt.svg rename to apps/client/src/static/icons/duotone/dryer-alt.svg diff --git a/src/static/icons/duotone/dryer.svg b/apps/client/src/static/icons/duotone/dryer.svg similarity index 100% rename from src/static/icons/duotone/dryer.svg rename to apps/client/src/static/icons/duotone/dryer.svg diff --git a/src/static/icons/duotone/duck.svg b/apps/client/src/static/icons/duotone/duck.svg similarity index 100% rename from src/static/icons/duotone/duck.svg rename to apps/client/src/static/icons/duotone/duck.svg diff --git a/src/static/icons/duotone/dumbbell.svg b/apps/client/src/static/icons/duotone/dumbbell.svg similarity index 100% rename from src/static/icons/duotone/dumbbell.svg rename to apps/client/src/static/icons/duotone/dumbbell.svg diff --git a/src/static/icons/duotone/dumpster-fire.svg b/apps/client/src/static/icons/duotone/dumpster-fire.svg similarity index 100% rename from src/static/icons/duotone/dumpster-fire.svg rename to apps/client/src/static/icons/duotone/dumpster-fire.svg diff --git a/src/static/icons/duotone/dumpster.svg b/apps/client/src/static/icons/duotone/dumpster.svg similarity index 100% rename from src/static/icons/duotone/dumpster.svg rename to apps/client/src/static/icons/duotone/dumpster.svg diff --git a/src/static/icons/duotone/dungeon.svg b/apps/client/src/static/icons/duotone/dungeon.svg similarity index 100% rename from src/static/icons/duotone/dungeon.svg rename to apps/client/src/static/icons/duotone/dungeon.svg diff --git a/src/static/icons/duotone/ear-muffs.svg b/apps/client/src/static/icons/duotone/ear-muffs.svg similarity index 100% rename from src/static/icons/duotone/ear-muffs.svg rename to apps/client/src/static/icons/duotone/ear-muffs.svg diff --git a/src/static/icons/duotone/ear.svg b/apps/client/src/static/icons/duotone/ear.svg similarity index 100% rename from src/static/icons/duotone/ear.svg rename to apps/client/src/static/icons/duotone/ear.svg diff --git a/src/static/icons/duotone/eclipse-alt.svg b/apps/client/src/static/icons/duotone/eclipse-alt.svg similarity index 100% rename from src/static/icons/duotone/eclipse-alt.svg rename to apps/client/src/static/icons/duotone/eclipse-alt.svg diff --git a/src/static/icons/duotone/eclipse.svg b/apps/client/src/static/icons/duotone/eclipse.svg similarity index 100% rename from src/static/icons/duotone/eclipse.svg rename to apps/client/src/static/icons/duotone/eclipse.svg diff --git a/src/static/icons/duotone/edit.svg b/apps/client/src/static/icons/duotone/edit.svg similarity index 100% rename from src/static/icons/duotone/edit.svg rename to apps/client/src/static/icons/duotone/edit.svg diff --git a/src/static/icons/duotone/egg-fried.svg b/apps/client/src/static/icons/duotone/egg-fried.svg similarity index 100% rename from src/static/icons/duotone/egg-fried.svg rename to apps/client/src/static/icons/duotone/egg-fried.svg diff --git a/src/static/icons/duotone/egg.svg b/apps/client/src/static/icons/duotone/egg.svg similarity index 100% rename from src/static/icons/duotone/egg.svg rename to apps/client/src/static/icons/duotone/egg.svg diff --git a/src/static/icons/duotone/eject.svg b/apps/client/src/static/icons/duotone/eject.svg similarity index 100% rename from src/static/icons/duotone/eject.svg rename to apps/client/src/static/icons/duotone/eject.svg diff --git a/src/static/icons/duotone/elephant.svg b/apps/client/src/static/icons/duotone/elephant.svg similarity index 100% rename from src/static/icons/duotone/elephant.svg rename to apps/client/src/static/icons/duotone/elephant.svg diff --git a/src/static/icons/duotone/ellipsis-h-alt.svg b/apps/client/src/static/icons/duotone/ellipsis-h-alt.svg similarity index 100% rename from src/static/icons/duotone/ellipsis-h-alt.svg rename to apps/client/src/static/icons/duotone/ellipsis-h-alt.svg diff --git a/src/static/icons/duotone/ellipsis-h.svg b/apps/client/src/static/icons/duotone/ellipsis-h.svg similarity index 100% rename from src/static/icons/duotone/ellipsis-h.svg rename to apps/client/src/static/icons/duotone/ellipsis-h.svg diff --git a/src/static/icons/duotone/ellipsis-v-alt.svg b/apps/client/src/static/icons/duotone/ellipsis-v-alt.svg similarity index 100% rename from src/static/icons/duotone/ellipsis-v-alt.svg rename to apps/client/src/static/icons/duotone/ellipsis-v-alt.svg diff --git a/src/static/icons/duotone/ellipsis-v.svg b/apps/client/src/static/icons/duotone/ellipsis-v.svg similarity index 100% rename from src/static/icons/duotone/ellipsis-v.svg rename to apps/client/src/static/icons/duotone/ellipsis-v.svg diff --git a/src/static/icons/duotone/empty-set.svg b/apps/client/src/static/icons/duotone/empty-set.svg similarity index 100% rename from src/static/icons/duotone/empty-set.svg rename to apps/client/src/static/icons/duotone/empty-set.svg diff --git a/src/static/icons/duotone/engine-warning.svg b/apps/client/src/static/icons/duotone/engine-warning.svg similarity index 100% rename from src/static/icons/duotone/engine-warning.svg rename to apps/client/src/static/icons/duotone/engine-warning.svg diff --git a/src/static/icons/duotone/envelope-open-dollar.svg b/apps/client/src/static/icons/duotone/envelope-open-dollar.svg similarity index 100% rename from src/static/icons/duotone/envelope-open-dollar.svg rename to apps/client/src/static/icons/duotone/envelope-open-dollar.svg diff --git a/src/static/icons/duotone/envelope-open-text.svg b/apps/client/src/static/icons/duotone/envelope-open-text.svg similarity index 100% rename from src/static/icons/duotone/envelope-open-text.svg rename to apps/client/src/static/icons/duotone/envelope-open-text.svg diff --git a/src/static/icons/duotone/envelope-open.svg b/apps/client/src/static/icons/duotone/envelope-open.svg similarity index 100% rename from src/static/icons/duotone/envelope-open.svg rename to apps/client/src/static/icons/duotone/envelope-open.svg diff --git a/src/static/icons/duotone/envelope-square.svg b/apps/client/src/static/icons/duotone/envelope-square.svg similarity index 100% rename from src/static/icons/duotone/envelope-square.svg rename to apps/client/src/static/icons/duotone/envelope-square.svg diff --git a/src/static/icons/duotone/envelope.svg b/apps/client/src/static/icons/duotone/envelope.svg similarity index 100% rename from src/static/icons/duotone/envelope.svg rename to apps/client/src/static/icons/duotone/envelope.svg diff --git a/src/static/icons/duotone/equals.svg b/apps/client/src/static/icons/duotone/equals.svg similarity index 100% rename from src/static/icons/duotone/equals.svg rename to apps/client/src/static/icons/duotone/equals.svg diff --git a/src/static/icons/duotone/eraser.svg b/apps/client/src/static/icons/duotone/eraser.svg similarity index 100% rename from src/static/icons/duotone/eraser.svg rename to apps/client/src/static/icons/duotone/eraser.svg diff --git a/src/static/icons/duotone/ethernet.svg b/apps/client/src/static/icons/duotone/ethernet.svg similarity index 100% rename from src/static/icons/duotone/ethernet.svg rename to apps/client/src/static/icons/duotone/ethernet.svg diff --git a/src/static/icons/duotone/euro-sign.svg b/apps/client/src/static/icons/duotone/euro-sign.svg similarity index 100% rename from src/static/icons/duotone/euro-sign.svg rename to apps/client/src/static/icons/duotone/euro-sign.svg diff --git a/src/static/icons/duotone/exchange-alt.svg b/apps/client/src/static/icons/duotone/exchange-alt.svg similarity index 100% rename from src/static/icons/duotone/exchange-alt.svg rename to apps/client/src/static/icons/duotone/exchange-alt.svg diff --git a/src/static/icons/duotone/exchange.svg b/apps/client/src/static/icons/duotone/exchange.svg similarity index 100% rename from src/static/icons/duotone/exchange.svg rename to apps/client/src/static/icons/duotone/exchange.svg diff --git a/src/static/icons/duotone/exclamation-circle.svg b/apps/client/src/static/icons/duotone/exclamation-circle.svg similarity index 100% rename from src/static/icons/duotone/exclamation-circle.svg rename to apps/client/src/static/icons/duotone/exclamation-circle.svg diff --git a/src/static/icons/duotone/exclamation-square.svg b/apps/client/src/static/icons/duotone/exclamation-square.svg similarity index 100% rename from src/static/icons/duotone/exclamation-square.svg rename to apps/client/src/static/icons/duotone/exclamation-square.svg diff --git a/src/static/icons/duotone/exclamation-triangle.svg b/apps/client/src/static/icons/duotone/exclamation-triangle.svg similarity index 100% rename from src/static/icons/duotone/exclamation-triangle.svg rename to apps/client/src/static/icons/duotone/exclamation-triangle.svg diff --git a/src/static/icons/duotone/exclamation.svg b/apps/client/src/static/icons/duotone/exclamation.svg similarity index 100% rename from src/static/icons/duotone/exclamation.svg rename to apps/client/src/static/icons/duotone/exclamation.svg diff --git a/src/static/icons/duotone/expand-alt.svg b/apps/client/src/static/icons/duotone/expand-alt.svg similarity index 100% rename from src/static/icons/duotone/expand-alt.svg rename to apps/client/src/static/icons/duotone/expand-alt.svg diff --git a/src/static/icons/duotone/expand-arrows-alt.svg b/apps/client/src/static/icons/duotone/expand-arrows-alt.svg similarity index 100% rename from src/static/icons/duotone/expand-arrows-alt.svg rename to apps/client/src/static/icons/duotone/expand-arrows-alt.svg diff --git a/src/static/icons/duotone/expand-arrows.svg b/apps/client/src/static/icons/duotone/expand-arrows.svg similarity index 100% rename from src/static/icons/duotone/expand-arrows.svg rename to apps/client/src/static/icons/duotone/expand-arrows.svg diff --git a/src/static/icons/duotone/expand-wide.svg b/apps/client/src/static/icons/duotone/expand-wide.svg similarity index 100% rename from src/static/icons/duotone/expand-wide.svg rename to apps/client/src/static/icons/duotone/expand-wide.svg diff --git a/src/static/icons/duotone/expand.svg b/apps/client/src/static/icons/duotone/expand.svg similarity index 100% rename from src/static/icons/duotone/expand.svg rename to apps/client/src/static/icons/duotone/expand.svg diff --git a/src/static/icons/duotone/external-link-alt.svg b/apps/client/src/static/icons/duotone/external-link-alt.svg similarity index 100% rename from src/static/icons/duotone/external-link-alt.svg rename to apps/client/src/static/icons/duotone/external-link-alt.svg diff --git a/src/static/icons/duotone/external-link-square-alt.svg b/apps/client/src/static/icons/duotone/external-link-square-alt.svg similarity index 100% rename from src/static/icons/duotone/external-link-square-alt.svg rename to apps/client/src/static/icons/duotone/external-link-square-alt.svg diff --git a/src/static/icons/duotone/external-link-square.svg b/apps/client/src/static/icons/duotone/external-link-square.svg similarity index 100% rename from src/static/icons/duotone/external-link-square.svg rename to apps/client/src/static/icons/duotone/external-link-square.svg diff --git a/src/static/icons/duotone/external-link.svg b/apps/client/src/static/icons/duotone/external-link.svg similarity index 100% rename from src/static/icons/duotone/external-link.svg rename to apps/client/src/static/icons/duotone/external-link.svg diff --git a/src/static/icons/duotone/eye-dropper.svg b/apps/client/src/static/icons/duotone/eye-dropper.svg similarity index 100% rename from src/static/icons/duotone/eye-dropper.svg rename to apps/client/src/static/icons/duotone/eye-dropper.svg diff --git a/src/static/icons/duotone/eye-evil.svg b/apps/client/src/static/icons/duotone/eye-evil.svg similarity index 100% rename from src/static/icons/duotone/eye-evil.svg rename to apps/client/src/static/icons/duotone/eye-evil.svg diff --git a/src/static/icons/duotone/eye-slash.svg b/apps/client/src/static/icons/duotone/eye-slash.svg similarity index 100% rename from src/static/icons/duotone/eye-slash.svg rename to apps/client/src/static/icons/duotone/eye-slash.svg diff --git a/src/static/icons/duotone/eye.svg b/apps/client/src/static/icons/duotone/eye.svg similarity index 100% rename from src/static/icons/duotone/eye.svg rename to apps/client/src/static/icons/duotone/eye.svg diff --git a/src/static/icons/duotone/fan-table.svg b/apps/client/src/static/icons/duotone/fan-table.svg similarity index 100% rename from src/static/icons/duotone/fan-table.svg rename to apps/client/src/static/icons/duotone/fan-table.svg diff --git a/src/static/icons/duotone/fan.svg b/apps/client/src/static/icons/duotone/fan.svg similarity index 100% rename from src/static/icons/duotone/fan.svg rename to apps/client/src/static/icons/duotone/fan.svg diff --git a/src/static/icons/duotone/farm.svg b/apps/client/src/static/icons/duotone/farm.svg similarity index 100% rename from src/static/icons/duotone/farm.svg rename to apps/client/src/static/icons/duotone/farm.svg diff --git a/src/static/icons/duotone/fast-backward.svg b/apps/client/src/static/icons/duotone/fast-backward.svg similarity index 100% rename from src/static/icons/duotone/fast-backward.svg rename to apps/client/src/static/icons/duotone/fast-backward.svg diff --git a/src/static/icons/duotone/fast-forward.svg b/apps/client/src/static/icons/duotone/fast-forward.svg similarity index 100% rename from src/static/icons/duotone/fast-forward.svg rename to apps/client/src/static/icons/duotone/fast-forward.svg diff --git a/src/static/icons/duotone/faucet-drip.svg b/apps/client/src/static/icons/duotone/faucet-drip.svg similarity index 100% rename from src/static/icons/duotone/faucet-drip.svg rename to apps/client/src/static/icons/duotone/faucet-drip.svg diff --git a/src/static/icons/duotone/faucet.svg b/apps/client/src/static/icons/duotone/faucet.svg similarity index 100% rename from src/static/icons/duotone/faucet.svg rename to apps/client/src/static/icons/duotone/faucet.svg diff --git a/src/static/icons/duotone/fax.svg b/apps/client/src/static/icons/duotone/fax.svg similarity index 100% rename from src/static/icons/duotone/fax.svg rename to apps/client/src/static/icons/duotone/fax.svg diff --git a/src/static/icons/duotone/feather-alt.svg b/apps/client/src/static/icons/duotone/feather-alt.svg similarity index 100% rename from src/static/icons/duotone/feather-alt.svg rename to apps/client/src/static/icons/duotone/feather-alt.svg diff --git a/src/static/icons/duotone/feather.svg b/apps/client/src/static/icons/duotone/feather.svg similarity index 100% rename from src/static/icons/duotone/feather.svg rename to apps/client/src/static/icons/duotone/feather.svg diff --git a/src/static/icons/duotone/female.svg b/apps/client/src/static/icons/duotone/female.svg similarity index 100% rename from src/static/icons/duotone/female.svg rename to apps/client/src/static/icons/duotone/female.svg diff --git a/src/static/icons/duotone/field-hockey.svg b/apps/client/src/static/icons/duotone/field-hockey.svg similarity index 100% rename from src/static/icons/duotone/field-hockey.svg rename to apps/client/src/static/icons/duotone/field-hockey.svg diff --git a/src/static/icons/duotone/fighter-jet.svg b/apps/client/src/static/icons/duotone/fighter-jet.svg similarity index 100% rename from src/static/icons/duotone/fighter-jet.svg rename to apps/client/src/static/icons/duotone/fighter-jet.svg diff --git a/src/static/icons/duotone/file-alt.svg b/apps/client/src/static/icons/duotone/file-alt.svg similarity index 100% rename from src/static/icons/duotone/file-alt.svg rename to apps/client/src/static/icons/duotone/file-alt.svg diff --git a/src/static/icons/duotone/file-archive.svg b/apps/client/src/static/icons/duotone/file-archive.svg similarity index 100% rename from src/static/icons/duotone/file-archive.svg rename to apps/client/src/static/icons/duotone/file-archive.svg diff --git a/src/static/icons/duotone/file-audio.svg b/apps/client/src/static/icons/duotone/file-audio.svg similarity index 100% rename from src/static/icons/duotone/file-audio.svg rename to apps/client/src/static/icons/duotone/file-audio.svg diff --git a/src/static/icons/duotone/file-certificate.svg b/apps/client/src/static/icons/duotone/file-certificate.svg similarity index 100% rename from src/static/icons/duotone/file-certificate.svg rename to apps/client/src/static/icons/duotone/file-certificate.svg diff --git a/src/static/icons/duotone/file-chart-line.svg b/apps/client/src/static/icons/duotone/file-chart-line.svg similarity index 100% rename from src/static/icons/duotone/file-chart-line.svg rename to apps/client/src/static/icons/duotone/file-chart-line.svg diff --git a/src/static/icons/duotone/file-chart-pie.svg b/apps/client/src/static/icons/duotone/file-chart-pie.svg similarity index 100% rename from src/static/icons/duotone/file-chart-pie.svg rename to apps/client/src/static/icons/duotone/file-chart-pie.svg diff --git a/src/static/icons/duotone/file-check.svg b/apps/client/src/static/icons/duotone/file-check.svg similarity index 100% rename from src/static/icons/duotone/file-check.svg rename to apps/client/src/static/icons/duotone/file-check.svg diff --git a/src/static/icons/duotone/file-code.svg b/apps/client/src/static/icons/duotone/file-code.svg similarity index 100% rename from src/static/icons/duotone/file-code.svg rename to apps/client/src/static/icons/duotone/file-code.svg diff --git a/src/static/icons/duotone/file-contract.svg b/apps/client/src/static/icons/duotone/file-contract.svg similarity index 100% rename from src/static/icons/duotone/file-contract.svg rename to apps/client/src/static/icons/duotone/file-contract.svg diff --git a/src/static/icons/duotone/file-csv.svg b/apps/client/src/static/icons/duotone/file-csv.svg similarity index 100% rename from src/static/icons/duotone/file-csv.svg rename to apps/client/src/static/icons/duotone/file-csv.svg diff --git a/src/static/icons/duotone/file-download.svg b/apps/client/src/static/icons/duotone/file-download.svg similarity index 100% rename from src/static/icons/duotone/file-download.svg rename to apps/client/src/static/icons/duotone/file-download.svg diff --git a/src/static/icons/duotone/file-edit.svg b/apps/client/src/static/icons/duotone/file-edit.svg similarity index 100% rename from src/static/icons/duotone/file-edit.svg rename to apps/client/src/static/icons/duotone/file-edit.svg diff --git a/src/static/icons/duotone/file-excel.svg b/apps/client/src/static/icons/duotone/file-excel.svg similarity index 100% rename from src/static/icons/duotone/file-excel.svg rename to apps/client/src/static/icons/duotone/file-excel.svg diff --git a/src/static/icons/duotone/file-exclamation.svg b/apps/client/src/static/icons/duotone/file-exclamation.svg similarity index 100% rename from src/static/icons/duotone/file-exclamation.svg rename to apps/client/src/static/icons/duotone/file-exclamation.svg diff --git a/src/static/icons/duotone/file-export.svg b/apps/client/src/static/icons/duotone/file-export.svg similarity index 100% rename from src/static/icons/duotone/file-export.svg rename to apps/client/src/static/icons/duotone/file-export.svg diff --git a/src/static/icons/duotone/file-image.svg b/apps/client/src/static/icons/duotone/file-image.svg similarity index 100% rename from src/static/icons/duotone/file-image.svg rename to apps/client/src/static/icons/duotone/file-image.svg diff --git a/src/static/icons/duotone/file-import.svg b/apps/client/src/static/icons/duotone/file-import.svg similarity index 100% rename from src/static/icons/duotone/file-import.svg rename to apps/client/src/static/icons/duotone/file-import.svg diff --git a/src/static/icons/duotone/file-invoice-dollar.svg b/apps/client/src/static/icons/duotone/file-invoice-dollar.svg similarity index 100% rename from src/static/icons/duotone/file-invoice-dollar.svg rename to apps/client/src/static/icons/duotone/file-invoice-dollar.svg diff --git a/src/static/icons/duotone/file-invoice.svg b/apps/client/src/static/icons/duotone/file-invoice.svg similarity index 100% rename from src/static/icons/duotone/file-invoice.svg rename to apps/client/src/static/icons/duotone/file-invoice.svg diff --git a/src/static/icons/duotone/file-medical-alt.svg b/apps/client/src/static/icons/duotone/file-medical-alt.svg similarity index 100% rename from src/static/icons/duotone/file-medical-alt.svg rename to apps/client/src/static/icons/duotone/file-medical-alt.svg diff --git a/src/static/icons/duotone/file-medical.svg b/apps/client/src/static/icons/duotone/file-medical.svg similarity index 100% rename from src/static/icons/duotone/file-medical.svg rename to apps/client/src/static/icons/duotone/file-medical.svg diff --git a/src/static/icons/duotone/file-minus.svg b/apps/client/src/static/icons/duotone/file-minus.svg similarity index 100% rename from src/static/icons/duotone/file-minus.svg rename to apps/client/src/static/icons/duotone/file-minus.svg diff --git a/src/static/icons/duotone/file-music.svg b/apps/client/src/static/icons/duotone/file-music.svg similarity index 100% rename from src/static/icons/duotone/file-music.svg rename to apps/client/src/static/icons/duotone/file-music.svg diff --git a/src/static/icons/duotone/file-pdf.svg b/apps/client/src/static/icons/duotone/file-pdf.svg similarity index 100% rename from src/static/icons/duotone/file-pdf.svg rename to apps/client/src/static/icons/duotone/file-pdf.svg diff --git a/src/static/icons/duotone/file-plus.svg b/apps/client/src/static/icons/duotone/file-plus.svg similarity index 100% rename from src/static/icons/duotone/file-plus.svg rename to apps/client/src/static/icons/duotone/file-plus.svg diff --git a/src/static/icons/duotone/file-powerpoint.svg b/apps/client/src/static/icons/duotone/file-powerpoint.svg similarity index 100% rename from src/static/icons/duotone/file-powerpoint.svg rename to apps/client/src/static/icons/duotone/file-powerpoint.svg diff --git a/src/static/icons/duotone/file-prescription.svg b/apps/client/src/static/icons/duotone/file-prescription.svg similarity index 100% rename from src/static/icons/duotone/file-prescription.svg rename to apps/client/src/static/icons/duotone/file-prescription.svg diff --git a/src/static/icons/duotone/file-search.svg b/apps/client/src/static/icons/duotone/file-search.svg similarity index 100% rename from src/static/icons/duotone/file-search.svg rename to apps/client/src/static/icons/duotone/file-search.svg diff --git a/src/static/icons/duotone/file-signature.svg b/apps/client/src/static/icons/duotone/file-signature.svg similarity index 100% rename from src/static/icons/duotone/file-signature.svg rename to apps/client/src/static/icons/duotone/file-signature.svg diff --git a/src/static/icons/duotone/file-spreadsheet.svg b/apps/client/src/static/icons/duotone/file-spreadsheet.svg similarity index 100% rename from src/static/icons/duotone/file-spreadsheet.svg rename to apps/client/src/static/icons/duotone/file-spreadsheet.svg diff --git a/src/static/icons/duotone/file-times.svg b/apps/client/src/static/icons/duotone/file-times.svg similarity index 100% rename from src/static/icons/duotone/file-times.svg rename to apps/client/src/static/icons/duotone/file-times.svg diff --git a/src/static/icons/duotone/file-upload.svg b/apps/client/src/static/icons/duotone/file-upload.svg similarity index 100% rename from src/static/icons/duotone/file-upload.svg rename to apps/client/src/static/icons/duotone/file-upload.svg diff --git a/src/static/icons/duotone/file-user.svg b/apps/client/src/static/icons/duotone/file-user.svg similarity index 100% rename from src/static/icons/duotone/file-user.svg rename to apps/client/src/static/icons/duotone/file-user.svg diff --git a/src/static/icons/duotone/file-video.svg b/apps/client/src/static/icons/duotone/file-video.svg similarity index 100% rename from src/static/icons/duotone/file-video.svg rename to apps/client/src/static/icons/duotone/file-video.svg diff --git a/src/static/icons/duotone/file-word.svg b/apps/client/src/static/icons/duotone/file-word.svg similarity index 100% rename from src/static/icons/duotone/file-word.svg rename to apps/client/src/static/icons/duotone/file-word.svg diff --git a/src/static/icons/duotone/file.svg b/apps/client/src/static/icons/duotone/file.svg similarity index 100% rename from src/static/icons/duotone/file.svg rename to apps/client/src/static/icons/duotone/file.svg diff --git a/src/static/icons/duotone/files-medical.svg b/apps/client/src/static/icons/duotone/files-medical.svg similarity index 100% rename from src/static/icons/duotone/files-medical.svg rename to apps/client/src/static/icons/duotone/files-medical.svg diff --git a/src/static/icons/duotone/fill-drip.svg b/apps/client/src/static/icons/duotone/fill-drip.svg similarity index 100% rename from src/static/icons/duotone/fill-drip.svg rename to apps/client/src/static/icons/duotone/fill-drip.svg diff --git a/src/static/icons/duotone/fill.svg b/apps/client/src/static/icons/duotone/fill.svg similarity index 100% rename from src/static/icons/duotone/fill.svg rename to apps/client/src/static/icons/duotone/fill.svg diff --git a/src/static/icons/duotone/film-alt.svg b/apps/client/src/static/icons/duotone/film-alt.svg similarity index 100% rename from src/static/icons/duotone/film-alt.svg rename to apps/client/src/static/icons/duotone/film-alt.svg diff --git a/src/static/icons/duotone/film-canister.svg b/apps/client/src/static/icons/duotone/film-canister.svg similarity index 100% rename from src/static/icons/duotone/film-canister.svg rename to apps/client/src/static/icons/duotone/film-canister.svg diff --git a/src/static/icons/duotone/film.svg b/apps/client/src/static/icons/duotone/film.svg similarity index 100% rename from src/static/icons/duotone/film.svg rename to apps/client/src/static/icons/duotone/film.svg diff --git a/src/static/icons/duotone/filter.svg b/apps/client/src/static/icons/duotone/filter.svg similarity index 100% rename from src/static/icons/duotone/filter.svg rename to apps/client/src/static/icons/duotone/filter.svg diff --git a/src/static/icons/duotone/fingerprint.svg b/apps/client/src/static/icons/duotone/fingerprint.svg similarity index 100% rename from src/static/icons/duotone/fingerprint.svg rename to apps/client/src/static/icons/duotone/fingerprint.svg diff --git a/src/static/icons/duotone/fire-alt.svg b/apps/client/src/static/icons/duotone/fire-alt.svg similarity index 100% rename from src/static/icons/duotone/fire-alt.svg rename to apps/client/src/static/icons/duotone/fire-alt.svg diff --git a/src/static/icons/duotone/fire-extinguisher.svg b/apps/client/src/static/icons/duotone/fire-extinguisher.svg similarity index 100% rename from src/static/icons/duotone/fire-extinguisher.svg rename to apps/client/src/static/icons/duotone/fire-extinguisher.svg diff --git a/src/static/icons/duotone/fire-smoke.svg b/apps/client/src/static/icons/duotone/fire-smoke.svg similarity index 100% rename from src/static/icons/duotone/fire-smoke.svg rename to apps/client/src/static/icons/duotone/fire-smoke.svg diff --git a/src/static/icons/duotone/fire.svg b/apps/client/src/static/icons/duotone/fire.svg similarity index 100% rename from src/static/icons/duotone/fire.svg rename to apps/client/src/static/icons/duotone/fire.svg diff --git a/src/static/icons/duotone/fireplace.svg b/apps/client/src/static/icons/duotone/fireplace.svg similarity index 100% rename from src/static/icons/duotone/fireplace.svg rename to apps/client/src/static/icons/duotone/fireplace.svg diff --git a/src/static/icons/duotone/first-aid.svg b/apps/client/src/static/icons/duotone/first-aid.svg similarity index 100% rename from src/static/icons/duotone/first-aid.svg rename to apps/client/src/static/icons/duotone/first-aid.svg diff --git a/src/static/icons/duotone/fish-cooked.svg b/apps/client/src/static/icons/duotone/fish-cooked.svg similarity index 100% rename from src/static/icons/duotone/fish-cooked.svg rename to apps/client/src/static/icons/duotone/fish-cooked.svg diff --git a/src/static/icons/duotone/fish.svg b/apps/client/src/static/icons/duotone/fish.svg similarity index 100% rename from src/static/icons/duotone/fish.svg rename to apps/client/src/static/icons/duotone/fish.svg diff --git a/src/static/icons/duotone/fist-raised.svg b/apps/client/src/static/icons/duotone/fist-raised.svg similarity index 100% rename from src/static/icons/duotone/fist-raised.svg rename to apps/client/src/static/icons/duotone/fist-raised.svg diff --git a/src/static/icons/duotone/flag-alt.svg b/apps/client/src/static/icons/duotone/flag-alt.svg similarity index 100% rename from src/static/icons/duotone/flag-alt.svg rename to apps/client/src/static/icons/duotone/flag-alt.svg diff --git a/src/static/icons/duotone/flag-checkered.svg b/apps/client/src/static/icons/duotone/flag-checkered.svg similarity index 100% rename from src/static/icons/duotone/flag-checkered.svg rename to apps/client/src/static/icons/duotone/flag-checkered.svg diff --git a/src/static/icons/duotone/flag-usa.svg b/apps/client/src/static/icons/duotone/flag-usa.svg similarity index 100% rename from src/static/icons/duotone/flag-usa.svg rename to apps/client/src/static/icons/duotone/flag-usa.svg diff --git a/src/static/icons/duotone/flag.svg b/apps/client/src/static/icons/duotone/flag.svg similarity index 100% rename from src/static/icons/duotone/flag.svg rename to apps/client/src/static/icons/duotone/flag.svg diff --git a/src/static/icons/duotone/flame.svg b/apps/client/src/static/icons/duotone/flame.svg similarity index 100% rename from src/static/icons/duotone/flame.svg rename to apps/client/src/static/icons/duotone/flame.svg diff --git a/src/static/icons/duotone/flashlight.svg b/apps/client/src/static/icons/duotone/flashlight.svg similarity index 100% rename from src/static/icons/duotone/flashlight.svg rename to apps/client/src/static/icons/duotone/flashlight.svg diff --git a/src/static/icons/duotone/flask-poison.svg b/apps/client/src/static/icons/duotone/flask-poison.svg similarity index 100% rename from src/static/icons/duotone/flask-poison.svg rename to apps/client/src/static/icons/duotone/flask-poison.svg diff --git a/src/static/icons/duotone/flask-potion.svg b/apps/client/src/static/icons/duotone/flask-potion.svg similarity index 100% rename from src/static/icons/duotone/flask-potion.svg rename to apps/client/src/static/icons/duotone/flask-potion.svg diff --git a/src/static/icons/duotone/flask.svg b/apps/client/src/static/icons/duotone/flask.svg similarity index 100% rename from src/static/icons/duotone/flask.svg rename to apps/client/src/static/icons/duotone/flask.svg diff --git a/src/static/icons/duotone/flower-daffodil.svg b/apps/client/src/static/icons/duotone/flower-daffodil.svg similarity index 100% rename from src/static/icons/duotone/flower-daffodil.svg rename to apps/client/src/static/icons/duotone/flower-daffodil.svg diff --git a/src/static/icons/duotone/flower-tulip.svg b/apps/client/src/static/icons/duotone/flower-tulip.svg similarity index 100% rename from src/static/icons/duotone/flower-tulip.svg rename to apps/client/src/static/icons/duotone/flower-tulip.svg diff --git a/src/static/icons/duotone/flower.svg b/apps/client/src/static/icons/duotone/flower.svg similarity index 100% rename from src/static/icons/duotone/flower.svg rename to apps/client/src/static/icons/duotone/flower.svg diff --git a/src/static/icons/duotone/flushed.svg b/apps/client/src/static/icons/duotone/flushed.svg similarity index 100% rename from src/static/icons/duotone/flushed.svg rename to apps/client/src/static/icons/duotone/flushed.svg diff --git a/src/static/icons/duotone/flute.svg b/apps/client/src/static/icons/duotone/flute.svg similarity index 100% rename from src/static/icons/duotone/flute.svg rename to apps/client/src/static/icons/duotone/flute.svg diff --git a/src/static/icons/duotone/flux-capacitor.svg b/apps/client/src/static/icons/duotone/flux-capacitor.svg similarity index 100% rename from src/static/icons/duotone/flux-capacitor.svg rename to apps/client/src/static/icons/duotone/flux-capacitor.svg diff --git a/src/static/icons/duotone/fog.svg b/apps/client/src/static/icons/duotone/fog.svg similarity index 100% rename from src/static/icons/duotone/fog.svg rename to apps/client/src/static/icons/duotone/fog.svg diff --git a/src/static/icons/duotone/folder-minus.svg b/apps/client/src/static/icons/duotone/folder-minus.svg similarity index 100% rename from src/static/icons/duotone/folder-minus.svg rename to apps/client/src/static/icons/duotone/folder-minus.svg diff --git a/src/static/icons/duotone/folder-open.svg b/apps/client/src/static/icons/duotone/folder-open.svg similarity index 100% rename from src/static/icons/duotone/folder-open.svg rename to apps/client/src/static/icons/duotone/folder-open.svg diff --git a/src/static/icons/duotone/folder-plus.svg b/apps/client/src/static/icons/duotone/folder-plus.svg similarity index 100% rename from src/static/icons/duotone/folder-plus.svg rename to apps/client/src/static/icons/duotone/folder-plus.svg diff --git a/src/static/icons/duotone/folder-times.svg b/apps/client/src/static/icons/duotone/folder-times.svg similarity index 100% rename from src/static/icons/duotone/folder-times.svg rename to apps/client/src/static/icons/duotone/folder-times.svg diff --git a/src/static/icons/duotone/folder-tree.svg b/apps/client/src/static/icons/duotone/folder-tree.svg similarity index 100% rename from src/static/icons/duotone/folder-tree.svg rename to apps/client/src/static/icons/duotone/folder-tree.svg diff --git a/src/static/icons/duotone/folder.svg b/apps/client/src/static/icons/duotone/folder.svg similarity index 100% rename from src/static/icons/duotone/folder.svg rename to apps/client/src/static/icons/duotone/folder.svg diff --git a/src/static/icons/duotone/folders.svg b/apps/client/src/static/icons/duotone/folders.svg similarity index 100% rename from src/static/icons/duotone/folders.svg rename to apps/client/src/static/icons/duotone/folders.svg diff --git a/src/static/icons/duotone/font-awesome-logo-full.svg b/apps/client/src/static/icons/duotone/font-awesome-logo-full.svg similarity index 100% rename from src/static/icons/duotone/font-awesome-logo-full.svg rename to apps/client/src/static/icons/duotone/font-awesome-logo-full.svg diff --git a/src/static/icons/duotone/font-case.svg b/apps/client/src/static/icons/duotone/font-case.svg similarity index 100% rename from src/static/icons/duotone/font-case.svg rename to apps/client/src/static/icons/duotone/font-case.svg diff --git a/src/static/icons/duotone/font.svg b/apps/client/src/static/icons/duotone/font.svg similarity index 100% rename from src/static/icons/duotone/font.svg rename to apps/client/src/static/icons/duotone/font.svg diff --git a/src/static/icons/duotone/football-ball.svg b/apps/client/src/static/icons/duotone/football-ball.svg similarity index 100% rename from src/static/icons/duotone/football-ball.svg rename to apps/client/src/static/icons/duotone/football-ball.svg diff --git a/src/static/icons/duotone/football-helmet.svg b/apps/client/src/static/icons/duotone/football-helmet.svg similarity index 100% rename from src/static/icons/duotone/football-helmet.svg rename to apps/client/src/static/icons/duotone/football-helmet.svg diff --git a/src/static/icons/duotone/forklift.svg b/apps/client/src/static/icons/duotone/forklift.svg similarity index 100% rename from src/static/icons/duotone/forklift.svg rename to apps/client/src/static/icons/duotone/forklift.svg diff --git a/src/static/icons/duotone/forward.svg b/apps/client/src/static/icons/duotone/forward.svg similarity index 100% rename from src/static/icons/duotone/forward.svg rename to apps/client/src/static/icons/duotone/forward.svg diff --git a/src/static/icons/duotone/fragile.svg b/apps/client/src/static/icons/duotone/fragile.svg similarity index 100% rename from src/static/icons/duotone/fragile.svg rename to apps/client/src/static/icons/duotone/fragile.svg diff --git a/src/static/icons/duotone/french-fries.svg b/apps/client/src/static/icons/duotone/french-fries.svg similarity index 100% rename from src/static/icons/duotone/french-fries.svg rename to apps/client/src/static/icons/duotone/french-fries.svg diff --git a/src/static/icons/duotone/frog.svg b/apps/client/src/static/icons/duotone/frog.svg similarity index 100% rename from src/static/icons/duotone/frog.svg rename to apps/client/src/static/icons/duotone/frog.svg diff --git a/src/static/icons/duotone/frosty-head.svg b/apps/client/src/static/icons/duotone/frosty-head.svg similarity index 100% rename from src/static/icons/duotone/frosty-head.svg rename to apps/client/src/static/icons/duotone/frosty-head.svg diff --git a/src/static/icons/duotone/frown-open.svg b/apps/client/src/static/icons/duotone/frown-open.svg similarity index 100% rename from src/static/icons/duotone/frown-open.svg rename to apps/client/src/static/icons/duotone/frown-open.svg diff --git a/src/static/icons/duotone/frown.svg b/apps/client/src/static/icons/duotone/frown.svg similarity index 100% rename from src/static/icons/duotone/frown.svg rename to apps/client/src/static/icons/duotone/frown.svg diff --git a/src/static/icons/duotone/function.svg b/apps/client/src/static/icons/duotone/function.svg similarity index 100% rename from src/static/icons/duotone/function.svg rename to apps/client/src/static/icons/duotone/function.svg diff --git a/src/static/icons/duotone/funnel-dollar.svg b/apps/client/src/static/icons/duotone/funnel-dollar.svg similarity index 100% rename from src/static/icons/duotone/funnel-dollar.svg rename to apps/client/src/static/icons/duotone/funnel-dollar.svg diff --git a/src/static/icons/duotone/futbol.svg b/apps/client/src/static/icons/duotone/futbol.svg similarity index 100% rename from src/static/icons/duotone/futbol.svg rename to apps/client/src/static/icons/duotone/futbol.svg diff --git a/src/static/icons/duotone/galaxy.svg b/apps/client/src/static/icons/duotone/galaxy.svg similarity index 100% rename from src/static/icons/duotone/galaxy.svg rename to apps/client/src/static/icons/duotone/galaxy.svg diff --git a/src/static/icons/duotone/game-board-alt.svg b/apps/client/src/static/icons/duotone/game-board-alt.svg similarity index 100% rename from src/static/icons/duotone/game-board-alt.svg rename to apps/client/src/static/icons/duotone/game-board-alt.svg diff --git a/src/static/icons/duotone/game-board.svg b/apps/client/src/static/icons/duotone/game-board.svg similarity index 100% rename from src/static/icons/duotone/game-board.svg rename to apps/client/src/static/icons/duotone/game-board.svg diff --git a/src/static/icons/duotone/game-console-handheld.svg b/apps/client/src/static/icons/duotone/game-console-handheld.svg similarity index 100% rename from src/static/icons/duotone/game-console-handheld.svg rename to apps/client/src/static/icons/duotone/game-console-handheld.svg diff --git a/src/static/icons/duotone/gamepad-alt.svg b/apps/client/src/static/icons/duotone/gamepad-alt.svg similarity index 100% rename from src/static/icons/duotone/gamepad-alt.svg rename to apps/client/src/static/icons/duotone/gamepad-alt.svg diff --git a/src/static/icons/duotone/gamepad.svg b/apps/client/src/static/icons/duotone/gamepad.svg similarity index 100% rename from src/static/icons/duotone/gamepad.svg rename to apps/client/src/static/icons/duotone/gamepad.svg diff --git a/src/static/icons/duotone/garage-car.svg b/apps/client/src/static/icons/duotone/garage-car.svg similarity index 100% rename from src/static/icons/duotone/garage-car.svg rename to apps/client/src/static/icons/duotone/garage-car.svg diff --git a/src/static/icons/duotone/garage-open.svg b/apps/client/src/static/icons/duotone/garage-open.svg similarity index 100% rename from src/static/icons/duotone/garage-open.svg rename to apps/client/src/static/icons/duotone/garage-open.svg diff --git a/src/static/icons/duotone/garage.svg b/apps/client/src/static/icons/duotone/garage.svg similarity index 100% rename from src/static/icons/duotone/garage.svg rename to apps/client/src/static/icons/duotone/garage.svg diff --git a/src/static/icons/duotone/gas-pump-slash.svg b/apps/client/src/static/icons/duotone/gas-pump-slash.svg similarity index 100% rename from src/static/icons/duotone/gas-pump-slash.svg rename to apps/client/src/static/icons/duotone/gas-pump-slash.svg diff --git a/src/static/icons/duotone/gas-pump.svg b/apps/client/src/static/icons/duotone/gas-pump.svg similarity index 100% rename from src/static/icons/duotone/gas-pump.svg rename to apps/client/src/static/icons/duotone/gas-pump.svg diff --git a/src/static/icons/duotone/gavel.svg b/apps/client/src/static/icons/duotone/gavel.svg similarity index 100% rename from src/static/icons/duotone/gavel.svg rename to apps/client/src/static/icons/duotone/gavel.svg diff --git a/src/static/icons/duotone/gem.svg b/apps/client/src/static/icons/duotone/gem.svg similarity index 100% rename from src/static/icons/duotone/gem.svg rename to apps/client/src/static/icons/duotone/gem.svg diff --git a/src/static/icons/duotone/genderless.svg b/apps/client/src/static/icons/duotone/genderless.svg similarity index 100% rename from src/static/icons/duotone/genderless.svg rename to apps/client/src/static/icons/duotone/genderless.svg diff --git a/src/static/icons/duotone/ghost.svg b/apps/client/src/static/icons/duotone/ghost.svg similarity index 100% rename from src/static/icons/duotone/ghost.svg rename to apps/client/src/static/icons/duotone/ghost.svg diff --git a/src/static/icons/duotone/gift-card.svg b/apps/client/src/static/icons/duotone/gift-card.svg similarity index 100% rename from src/static/icons/duotone/gift-card.svg rename to apps/client/src/static/icons/duotone/gift-card.svg diff --git a/src/static/icons/duotone/gift.svg b/apps/client/src/static/icons/duotone/gift.svg similarity index 100% rename from src/static/icons/duotone/gift.svg rename to apps/client/src/static/icons/duotone/gift.svg diff --git a/src/static/icons/duotone/gifts.svg b/apps/client/src/static/icons/duotone/gifts.svg similarity index 100% rename from src/static/icons/duotone/gifts.svg rename to apps/client/src/static/icons/duotone/gifts.svg diff --git a/src/static/icons/duotone/gingerbread-man.svg b/apps/client/src/static/icons/duotone/gingerbread-man.svg similarity index 100% rename from src/static/icons/duotone/gingerbread-man.svg rename to apps/client/src/static/icons/duotone/gingerbread-man.svg diff --git a/src/static/icons/duotone/glass-champagne.svg b/apps/client/src/static/icons/duotone/glass-champagne.svg similarity index 100% rename from src/static/icons/duotone/glass-champagne.svg rename to apps/client/src/static/icons/duotone/glass-champagne.svg diff --git a/src/static/icons/duotone/glass-cheers.svg b/apps/client/src/static/icons/duotone/glass-cheers.svg similarity index 100% rename from src/static/icons/duotone/glass-cheers.svg rename to apps/client/src/static/icons/duotone/glass-cheers.svg diff --git a/src/static/icons/duotone/glass-citrus.svg b/apps/client/src/static/icons/duotone/glass-citrus.svg similarity index 100% rename from src/static/icons/duotone/glass-citrus.svg rename to apps/client/src/static/icons/duotone/glass-citrus.svg diff --git a/src/static/icons/duotone/glass-martini-alt.svg b/apps/client/src/static/icons/duotone/glass-martini-alt.svg similarity index 100% rename from src/static/icons/duotone/glass-martini-alt.svg rename to apps/client/src/static/icons/duotone/glass-martini-alt.svg diff --git a/src/static/icons/duotone/glass-martini.svg b/apps/client/src/static/icons/duotone/glass-martini.svg similarity index 100% rename from src/static/icons/duotone/glass-martini.svg rename to apps/client/src/static/icons/duotone/glass-martini.svg diff --git a/src/static/icons/duotone/glass-whiskey-rocks.svg b/apps/client/src/static/icons/duotone/glass-whiskey-rocks.svg similarity index 100% rename from src/static/icons/duotone/glass-whiskey-rocks.svg rename to apps/client/src/static/icons/duotone/glass-whiskey-rocks.svg diff --git a/src/static/icons/duotone/glass-whiskey.svg b/apps/client/src/static/icons/duotone/glass-whiskey.svg similarity index 100% rename from src/static/icons/duotone/glass-whiskey.svg rename to apps/client/src/static/icons/duotone/glass-whiskey.svg diff --git a/src/static/icons/duotone/glass.svg b/apps/client/src/static/icons/duotone/glass.svg similarity index 100% rename from src/static/icons/duotone/glass.svg rename to apps/client/src/static/icons/duotone/glass.svg diff --git a/src/static/icons/duotone/glasses-alt.svg b/apps/client/src/static/icons/duotone/glasses-alt.svg similarity index 100% rename from src/static/icons/duotone/glasses-alt.svg rename to apps/client/src/static/icons/duotone/glasses-alt.svg diff --git a/src/static/icons/duotone/glasses.svg b/apps/client/src/static/icons/duotone/glasses.svg similarity index 100% rename from src/static/icons/duotone/glasses.svg rename to apps/client/src/static/icons/duotone/glasses.svg diff --git a/src/static/icons/duotone/globe-africa.svg b/apps/client/src/static/icons/duotone/globe-africa.svg similarity index 100% rename from src/static/icons/duotone/globe-africa.svg rename to apps/client/src/static/icons/duotone/globe-africa.svg diff --git a/src/static/icons/duotone/globe-americas.svg b/apps/client/src/static/icons/duotone/globe-americas.svg similarity index 100% rename from src/static/icons/duotone/globe-americas.svg rename to apps/client/src/static/icons/duotone/globe-americas.svg diff --git a/src/static/icons/duotone/globe-asia.svg b/apps/client/src/static/icons/duotone/globe-asia.svg similarity index 100% rename from src/static/icons/duotone/globe-asia.svg rename to apps/client/src/static/icons/duotone/globe-asia.svg diff --git a/src/static/icons/duotone/globe-europe.svg b/apps/client/src/static/icons/duotone/globe-europe.svg similarity index 100% rename from src/static/icons/duotone/globe-europe.svg rename to apps/client/src/static/icons/duotone/globe-europe.svg diff --git a/src/static/icons/duotone/globe-snow.svg b/apps/client/src/static/icons/duotone/globe-snow.svg similarity index 100% rename from src/static/icons/duotone/globe-snow.svg rename to apps/client/src/static/icons/duotone/globe-snow.svg diff --git a/src/static/icons/duotone/globe-stand.svg b/apps/client/src/static/icons/duotone/globe-stand.svg similarity index 100% rename from src/static/icons/duotone/globe-stand.svg rename to apps/client/src/static/icons/duotone/globe-stand.svg diff --git a/src/static/icons/duotone/globe.svg b/apps/client/src/static/icons/duotone/globe.svg similarity index 100% rename from src/static/icons/duotone/globe.svg rename to apps/client/src/static/icons/duotone/globe.svg diff --git a/src/static/icons/duotone/golf-ball.svg b/apps/client/src/static/icons/duotone/golf-ball.svg similarity index 100% rename from src/static/icons/duotone/golf-ball.svg rename to apps/client/src/static/icons/duotone/golf-ball.svg diff --git a/src/static/icons/duotone/golf-club.svg b/apps/client/src/static/icons/duotone/golf-club.svg similarity index 100% rename from src/static/icons/duotone/golf-club.svg rename to apps/client/src/static/icons/duotone/golf-club.svg diff --git a/src/static/icons/duotone/gopuram.svg b/apps/client/src/static/icons/duotone/gopuram.svg similarity index 100% rename from src/static/icons/duotone/gopuram.svg rename to apps/client/src/static/icons/duotone/gopuram.svg diff --git a/src/static/icons/duotone/graduation-cap.svg b/apps/client/src/static/icons/duotone/graduation-cap.svg similarity index 100% rename from src/static/icons/duotone/graduation-cap.svg rename to apps/client/src/static/icons/duotone/graduation-cap.svg diff --git a/src/static/icons/duotone/gramophone.svg b/apps/client/src/static/icons/duotone/gramophone.svg similarity index 100% rename from src/static/icons/duotone/gramophone.svg rename to apps/client/src/static/icons/duotone/gramophone.svg diff --git a/src/static/icons/duotone/greater-than-equal.svg b/apps/client/src/static/icons/duotone/greater-than-equal.svg similarity index 100% rename from src/static/icons/duotone/greater-than-equal.svg rename to apps/client/src/static/icons/duotone/greater-than-equal.svg diff --git a/src/static/icons/duotone/greater-than.svg b/apps/client/src/static/icons/duotone/greater-than.svg similarity index 100% rename from src/static/icons/duotone/greater-than.svg rename to apps/client/src/static/icons/duotone/greater-than.svg diff --git a/src/static/icons/duotone/grimace.svg b/apps/client/src/static/icons/duotone/grimace.svg similarity index 100% rename from src/static/icons/duotone/grimace.svg rename to apps/client/src/static/icons/duotone/grimace.svg diff --git a/src/static/icons/duotone/grin-alt.svg b/apps/client/src/static/icons/duotone/grin-alt.svg similarity index 100% rename from src/static/icons/duotone/grin-alt.svg rename to apps/client/src/static/icons/duotone/grin-alt.svg diff --git a/src/static/icons/duotone/grin-beam-sweat.svg b/apps/client/src/static/icons/duotone/grin-beam-sweat.svg similarity index 100% rename from src/static/icons/duotone/grin-beam-sweat.svg rename to apps/client/src/static/icons/duotone/grin-beam-sweat.svg diff --git a/src/static/icons/duotone/grin-beam.svg b/apps/client/src/static/icons/duotone/grin-beam.svg similarity index 100% rename from src/static/icons/duotone/grin-beam.svg rename to apps/client/src/static/icons/duotone/grin-beam.svg diff --git a/src/static/icons/duotone/grin-hearts.svg b/apps/client/src/static/icons/duotone/grin-hearts.svg similarity index 100% rename from src/static/icons/duotone/grin-hearts.svg rename to apps/client/src/static/icons/duotone/grin-hearts.svg diff --git a/src/static/icons/duotone/grin-squint-tears.svg b/apps/client/src/static/icons/duotone/grin-squint-tears.svg similarity index 100% rename from src/static/icons/duotone/grin-squint-tears.svg rename to apps/client/src/static/icons/duotone/grin-squint-tears.svg diff --git a/src/static/icons/duotone/grin-squint.svg b/apps/client/src/static/icons/duotone/grin-squint.svg similarity index 100% rename from src/static/icons/duotone/grin-squint.svg rename to apps/client/src/static/icons/duotone/grin-squint.svg diff --git a/src/static/icons/duotone/grin-stars.svg b/apps/client/src/static/icons/duotone/grin-stars.svg similarity index 100% rename from src/static/icons/duotone/grin-stars.svg rename to apps/client/src/static/icons/duotone/grin-stars.svg diff --git a/src/static/icons/duotone/grin-tears.svg b/apps/client/src/static/icons/duotone/grin-tears.svg similarity index 100% rename from src/static/icons/duotone/grin-tears.svg rename to apps/client/src/static/icons/duotone/grin-tears.svg diff --git a/src/static/icons/duotone/grin-tongue-squint.svg b/apps/client/src/static/icons/duotone/grin-tongue-squint.svg similarity index 100% rename from src/static/icons/duotone/grin-tongue-squint.svg rename to apps/client/src/static/icons/duotone/grin-tongue-squint.svg diff --git a/src/static/icons/duotone/grin-tongue-wink.svg b/apps/client/src/static/icons/duotone/grin-tongue-wink.svg similarity index 100% rename from src/static/icons/duotone/grin-tongue-wink.svg rename to apps/client/src/static/icons/duotone/grin-tongue-wink.svg diff --git a/src/static/icons/duotone/grin-tongue.svg b/apps/client/src/static/icons/duotone/grin-tongue.svg similarity index 100% rename from src/static/icons/duotone/grin-tongue.svg rename to apps/client/src/static/icons/duotone/grin-tongue.svg diff --git a/src/static/icons/duotone/grin-wink.svg b/apps/client/src/static/icons/duotone/grin-wink.svg similarity index 100% rename from src/static/icons/duotone/grin-wink.svg rename to apps/client/src/static/icons/duotone/grin-wink.svg diff --git a/src/static/icons/duotone/grin.svg b/apps/client/src/static/icons/duotone/grin.svg similarity index 100% rename from src/static/icons/duotone/grin.svg rename to apps/client/src/static/icons/duotone/grin.svg diff --git a/src/static/icons/duotone/grip-horizontal.svg b/apps/client/src/static/icons/duotone/grip-horizontal.svg similarity index 100% rename from src/static/icons/duotone/grip-horizontal.svg rename to apps/client/src/static/icons/duotone/grip-horizontal.svg diff --git a/src/static/icons/duotone/grip-lines-vertical.svg b/apps/client/src/static/icons/duotone/grip-lines-vertical.svg similarity index 100% rename from src/static/icons/duotone/grip-lines-vertical.svg rename to apps/client/src/static/icons/duotone/grip-lines-vertical.svg diff --git a/src/static/icons/duotone/grip-lines.svg b/apps/client/src/static/icons/duotone/grip-lines.svg similarity index 100% rename from src/static/icons/duotone/grip-lines.svg rename to apps/client/src/static/icons/duotone/grip-lines.svg diff --git a/src/static/icons/duotone/grip-vertical.svg b/apps/client/src/static/icons/duotone/grip-vertical.svg similarity index 100% rename from src/static/icons/duotone/grip-vertical.svg rename to apps/client/src/static/icons/duotone/grip-vertical.svg diff --git a/src/static/icons/duotone/guitar-electric.svg b/apps/client/src/static/icons/duotone/guitar-electric.svg similarity index 100% rename from src/static/icons/duotone/guitar-electric.svg rename to apps/client/src/static/icons/duotone/guitar-electric.svg diff --git a/src/static/icons/duotone/guitar.svg b/apps/client/src/static/icons/duotone/guitar.svg similarity index 100% rename from src/static/icons/duotone/guitar.svg rename to apps/client/src/static/icons/duotone/guitar.svg diff --git a/src/static/icons/duotone/guitars.svg b/apps/client/src/static/icons/duotone/guitars.svg similarity index 100% rename from src/static/icons/duotone/guitars.svg rename to apps/client/src/static/icons/duotone/guitars.svg diff --git a/src/static/icons/duotone/h-square.svg b/apps/client/src/static/icons/duotone/h-square.svg similarity index 100% rename from src/static/icons/duotone/h-square.svg rename to apps/client/src/static/icons/duotone/h-square.svg diff --git a/src/static/icons/duotone/h1.svg b/apps/client/src/static/icons/duotone/h1.svg similarity index 100% rename from src/static/icons/duotone/h1.svg rename to apps/client/src/static/icons/duotone/h1.svg diff --git a/src/static/icons/duotone/h2.svg b/apps/client/src/static/icons/duotone/h2.svg similarity index 100% rename from src/static/icons/duotone/h2.svg rename to apps/client/src/static/icons/duotone/h2.svg diff --git a/src/static/icons/duotone/h3.svg b/apps/client/src/static/icons/duotone/h3.svg similarity index 100% rename from src/static/icons/duotone/h3.svg rename to apps/client/src/static/icons/duotone/h3.svg diff --git a/src/static/icons/duotone/h4.svg b/apps/client/src/static/icons/duotone/h4.svg similarity index 100% rename from src/static/icons/duotone/h4.svg rename to apps/client/src/static/icons/duotone/h4.svg diff --git a/src/static/icons/duotone/hamburger.svg b/apps/client/src/static/icons/duotone/hamburger.svg similarity index 100% rename from src/static/icons/duotone/hamburger.svg rename to apps/client/src/static/icons/duotone/hamburger.svg diff --git a/src/static/icons/duotone/hammer-war.svg b/apps/client/src/static/icons/duotone/hammer-war.svg similarity index 100% rename from src/static/icons/duotone/hammer-war.svg rename to apps/client/src/static/icons/duotone/hammer-war.svg diff --git a/src/static/icons/duotone/hammer.svg b/apps/client/src/static/icons/duotone/hammer.svg similarity index 100% rename from src/static/icons/duotone/hammer.svg rename to apps/client/src/static/icons/duotone/hammer.svg diff --git a/src/static/icons/duotone/hamsa.svg b/apps/client/src/static/icons/duotone/hamsa.svg similarity index 100% rename from src/static/icons/duotone/hamsa.svg rename to apps/client/src/static/icons/duotone/hamsa.svg diff --git a/src/static/icons/duotone/hand-heart.svg b/apps/client/src/static/icons/duotone/hand-heart.svg similarity index 100% rename from src/static/icons/duotone/hand-heart.svg rename to apps/client/src/static/icons/duotone/hand-heart.svg diff --git a/src/static/icons/duotone/hand-holding-box.svg b/apps/client/src/static/icons/duotone/hand-holding-box.svg similarity index 100% rename from src/static/icons/duotone/hand-holding-box.svg rename to apps/client/src/static/icons/duotone/hand-holding-box.svg diff --git a/src/static/icons/duotone/hand-holding-heart.svg b/apps/client/src/static/icons/duotone/hand-holding-heart.svg similarity index 100% rename from src/static/icons/duotone/hand-holding-heart.svg rename to apps/client/src/static/icons/duotone/hand-holding-heart.svg diff --git a/src/static/icons/duotone/hand-holding-magic.svg b/apps/client/src/static/icons/duotone/hand-holding-magic.svg similarity index 100% rename from src/static/icons/duotone/hand-holding-magic.svg rename to apps/client/src/static/icons/duotone/hand-holding-magic.svg diff --git a/src/static/icons/duotone/hand-holding-seedling.svg b/apps/client/src/static/icons/duotone/hand-holding-seedling.svg similarity index 100% rename from src/static/icons/duotone/hand-holding-seedling.svg rename to apps/client/src/static/icons/duotone/hand-holding-seedling.svg diff --git a/src/static/icons/duotone/hand-holding-usd.svg b/apps/client/src/static/icons/duotone/hand-holding-usd.svg similarity index 100% rename from src/static/icons/duotone/hand-holding-usd.svg rename to apps/client/src/static/icons/duotone/hand-holding-usd.svg diff --git a/src/static/icons/duotone/hand-holding-water.svg b/apps/client/src/static/icons/duotone/hand-holding-water.svg similarity index 100% rename from src/static/icons/duotone/hand-holding-water.svg rename to apps/client/src/static/icons/duotone/hand-holding-water.svg diff --git a/src/static/icons/duotone/hand-holding.svg b/apps/client/src/static/icons/duotone/hand-holding.svg similarity index 100% rename from src/static/icons/duotone/hand-holding.svg rename to apps/client/src/static/icons/duotone/hand-holding.svg diff --git a/src/static/icons/duotone/hand-lizard.svg b/apps/client/src/static/icons/duotone/hand-lizard.svg similarity index 100% rename from src/static/icons/duotone/hand-lizard.svg rename to apps/client/src/static/icons/duotone/hand-lizard.svg diff --git a/src/static/icons/duotone/hand-middle-finger.svg b/apps/client/src/static/icons/duotone/hand-middle-finger.svg similarity index 100% rename from src/static/icons/duotone/hand-middle-finger.svg rename to apps/client/src/static/icons/duotone/hand-middle-finger.svg diff --git a/src/static/icons/duotone/hand-paper.svg b/apps/client/src/static/icons/duotone/hand-paper.svg similarity index 100% rename from src/static/icons/duotone/hand-paper.svg rename to apps/client/src/static/icons/duotone/hand-paper.svg diff --git a/src/static/icons/duotone/hand-peace.svg b/apps/client/src/static/icons/duotone/hand-peace.svg similarity index 100% rename from src/static/icons/duotone/hand-peace.svg rename to apps/client/src/static/icons/duotone/hand-peace.svg diff --git a/src/static/icons/duotone/hand-point-down.svg b/apps/client/src/static/icons/duotone/hand-point-down.svg similarity index 100% rename from src/static/icons/duotone/hand-point-down.svg rename to apps/client/src/static/icons/duotone/hand-point-down.svg diff --git a/src/static/icons/duotone/hand-point-left.svg b/apps/client/src/static/icons/duotone/hand-point-left.svg similarity index 100% rename from src/static/icons/duotone/hand-point-left.svg rename to apps/client/src/static/icons/duotone/hand-point-left.svg diff --git a/src/static/icons/duotone/hand-point-right.svg b/apps/client/src/static/icons/duotone/hand-point-right.svg similarity index 100% rename from src/static/icons/duotone/hand-point-right.svg rename to apps/client/src/static/icons/duotone/hand-point-right.svg diff --git a/src/static/icons/duotone/hand-point-up.svg b/apps/client/src/static/icons/duotone/hand-point-up.svg similarity index 100% rename from src/static/icons/duotone/hand-point-up.svg rename to apps/client/src/static/icons/duotone/hand-point-up.svg diff --git a/src/static/icons/duotone/hand-pointer.svg b/apps/client/src/static/icons/duotone/hand-pointer.svg similarity index 100% rename from src/static/icons/duotone/hand-pointer.svg rename to apps/client/src/static/icons/duotone/hand-pointer.svg diff --git a/src/static/icons/duotone/hand-receiving.svg b/apps/client/src/static/icons/duotone/hand-receiving.svg similarity index 100% rename from src/static/icons/duotone/hand-receiving.svg rename to apps/client/src/static/icons/duotone/hand-receiving.svg diff --git a/src/static/icons/duotone/hand-rock.svg b/apps/client/src/static/icons/duotone/hand-rock.svg similarity index 100% rename from src/static/icons/duotone/hand-rock.svg rename to apps/client/src/static/icons/duotone/hand-rock.svg diff --git a/src/static/icons/duotone/hand-scissors.svg b/apps/client/src/static/icons/duotone/hand-scissors.svg similarity index 100% rename from src/static/icons/duotone/hand-scissors.svg rename to apps/client/src/static/icons/duotone/hand-scissors.svg diff --git a/src/static/icons/duotone/hand-spock.svg b/apps/client/src/static/icons/duotone/hand-spock.svg similarity index 100% rename from src/static/icons/duotone/hand-spock.svg rename to apps/client/src/static/icons/duotone/hand-spock.svg diff --git a/src/static/icons/duotone/hands-heart.svg b/apps/client/src/static/icons/duotone/hands-heart.svg similarity index 100% rename from src/static/icons/duotone/hands-heart.svg rename to apps/client/src/static/icons/duotone/hands-heart.svg diff --git a/src/static/icons/duotone/hands-helping.svg b/apps/client/src/static/icons/duotone/hands-helping.svg similarity index 100% rename from src/static/icons/duotone/hands-helping.svg rename to apps/client/src/static/icons/duotone/hands-helping.svg diff --git a/src/static/icons/duotone/hands-usd.svg b/apps/client/src/static/icons/duotone/hands-usd.svg similarity index 100% rename from src/static/icons/duotone/hands-usd.svg rename to apps/client/src/static/icons/duotone/hands-usd.svg diff --git a/src/static/icons/duotone/hands.svg b/apps/client/src/static/icons/duotone/hands.svg similarity index 100% rename from src/static/icons/duotone/hands.svg rename to apps/client/src/static/icons/duotone/hands.svg diff --git a/src/static/icons/duotone/handshake-alt.svg b/apps/client/src/static/icons/duotone/handshake-alt.svg similarity index 100% rename from src/static/icons/duotone/handshake-alt.svg rename to apps/client/src/static/icons/duotone/handshake-alt.svg diff --git a/src/static/icons/duotone/handshake.svg b/apps/client/src/static/icons/duotone/handshake.svg similarity index 100% rename from src/static/icons/duotone/handshake.svg rename to apps/client/src/static/icons/duotone/handshake.svg diff --git a/src/static/icons/duotone/hanukiah.svg b/apps/client/src/static/icons/duotone/hanukiah.svg similarity index 100% rename from src/static/icons/duotone/hanukiah.svg rename to apps/client/src/static/icons/duotone/hanukiah.svg diff --git a/src/static/icons/duotone/hard-hat.svg b/apps/client/src/static/icons/duotone/hard-hat.svg similarity index 100% rename from src/static/icons/duotone/hard-hat.svg rename to apps/client/src/static/icons/duotone/hard-hat.svg diff --git a/src/static/icons/duotone/hashtag.svg b/apps/client/src/static/icons/duotone/hashtag.svg similarity index 100% rename from src/static/icons/duotone/hashtag.svg rename to apps/client/src/static/icons/duotone/hashtag.svg diff --git a/src/static/icons/duotone/hat-chef.svg b/apps/client/src/static/icons/duotone/hat-chef.svg similarity index 100% rename from src/static/icons/duotone/hat-chef.svg rename to apps/client/src/static/icons/duotone/hat-chef.svg diff --git a/src/static/icons/duotone/hat-cowboy-side.svg b/apps/client/src/static/icons/duotone/hat-cowboy-side.svg similarity index 100% rename from src/static/icons/duotone/hat-cowboy-side.svg rename to apps/client/src/static/icons/duotone/hat-cowboy-side.svg diff --git a/src/static/icons/duotone/hat-cowboy.svg b/apps/client/src/static/icons/duotone/hat-cowboy.svg similarity index 100% rename from src/static/icons/duotone/hat-cowboy.svg rename to apps/client/src/static/icons/duotone/hat-cowboy.svg diff --git a/src/static/icons/duotone/hat-santa.svg b/apps/client/src/static/icons/duotone/hat-santa.svg similarity index 100% rename from src/static/icons/duotone/hat-santa.svg rename to apps/client/src/static/icons/duotone/hat-santa.svg diff --git a/src/static/icons/duotone/hat-winter.svg b/apps/client/src/static/icons/duotone/hat-winter.svg similarity index 100% rename from src/static/icons/duotone/hat-winter.svg rename to apps/client/src/static/icons/duotone/hat-winter.svg diff --git a/src/static/icons/duotone/hat-witch.svg b/apps/client/src/static/icons/duotone/hat-witch.svg similarity index 100% rename from src/static/icons/duotone/hat-witch.svg rename to apps/client/src/static/icons/duotone/hat-witch.svg diff --git a/src/static/icons/duotone/hat-wizard.svg b/apps/client/src/static/icons/duotone/hat-wizard.svg similarity index 100% rename from src/static/icons/duotone/hat-wizard.svg rename to apps/client/src/static/icons/duotone/hat-wizard.svg diff --git a/src/static/icons/duotone/hdd.svg b/apps/client/src/static/icons/duotone/hdd.svg similarity index 100% rename from src/static/icons/duotone/hdd.svg rename to apps/client/src/static/icons/duotone/hdd.svg diff --git a/src/static/icons/duotone/head-side-brain.svg b/apps/client/src/static/icons/duotone/head-side-brain.svg similarity index 100% rename from src/static/icons/duotone/head-side-brain.svg rename to apps/client/src/static/icons/duotone/head-side-brain.svg diff --git a/src/static/icons/duotone/head-side-headphones.svg b/apps/client/src/static/icons/duotone/head-side-headphones.svg similarity index 100% rename from src/static/icons/duotone/head-side-headphones.svg rename to apps/client/src/static/icons/duotone/head-side-headphones.svg diff --git a/src/static/icons/duotone/head-side-medical.svg b/apps/client/src/static/icons/duotone/head-side-medical.svg similarity index 100% rename from src/static/icons/duotone/head-side-medical.svg rename to apps/client/src/static/icons/duotone/head-side-medical.svg diff --git a/src/static/icons/duotone/head-side.svg b/apps/client/src/static/icons/duotone/head-side.svg similarity index 100% rename from src/static/icons/duotone/head-side.svg rename to apps/client/src/static/icons/duotone/head-side.svg diff --git a/src/static/icons/duotone/head-vr.svg b/apps/client/src/static/icons/duotone/head-vr.svg similarity index 100% rename from src/static/icons/duotone/head-vr.svg rename to apps/client/src/static/icons/duotone/head-vr.svg diff --git a/src/static/icons/duotone/heading.svg b/apps/client/src/static/icons/duotone/heading.svg similarity index 100% rename from src/static/icons/duotone/heading.svg rename to apps/client/src/static/icons/duotone/heading.svg diff --git a/src/static/icons/duotone/headphones-alt.svg b/apps/client/src/static/icons/duotone/headphones-alt.svg similarity index 100% rename from src/static/icons/duotone/headphones-alt.svg rename to apps/client/src/static/icons/duotone/headphones-alt.svg diff --git a/src/static/icons/duotone/headphones.svg b/apps/client/src/static/icons/duotone/headphones.svg similarity index 100% rename from src/static/icons/duotone/headphones.svg rename to apps/client/src/static/icons/duotone/headphones.svg diff --git a/src/static/icons/duotone/headset.svg b/apps/client/src/static/icons/duotone/headset.svg similarity index 100% rename from src/static/icons/duotone/headset.svg rename to apps/client/src/static/icons/duotone/headset.svg diff --git a/src/static/icons/duotone/heart-broken.svg b/apps/client/src/static/icons/duotone/heart-broken.svg similarity index 100% rename from src/static/icons/duotone/heart-broken.svg rename to apps/client/src/static/icons/duotone/heart-broken.svg diff --git a/src/static/icons/duotone/heart-circle.svg b/apps/client/src/static/icons/duotone/heart-circle.svg similarity index 100% rename from src/static/icons/duotone/heart-circle.svg rename to apps/client/src/static/icons/duotone/heart-circle.svg diff --git a/src/static/icons/duotone/heart-rate.svg b/apps/client/src/static/icons/duotone/heart-rate.svg similarity index 100% rename from src/static/icons/duotone/heart-rate.svg rename to apps/client/src/static/icons/duotone/heart-rate.svg diff --git a/src/static/icons/duotone/heart-square.svg b/apps/client/src/static/icons/duotone/heart-square.svg similarity index 100% rename from src/static/icons/duotone/heart-square.svg rename to apps/client/src/static/icons/duotone/heart-square.svg diff --git a/src/static/icons/duotone/heart.svg b/apps/client/src/static/icons/duotone/heart.svg similarity index 100% rename from src/static/icons/duotone/heart.svg rename to apps/client/src/static/icons/duotone/heart.svg diff --git a/src/static/icons/duotone/heartbeat.svg b/apps/client/src/static/icons/duotone/heartbeat.svg similarity index 100% rename from src/static/icons/duotone/heartbeat.svg rename to apps/client/src/static/icons/duotone/heartbeat.svg diff --git a/src/static/icons/duotone/heat.svg b/apps/client/src/static/icons/duotone/heat.svg similarity index 100% rename from src/static/icons/duotone/heat.svg rename to apps/client/src/static/icons/duotone/heat.svg diff --git a/src/static/icons/duotone/helicopter.svg b/apps/client/src/static/icons/duotone/helicopter.svg similarity index 100% rename from src/static/icons/duotone/helicopter.svg rename to apps/client/src/static/icons/duotone/helicopter.svg diff --git a/src/static/icons/duotone/helmet-battle.svg b/apps/client/src/static/icons/duotone/helmet-battle.svg similarity index 100% rename from src/static/icons/duotone/helmet-battle.svg rename to apps/client/src/static/icons/duotone/helmet-battle.svg diff --git a/src/static/icons/duotone/hexagon.svg b/apps/client/src/static/icons/duotone/hexagon.svg similarity index 100% rename from src/static/icons/duotone/hexagon.svg rename to apps/client/src/static/icons/duotone/hexagon.svg diff --git a/src/static/icons/duotone/highlighter.svg b/apps/client/src/static/icons/duotone/highlighter.svg similarity index 100% rename from src/static/icons/duotone/highlighter.svg rename to apps/client/src/static/icons/duotone/highlighter.svg diff --git a/src/static/icons/duotone/hiking.svg b/apps/client/src/static/icons/duotone/hiking.svg similarity index 100% rename from src/static/icons/duotone/hiking.svg rename to apps/client/src/static/icons/duotone/hiking.svg diff --git a/src/static/icons/duotone/hippo.svg b/apps/client/src/static/icons/duotone/hippo.svg similarity index 100% rename from src/static/icons/duotone/hippo.svg rename to apps/client/src/static/icons/duotone/hippo.svg diff --git a/src/static/icons/duotone/history.svg b/apps/client/src/static/icons/duotone/history.svg similarity index 100% rename from src/static/icons/duotone/history.svg rename to apps/client/src/static/icons/duotone/history.svg diff --git a/src/static/icons/duotone/hockey-mask.svg b/apps/client/src/static/icons/duotone/hockey-mask.svg similarity index 100% rename from src/static/icons/duotone/hockey-mask.svg rename to apps/client/src/static/icons/duotone/hockey-mask.svg diff --git a/src/static/icons/duotone/hockey-puck.svg b/apps/client/src/static/icons/duotone/hockey-puck.svg similarity index 100% rename from src/static/icons/duotone/hockey-puck.svg rename to apps/client/src/static/icons/duotone/hockey-puck.svg diff --git a/src/static/icons/duotone/hockey-sticks.svg b/apps/client/src/static/icons/duotone/hockey-sticks.svg similarity index 100% rename from src/static/icons/duotone/hockey-sticks.svg rename to apps/client/src/static/icons/duotone/hockey-sticks.svg diff --git a/src/static/icons/duotone/holly-berry.svg b/apps/client/src/static/icons/duotone/holly-berry.svg similarity index 100% rename from src/static/icons/duotone/holly-berry.svg rename to apps/client/src/static/icons/duotone/holly-berry.svg diff --git a/src/static/icons/duotone/home-alt.svg b/apps/client/src/static/icons/duotone/home-alt.svg similarity index 100% rename from src/static/icons/duotone/home-alt.svg rename to apps/client/src/static/icons/duotone/home-alt.svg diff --git a/src/static/icons/duotone/home-heart.svg b/apps/client/src/static/icons/duotone/home-heart.svg similarity index 100% rename from src/static/icons/duotone/home-heart.svg rename to apps/client/src/static/icons/duotone/home-heart.svg diff --git a/src/static/icons/duotone/home-lg-alt.svg b/apps/client/src/static/icons/duotone/home-lg-alt.svg similarity index 100% rename from src/static/icons/duotone/home-lg-alt.svg rename to apps/client/src/static/icons/duotone/home-lg-alt.svg diff --git a/src/static/icons/duotone/home-lg.svg b/apps/client/src/static/icons/duotone/home-lg.svg similarity index 100% rename from src/static/icons/duotone/home-lg.svg rename to apps/client/src/static/icons/duotone/home-lg.svg diff --git a/src/static/icons/duotone/home.svg b/apps/client/src/static/icons/duotone/home.svg similarity index 100% rename from src/static/icons/duotone/home.svg rename to apps/client/src/static/icons/duotone/home.svg diff --git a/src/static/icons/duotone/hood-cloak.svg b/apps/client/src/static/icons/duotone/hood-cloak.svg similarity index 100% rename from src/static/icons/duotone/hood-cloak.svg rename to apps/client/src/static/icons/duotone/hood-cloak.svg diff --git a/src/static/icons/duotone/horizontal-rule.svg b/apps/client/src/static/icons/duotone/horizontal-rule.svg similarity index 100% rename from src/static/icons/duotone/horizontal-rule.svg rename to apps/client/src/static/icons/duotone/horizontal-rule.svg diff --git a/src/static/icons/duotone/horse-head.svg b/apps/client/src/static/icons/duotone/horse-head.svg similarity index 100% rename from src/static/icons/duotone/horse-head.svg rename to apps/client/src/static/icons/duotone/horse-head.svg diff --git a/src/static/icons/duotone/horse-saddle.svg b/apps/client/src/static/icons/duotone/horse-saddle.svg similarity index 100% rename from src/static/icons/duotone/horse-saddle.svg rename to apps/client/src/static/icons/duotone/horse-saddle.svg diff --git a/src/static/icons/duotone/horse.svg b/apps/client/src/static/icons/duotone/horse.svg similarity index 100% rename from src/static/icons/duotone/horse.svg rename to apps/client/src/static/icons/duotone/horse.svg diff --git a/src/static/icons/duotone/hospital-alt.svg b/apps/client/src/static/icons/duotone/hospital-alt.svg similarity index 100% rename from src/static/icons/duotone/hospital-alt.svg rename to apps/client/src/static/icons/duotone/hospital-alt.svg diff --git a/src/static/icons/duotone/hospital-symbol.svg b/apps/client/src/static/icons/duotone/hospital-symbol.svg similarity index 100% rename from src/static/icons/duotone/hospital-symbol.svg rename to apps/client/src/static/icons/duotone/hospital-symbol.svg diff --git a/src/static/icons/duotone/hospital-user.svg b/apps/client/src/static/icons/duotone/hospital-user.svg similarity index 100% rename from src/static/icons/duotone/hospital-user.svg rename to apps/client/src/static/icons/duotone/hospital-user.svg diff --git a/src/static/icons/duotone/hospital.svg b/apps/client/src/static/icons/duotone/hospital.svg similarity index 100% rename from src/static/icons/duotone/hospital.svg rename to apps/client/src/static/icons/duotone/hospital.svg diff --git a/src/static/icons/duotone/hospitals.svg b/apps/client/src/static/icons/duotone/hospitals.svg similarity index 100% rename from src/static/icons/duotone/hospitals.svg rename to apps/client/src/static/icons/duotone/hospitals.svg diff --git a/src/static/icons/duotone/hot-tub.svg b/apps/client/src/static/icons/duotone/hot-tub.svg similarity index 100% rename from src/static/icons/duotone/hot-tub.svg rename to apps/client/src/static/icons/duotone/hot-tub.svg diff --git a/src/static/icons/duotone/hotdog.svg b/apps/client/src/static/icons/duotone/hotdog.svg similarity index 100% rename from src/static/icons/duotone/hotdog.svg rename to apps/client/src/static/icons/duotone/hotdog.svg diff --git a/src/static/icons/duotone/hotel.svg b/apps/client/src/static/icons/duotone/hotel.svg similarity index 100% rename from src/static/icons/duotone/hotel.svg rename to apps/client/src/static/icons/duotone/hotel.svg diff --git a/src/static/icons/duotone/hourglass-end.svg b/apps/client/src/static/icons/duotone/hourglass-end.svg similarity index 100% rename from src/static/icons/duotone/hourglass-end.svg rename to apps/client/src/static/icons/duotone/hourglass-end.svg diff --git a/src/static/icons/duotone/hourglass-half.svg b/apps/client/src/static/icons/duotone/hourglass-half.svg similarity index 100% rename from src/static/icons/duotone/hourglass-half.svg rename to apps/client/src/static/icons/duotone/hourglass-half.svg diff --git a/src/static/icons/duotone/hourglass-start.svg b/apps/client/src/static/icons/duotone/hourglass-start.svg similarity index 100% rename from src/static/icons/duotone/hourglass-start.svg rename to apps/client/src/static/icons/duotone/hourglass-start.svg diff --git a/src/static/icons/duotone/hourglass.svg b/apps/client/src/static/icons/duotone/hourglass.svg similarity index 100% rename from src/static/icons/duotone/hourglass.svg rename to apps/client/src/static/icons/duotone/hourglass.svg diff --git a/src/static/icons/duotone/house-damage.svg b/apps/client/src/static/icons/duotone/house-damage.svg similarity index 100% rename from src/static/icons/duotone/house-damage.svg rename to apps/client/src/static/icons/duotone/house-damage.svg diff --git a/src/static/icons/duotone/house-day.svg b/apps/client/src/static/icons/duotone/house-day.svg similarity index 100% rename from src/static/icons/duotone/house-day.svg rename to apps/client/src/static/icons/duotone/house-day.svg diff --git a/src/static/icons/duotone/house-flood.svg b/apps/client/src/static/icons/duotone/house-flood.svg similarity index 100% rename from src/static/icons/duotone/house-flood.svg rename to apps/client/src/static/icons/duotone/house-flood.svg diff --git a/src/static/icons/duotone/house-leave.svg b/apps/client/src/static/icons/duotone/house-leave.svg similarity index 100% rename from src/static/icons/duotone/house-leave.svg rename to apps/client/src/static/icons/duotone/house-leave.svg diff --git a/src/static/icons/duotone/house-night.svg b/apps/client/src/static/icons/duotone/house-night.svg similarity index 100% rename from src/static/icons/duotone/house-night.svg rename to apps/client/src/static/icons/duotone/house-night.svg diff --git a/src/static/icons/duotone/house-return.svg b/apps/client/src/static/icons/duotone/house-return.svg similarity index 100% rename from src/static/icons/duotone/house-return.svg rename to apps/client/src/static/icons/duotone/house-return.svg diff --git a/src/static/icons/duotone/house-signal.svg b/apps/client/src/static/icons/duotone/house-signal.svg similarity index 100% rename from src/static/icons/duotone/house-signal.svg rename to apps/client/src/static/icons/duotone/house-signal.svg diff --git a/src/static/icons/duotone/house.svg b/apps/client/src/static/icons/duotone/house.svg similarity index 100% rename from src/static/icons/duotone/house.svg rename to apps/client/src/static/icons/duotone/house.svg diff --git a/src/static/icons/duotone/hryvnia.svg b/apps/client/src/static/icons/duotone/hryvnia.svg similarity index 100% rename from src/static/icons/duotone/hryvnia.svg rename to apps/client/src/static/icons/duotone/hryvnia.svg diff --git a/src/static/icons/duotone/humidity.svg b/apps/client/src/static/icons/duotone/humidity.svg similarity index 100% rename from src/static/icons/duotone/humidity.svg rename to apps/client/src/static/icons/duotone/humidity.svg diff --git a/src/static/icons/duotone/hurricane.svg b/apps/client/src/static/icons/duotone/hurricane.svg similarity index 100% rename from src/static/icons/duotone/hurricane.svg rename to apps/client/src/static/icons/duotone/hurricane.svg diff --git a/src/static/icons/duotone/i-cursor.svg b/apps/client/src/static/icons/duotone/i-cursor.svg similarity index 100% rename from src/static/icons/duotone/i-cursor.svg rename to apps/client/src/static/icons/duotone/i-cursor.svg diff --git a/src/static/icons/duotone/ice-cream.svg b/apps/client/src/static/icons/duotone/ice-cream.svg similarity index 100% rename from src/static/icons/duotone/ice-cream.svg rename to apps/client/src/static/icons/duotone/ice-cream.svg diff --git a/src/static/icons/duotone/ice-skate.svg b/apps/client/src/static/icons/duotone/ice-skate.svg similarity index 100% rename from src/static/icons/duotone/ice-skate.svg rename to apps/client/src/static/icons/duotone/ice-skate.svg diff --git a/src/static/icons/duotone/icicles.svg b/apps/client/src/static/icons/duotone/icicles.svg similarity index 100% rename from src/static/icons/duotone/icicles.svg rename to apps/client/src/static/icons/duotone/icicles.svg diff --git a/src/static/icons/duotone/icons-alt.svg b/apps/client/src/static/icons/duotone/icons-alt.svg similarity index 100% rename from src/static/icons/duotone/icons-alt.svg rename to apps/client/src/static/icons/duotone/icons-alt.svg diff --git a/src/static/icons/duotone/icons.svg b/apps/client/src/static/icons/duotone/icons.svg similarity index 100% rename from src/static/icons/duotone/icons.svg rename to apps/client/src/static/icons/duotone/icons.svg diff --git a/src/static/icons/duotone/id-badge.svg b/apps/client/src/static/icons/duotone/id-badge.svg similarity index 100% rename from src/static/icons/duotone/id-badge.svg rename to apps/client/src/static/icons/duotone/id-badge.svg diff --git a/src/static/icons/duotone/id-card-alt.svg b/apps/client/src/static/icons/duotone/id-card-alt.svg similarity index 100% rename from src/static/icons/duotone/id-card-alt.svg rename to apps/client/src/static/icons/duotone/id-card-alt.svg diff --git a/src/static/icons/duotone/id-card.svg b/apps/client/src/static/icons/duotone/id-card.svg similarity index 100% rename from src/static/icons/duotone/id-card.svg rename to apps/client/src/static/icons/duotone/id-card.svg diff --git a/src/static/icons/duotone/igloo.svg b/apps/client/src/static/icons/duotone/igloo.svg similarity index 100% rename from src/static/icons/duotone/igloo.svg rename to apps/client/src/static/icons/duotone/igloo.svg diff --git a/src/static/icons/duotone/image-polaroid.svg b/apps/client/src/static/icons/duotone/image-polaroid.svg similarity index 100% rename from src/static/icons/duotone/image-polaroid.svg rename to apps/client/src/static/icons/duotone/image-polaroid.svg diff --git a/src/static/icons/duotone/image.svg b/apps/client/src/static/icons/duotone/image.svg similarity index 100% rename from src/static/icons/duotone/image.svg rename to apps/client/src/static/icons/duotone/image.svg diff --git a/src/static/icons/duotone/images.svg b/apps/client/src/static/icons/duotone/images.svg similarity index 100% rename from src/static/icons/duotone/images.svg rename to apps/client/src/static/icons/duotone/images.svg diff --git a/src/static/icons/duotone/inbox-in.svg b/apps/client/src/static/icons/duotone/inbox-in.svg similarity index 100% rename from src/static/icons/duotone/inbox-in.svg rename to apps/client/src/static/icons/duotone/inbox-in.svg diff --git a/src/static/icons/duotone/inbox-out.svg b/apps/client/src/static/icons/duotone/inbox-out.svg similarity index 100% rename from src/static/icons/duotone/inbox-out.svg rename to apps/client/src/static/icons/duotone/inbox-out.svg diff --git a/src/static/icons/duotone/inbox.svg b/apps/client/src/static/icons/duotone/inbox.svg similarity index 100% rename from src/static/icons/duotone/inbox.svg rename to apps/client/src/static/icons/duotone/inbox.svg diff --git a/src/static/icons/duotone/indent.svg b/apps/client/src/static/icons/duotone/indent.svg similarity index 100% rename from src/static/icons/duotone/indent.svg rename to apps/client/src/static/icons/duotone/indent.svg diff --git a/src/static/icons/duotone/industry-alt.svg b/apps/client/src/static/icons/duotone/industry-alt.svg similarity index 100% rename from src/static/icons/duotone/industry-alt.svg rename to apps/client/src/static/icons/duotone/industry-alt.svg diff --git a/src/static/icons/duotone/industry.svg b/apps/client/src/static/icons/duotone/industry.svg similarity index 100% rename from src/static/icons/duotone/industry.svg rename to apps/client/src/static/icons/duotone/industry.svg diff --git a/src/static/icons/duotone/infinity.svg b/apps/client/src/static/icons/duotone/infinity.svg similarity index 100% rename from src/static/icons/duotone/infinity.svg rename to apps/client/src/static/icons/duotone/infinity.svg diff --git a/src/static/icons/duotone/info-circle.svg b/apps/client/src/static/icons/duotone/info-circle.svg similarity index 100% rename from src/static/icons/duotone/info-circle.svg rename to apps/client/src/static/icons/duotone/info-circle.svg diff --git a/src/static/icons/duotone/info-square.svg b/apps/client/src/static/icons/duotone/info-square.svg similarity index 100% rename from src/static/icons/duotone/info-square.svg rename to apps/client/src/static/icons/duotone/info-square.svg diff --git a/src/static/icons/duotone/info.svg b/apps/client/src/static/icons/duotone/info.svg similarity index 100% rename from src/static/icons/duotone/info.svg rename to apps/client/src/static/icons/duotone/info.svg diff --git a/src/static/icons/duotone/inhaler.svg b/apps/client/src/static/icons/duotone/inhaler.svg similarity index 100% rename from src/static/icons/duotone/inhaler.svg rename to apps/client/src/static/icons/duotone/inhaler.svg diff --git a/src/static/icons/duotone/integral.svg b/apps/client/src/static/icons/duotone/integral.svg similarity index 100% rename from src/static/icons/duotone/integral.svg rename to apps/client/src/static/icons/duotone/integral.svg diff --git a/src/static/icons/duotone/intersection.svg b/apps/client/src/static/icons/duotone/intersection.svg similarity index 100% rename from src/static/icons/duotone/intersection.svg rename to apps/client/src/static/icons/duotone/intersection.svg diff --git a/src/static/icons/duotone/inventory.svg b/apps/client/src/static/icons/duotone/inventory.svg similarity index 100% rename from src/static/icons/duotone/inventory.svg rename to apps/client/src/static/icons/duotone/inventory.svg diff --git a/src/static/icons/duotone/island-tropical.svg b/apps/client/src/static/icons/duotone/island-tropical.svg similarity index 100% rename from src/static/icons/duotone/island-tropical.svg rename to apps/client/src/static/icons/duotone/island-tropical.svg diff --git a/src/static/icons/duotone/italic.svg b/apps/client/src/static/icons/duotone/italic.svg similarity index 100% rename from src/static/icons/duotone/italic.svg rename to apps/client/src/static/icons/duotone/italic.svg diff --git a/src/static/icons/duotone/jack-o-lantern.svg b/apps/client/src/static/icons/duotone/jack-o-lantern.svg similarity index 100% rename from src/static/icons/duotone/jack-o-lantern.svg rename to apps/client/src/static/icons/duotone/jack-o-lantern.svg diff --git a/src/static/icons/duotone/jedi.svg b/apps/client/src/static/icons/duotone/jedi.svg similarity index 100% rename from src/static/icons/duotone/jedi.svg rename to apps/client/src/static/icons/duotone/jedi.svg diff --git a/src/static/icons/duotone/joint.svg b/apps/client/src/static/icons/duotone/joint.svg similarity index 100% rename from src/static/icons/duotone/joint.svg rename to apps/client/src/static/icons/duotone/joint.svg diff --git a/src/static/icons/duotone/journal-whills.svg b/apps/client/src/static/icons/duotone/journal-whills.svg similarity index 100% rename from src/static/icons/duotone/journal-whills.svg rename to apps/client/src/static/icons/duotone/journal-whills.svg diff --git a/src/static/icons/duotone/joystick.svg b/apps/client/src/static/icons/duotone/joystick.svg similarity index 100% rename from src/static/icons/duotone/joystick.svg rename to apps/client/src/static/icons/duotone/joystick.svg diff --git a/src/static/icons/duotone/jug.svg b/apps/client/src/static/icons/duotone/jug.svg similarity index 100% rename from src/static/icons/duotone/jug.svg rename to apps/client/src/static/icons/duotone/jug.svg diff --git a/src/static/icons/duotone/kaaba.svg b/apps/client/src/static/icons/duotone/kaaba.svg similarity index 100% rename from src/static/icons/duotone/kaaba.svg rename to apps/client/src/static/icons/duotone/kaaba.svg diff --git a/src/static/icons/duotone/kazoo.svg b/apps/client/src/static/icons/duotone/kazoo.svg similarity index 100% rename from src/static/icons/duotone/kazoo.svg rename to apps/client/src/static/icons/duotone/kazoo.svg diff --git a/src/static/icons/duotone/kerning.svg b/apps/client/src/static/icons/duotone/kerning.svg similarity index 100% rename from src/static/icons/duotone/kerning.svg rename to apps/client/src/static/icons/duotone/kerning.svg diff --git a/src/static/icons/duotone/key-skeleton.svg b/apps/client/src/static/icons/duotone/key-skeleton.svg similarity index 100% rename from src/static/icons/duotone/key-skeleton.svg rename to apps/client/src/static/icons/duotone/key-skeleton.svg diff --git a/src/static/icons/duotone/key.svg b/apps/client/src/static/icons/duotone/key.svg similarity index 100% rename from src/static/icons/duotone/key.svg rename to apps/client/src/static/icons/duotone/key.svg diff --git a/src/static/icons/duotone/keyboard.svg b/apps/client/src/static/icons/duotone/keyboard.svg similarity index 100% rename from src/static/icons/duotone/keyboard.svg rename to apps/client/src/static/icons/duotone/keyboard.svg diff --git a/src/static/icons/duotone/keynote.svg b/apps/client/src/static/icons/duotone/keynote.svg similarity index 100% rename from src/static/icons/duotone/keynote.svg rename to apps/client/src/static/icons/duotone/keynote.svg diff --git a/src/static/icons/duotone/khanda.svg b/apps/client/src/static/icons/duotone/khanda.svg similarity index 100% rename from src/static/icons/duotone/khanda.svg rename to apps/client/src/static/icons/duotone/khanda.svg diff --git a/src/static/icons/duotone/kidneys.svg b/apps/client/src/static/icons/duotone/kidneys.svg similarity index 100% rename from src/static/icons/duotone/kidneys.svg rename to apps/client/src/static/icons/duotone/kidneys.svg diff --git a/src/static/icons/duotone/kiss-beam.svg b/apps/client/src/static/icons/duotone/kiss-beam.svg similarity index 100% rename from src/static/icons/duotone/kiss-beam.svg rename to apps/client/src/static/icons/duotone/kiss-beam.svg diff --git a/src/static/icons/duotone/kiss-wink-heart.svg b/apps/client/src/static/icons/duotone/kiss-wink-heart.svg similarity index 100% rename from src/static/icons/duotone/kiss-wink-heart.svg rename to apps/client/src/static/icons/duotone/kiss-wink-heart.svg diff --git a/src/static/icons/duotone/kiss.svg b/apps/client/src/static/icons/duotone/kiss.svg similarity index 100% rename from src/static/icons/duotone/kiss.svg rename to apps/client/src/static/icons/duotone/kiss.svg diff --git a/src/static/icons/duotone/kite.svg b/apps/client/src/static/icons/duotone/kite.svg similarity index 100% rename from src/static/icons/duotone/kite.svg rename to apps/client/src/static/icons/duotone/kite.svg diff --git a/src/static/icons/duotone/kiwi-bird.svg b/apps/client/src/static/icons/duotone/kiwi-bird.svg similarity index 100% rename from src/static/icons/duotone/kiwi-bird.svg rename to apps/client/src/static/icons/duotone/kiwi-bird.svg diff --git a/src/static/icons/duotone/knife-kitchen.svg b/apps/client/src/static/icons/duotone/knife-kitchen.svg similarity index 100% rename from src/static/icons/duotone/knife-kitchen.svg rename to apps/client/src/static/icons/duotone/knife-kitchen.svg diff --git a/src/static/icons/duotone/lambda.svg b/apps/client/src/static/icons/duotone/lambda.svg similarity index 100% rename from src/static/icons/duotone/lambda.svg rename to apps/client/src/static/icons/duotone/lambda.svg diff --git a/src/static/icons/duotone/lamp-desk.svg b/apps/client/src/static/icons/duotone/lamp-desk.svg similarity index 100% rename from src/static/icons/duotone/lamp-desk.svg rename to apps/client/src/static/icons/duotone/lamp-desk.svg diff --git a/src/static/icons/duotone/lamp-floor.svg b/apps/client/src/static/icons/duotone/lamp-floor.svg similarity index 100% rename from src/static/icons/duotone/lamp-floor.svg rename to apps/client/src/static/icons/duotone/lamp-floor.svg diff --git a/src/static/icons/duotone/lamp.svg b/apps/client/src/static/icons/duotone/lamp.svg similarity index 100% rename from src/static/icons/duotone/lamp.svg rename to apps/client/src/static/icons/duotone/lamp.svg diff --git a/src/static/icons/duotone/landmark-alt.svg b/apps/client/src/static/icons/duotone/landmark-alt.svg similarity index 100% rename from src/static/icons/duotone/landmark-alt.svg rename to apps/client/src/static/icons/duotone/landmark-alt.svg diff --git a/src/static/icons/duotone/landmark.svg b/apps/client/src/static/icons/duotone/landmark.svg similarity index 100% rename from src/static/icons/duotone/landmark.svg rename to apps/client/src/static/icons/duotone/landmark.svg diff --git a/src/static/icons/duotone/language.svg b/apps/client/src/static/icons/duotone/language.svg similarity index 100% rename from src/static/icons/duotone/language.svg rename to apps/client/src/static/icons/duotone/language.svg diff --git a/src/static/icons/duotone/laptop-code.svg b/apps/client/src/static/icons/duotone/laptop-code.svg similarity index 100% rename from src/static/icons/duotone/laptop-code.svg rename to apps/client/src/static/icons/duotone/laptop-code.svg diff --git a/src/static/icons/duotone/laptop-medical.svg b/apps/client/src/static/icons/duotone/laptop-medical.svg similarity index 100% rename from src/static/icons/duotone/laptop-medical.svg rename to apps/client/src/static/icons/duotone/laptop-medical.svg diff --git a/src/static/icons/duotone/laptop.svg b/apps/client/src/static/icons/duotone/laptop.svg similarity index 100% rename from src/static/icons/duotone/laptop.svg rename to apps/client/src/static/icons/duotone/laptop.svg diff --git a/src/static/icons/duotone/lasso.svg b/apps/client/src/static/icons/duotone/lasso.svg similarity index 100% rename from src/static/icons/duotone/lasso.svg rename to apps/client/src/static/icons/duotone/lasso.svg diff --git a/src/static/icons/duotone/laugh-beam.svg b/apps/client/src/static/icons/duotone/laugh-beam.svg similarity index 100% rename from src/static/icons/duotone/laugh-beam.svg rename to apps/client/src/static/icons/duotone/laugh-beam.svg diff --git a/src/static/icons/duotone/laugh-squint.svg b/apps/client/src/static/icons/duotone/laugh-squint.svg similarity index 100% rename from src/static/icons/duotone/laugh-squint.svg rename to apps/client/src/static/icons/duotone/laugh-squint.svg diff --git a/src/static/icons/duotone/laugh-wink.svg b/apps/client/src/static/icons/duotone/laugh-wink.svg similarity index 100% rename from src/static/icons/duotone/laugh-wink.svg rename to apps/client/src/static/icons/duotone/laugh-wink.svg diff --git a/src/static/icons/duotone/laugh.svg b/apps/client/src/static/icons/duotone/laugh.svg similarity index 100% rename from src/static/icons/duotone/laugh.svg rename to apps/client/src/static/icons/duotone/laugh.svg diff --git a/src/static/icons/duotone/layer-group.svg b/apps/client/src/static/icons/duotone/layer-group.svg similarity index 100% rename from src/static/icons/duotone/layer-group.svg rename to apps/client/src/static/icons/duotone/layer-group.svg diff --git a/src/static/icons/duotone/layer-minus.svg b/apps/client/src/static/icons/duotone/layer-minus.svg similarity index 100% rename from src/static/icons/duotone/layer-minus.svg rename to apps/client/src/static/icons/duotone/layer-minus.svg diff --git a/src/static/icons/duotone/layer-plus.svg b/apps/client/src/static/icons/duotone/layer-plus.svg similarity index 100% rename from src/static/icons/duotone/layer-plus.svg rename to apps/client/src/static/icons/duotone/layer-plus.svg diff --git a/src/static/icons/duotone/leaf-heart.svg b/apps/client/src/static/icons/duotone/leaf-heart.svg similarity index 100% rename from src/static/icons/duotone/leaf-heart.svg rename to apps/client/src/static/icons/duotone/leaf-heart.svg diff --git a/src/static/icons/duotone/leaf-maple.svg b/apps/client/src/static/icons/duotone/leaf-maple.svg similarity index 100% rename from src/static/icons/duotone/leaf-maple.svg rename to apps/client/src/static/icons/duotone/leaf-maple.svg diff --git a/src/static/icons/duotone/leaf-oak.svg b/apps/client/src/static/icons/duotone/leaf-oak.svg similarity index 100% rename from src/static/icons/duotone/leaf-oak.svg rename to apps/client/src/static/icons/duotone/leaf-oak.svg diff --git a/src/static/icons/duotone/leaf.svg b/apps/client/src/static/icons/duotone/leaf.svg similarity index 100% rename from src/static/icons/duotone/leaf.svg rename to apps/client/src/static/icons/duotone/leaf.svg diff --git a/src/static/icons/duotone/lemon.svg b/apps/client/src/static/icons/duotone/lemon.svg similarity index 100% rename from src/static/icons/duotone/lemon.svg rename to apps/client/src/static/icons/duotone/lemon.svg diff --git a/src/static/icons/duotone/less-than-equal.svg b/apps/client/src/static/icons/duotone/less-than-equal.svg similarity index 100% rename from src/static/icons/duotone/less-than-equal.svg rename to apps/client/src/static/icons/duotone/less-than-equal.svg diff --git a/src/static/icons/duotone/less-than.svg b/apps/client/src/static/icons/duotone/less-than.svg similarity index 100% rename from src/static/icons/duotone/less-than.svg rename to apps/client/src/static/icons/duotone/less-than.svg diff --git a/src/static/icons/duotone/level-down-alt.svg b/apps/client/src/static/icons/duotone/level-down-alt.svg similarity index 100% rename from src/static/icons/duotone/level-down-alt.svg rename to apps/client/src/static/icons/duotone/level-down-alt.svg diff --git a/src/static/icons/duotone/level-down.svg b/apps/client/src/static/icons/duotone/level-down.svg similarity index 100% rename from src/static/icons/duotone/level-down.svg rename to apps/client/src/static/icons/duotone/level-down.svg diff --git a/src/static/icons/duotone/level-up-alt.svg b/apps/client/src/static/icons/duotone/level-up-alt.svg similarity index 100% rename from src/static/icons/duotone/level-up-alt.svg rename to apps/client/src/static/icons/duotone/level-up-alt.svg diff --git a/src/static/icons/duotone/level-up.svg b/apps/client/src/static/icons/duotone/level-up.svg similarity index 100% rename from src/static/icons/duotone/level-up.svg rename to apps/client/src/static/icons/duotone/level-up.svg diff --git a/src/static/icons/duotone/life-ring.svg b/apps/client/src/static/icons/duotone/life-ring.svg similarity index 100% rename from src/static/icons/duotone/life-ring.svg rename to apps/client/src/static/icons/duotone/life-ring.svg diff --git a/src/static/icons/duotone/light-ceiling.svg b/apps/client/src/static/icons/duotone/light-ceiling.svg similarity index 100% rename from src/static/icons/duotone/light-ceiling.svg rename to apps/client/src/static/icons/duotone/light-ceiling.svg diff --git a/src/static/icons/duotone/light-switch-off.svg b/apps/client/src/static/icons/duotone/light-switch-off.svg similarity index 100% rename from src/static/icons/duotone/light-switch-off.svg rename to apps/client/src/static/icons/duotone/light-switch-off.svg diff --git a/src/static/icons/duotone/light-switch-on.svg b/apps/client/src/static/icons/duotone/light-switch-on.svg similarity index 100% rename from src/static/icons/duotone/light-switch-on.svg rename to apps/client/src/static/icons/duotone/light-switch-on.svg diff --git a/src/static/icons/duotone/light-switch.svg b/apps/client/src/static/icons/duotone/light-switch.svg similarity index 100% rename from src/static/icons/duotone/light-switch.svg rename to apps/client/src/static/icons/duotone/light-switch.svg diff --git a/src/static/icons/duotone/lightbulb-dollar.svg b/apps/client/src/static/icons/duotone/lightbulb-dollar.svg similarity index 100% rename from src/static/icons/duotone/lightbulb-dollar.svg rename to apps/client/src/static/icons/duotone/lightbulb-dollar.svg diff --git a/src/static/icons/duotone/lightbulb-exclamation.svg b/apps/client/src/static/icons/duotone/lightbulb-exclamation.svg similarity index 100% rename from src/static/icons/duotone/lightbulb-exclamation.svg rename to apps/client/src/static/icons/duotone/lightbulb-exclamation.svg diff --git a/src/static/icons/duotone/lightbulb-on.svg b/apps/client/src/static/icons/duotone/lightbulb-on.svg similarity index 100% rename from src/static/icons/duotone/lightbulb-on.svg rename to apps/client/src/static/icons/duotone/lightbulb-on.svg diff --git a/src/static/icons/duotone/lightbulb-slash.svg b/apps/client/src/static/icons/duotone/lightbulb-slash.svg similarity index 100% rename from src/static/icons/duotone/lightbulb-slash.svg rename to apps/client/src/static/icons/duotone/lightbulb-slash.svg diff --git a/src/static/icons/duotone/lightbulb.svg b/apps/client/src/static/icons/duotone/lightbulb.svg similarity index 100% rename from src/static/icons/duotone/lightbulb.svg rename to apps/client/src/static/icons/duotone/lightbulb.svg diff --git a/src/static/icons/duotone/lights-holiday.svg b/apps/client/src/static/icons/duotone/lights-holiday.svg similarity index 100% rename from src/static/icons/duotone/lights-holiday.svg rename to apps/client/src/static/icons/duotone/lights-holiday.svg diff --git a/src/static/icons/duotone/line-columns.svg b/apps/client/src/static/icons/duotone/line-columns.svg similarity index 100% rename from src/static/icons/duotone/line-columns.svg rename to apps/client/src/static/icons/duotone/line-columns.svg diff --git a/src/static/icons/duotone/line-height.svg b/apps/client/src/static/icons/duotone/line-height.svg similarity index 100% rename from src/static/icons/duotone/line-height.svg rename to apps/client/src/static/icons/duotone/line-height.svg diff --git a/src/static/icons/duotone/link.svg b/apps/client/src/static/icons/duotone/link.svg similarity index 100% rename from src/static/icons/duotone/link.svg rename to apps/client/src/static/icons/duotone/link.svg diff --git a/src/static/icons/duotone/lips.svg b/apps/client/src/static/icons/duotone/lips.svg similarity index 100% rename from src/static/icons/duotone/lips.svg rename to apps/client/src/static/icons/duotone/lips.svg diff --git a/src/static/icons/duotone/lira-sign.svg b/apps/client/src/static/icons/duotone/lira-sign.svg similarity index 100% rename from src/static/icons/duotone/lira-sign.svg rename to apps/client/src/static/icons/duotone/lira-sign.svg diff --git a/src/static/icons/duotone/list-alt.svg b/apps/client/src/static/icons/duotone/list-alt.svg similarity index 100% rename from src/static/icons/duotone/list-alt.svg rename to apps/client/src/static/icons/duotone/list-alt.svg diff --git a/src/static/icons/duotone/list-music.svg b/apps/client/src/static/icons/duotone/list-music.svg similarity index 100% rename from src/static/icons/duotone/list-music.svg rename to apps/client/src/static/icons/duotone/list-music.svg diff --git a/src/static/icons/duotone/list-ol.svg b/apps/client/src/static/icons/duotone/list-ol.svg similarity index 100% rename from src/static/icons/duotone/list-ol.svg rename to apps/client/src/static/icons/duotone/list-ol.svg diff --git a/src/static/icons/duotone/list-ul.svg b/apps/client/src/static/icons/duotone/list-ul.svg similarity index 100% rename from src/static/icons/duotone/list-ul.svg rename to apps/client/src/static/icons/duotone/list-ul.svg diff --git a/src/static/icons/duotone/list.svg b/apps/client/src/static/icons/duotone/list.svg similarity index 100% rename from src/static/icons/duotone/list.svg rename to apps/client/src/static/icons/duotone/list.svg diff --git a/src/static/icons/duotone/location-arrow.svg b/apps/client/src/static/icons/duotone/location-arrow.svg similarity index 100% rename from src/static/icons/duotone/location-arrow.svg rename to apps/client/src/static/icons/duotone/location-arrow.svg diff --git a/src/static/icons/duotone/location-circle.svg b/apps/client/src/static/icons/duotone/location-circle.svg similarity index 100% rename from src/static/icons/duotone/location-circle.svg rename to apps/client/src/static/icons/duotone/location-circle.svg diff --git a/src/static/icons/duotone/location-slash.svg b/apps/client/src/static/icons/duotone/location-slash.svg similarity index 100% rename from src/static/icons/duotone/location-slash.svg rename to apps/client/src/static/icons/duotone/location-slash.svg diff --git a/src/static/icons/duotone/location.svg b/apps/client/src/static/icons/duotone/location.svg similarity index 100% rename from src/static/icons/duotone/location.svg rename to apps/client/src/static/icons/duotone/location.svg diff --git a/src/static/icons/duotone/lock-alt.svg b/apps/client/src/static/icons/duotone/lock-alt.svg similarity index 100% rename from src/static/icons/duotone/lock-alt.svg rename to apps/client/src/static/icons/duotone/lock-alt.svg diff --git a/src/static/icons/duotone/lock-open-alt.svg b/apps/client/src/static/icons/duotone/lock-open-alt.svg similarity index 100% rename from src/static/icons/duotone/lock-open-alt.svg rename to apps/client/src/static/icons/duotone/lock-open-alt.svg diff --git a/src/static/icons/duotone/lock-open.svg b/apps/client/src/static/icons/duotone/lock-open.svg similarity index 100% rename from src/static/icons/duotone/lock-open.svg rename to apps/client/src/static/icons/duotone/lock-open.svg diff --git a/src/static/icons/duotone/lock.svg b/apps/client/src/static/icons/duotone/lock.svg similarity index 100% rename from src/static/icons/duotone/lock.svg rename to apps/client/src/static/icons/duotone/lock.svg diff --git a/src/static/icons/duotone/long-arrow-alt-down.svg b/apps/client/src/static/icons/duotone/long-arrow-alt-down.svg similarity index 100% rename from src/static/icons/duotone/long-arrow-alt-down.svg rename to apps/client/src/static/icons/duotone/long-arrow-alt-down.svg diff --git a/src/static/icons/duotone/long-arrow-alt-left.svg b/apps/client/src/static/icons/duotone/long-arrow-alt-left.svg similarity index 100% rename from src/static/icons/duotone/long-arrow-alt-left.svg rename to apps/client/src/static/icons/duotone/long-arrow-alt-left.svg diff --git a/src/static/icons/duotone/long-arrow-alt-right.svg b/apps/client/src/static/icons/duotone/long-arrow-alt-right.svg similarity index 100% rename from src/static/icons/duotone/long-arrow-alt-right.svg rename to apps/client/src/static/icons/duotone/long-arrow-alt-right.svg diff --git a/src/static/icons/duotone/long-arrow-alt-up.svg b/apps/client/src/static/icons/duotone/long-arrow-alt-up.svg similarity index 100% rename from src/static/icons/duotone/long-arrow-alt-up.svg rename to apps/client/src/static/icons/duotone/long-arrow-alt-up.svg diff --git a/src/static/icons/duotone/long-arrow-down.svg b/apps/client/src/static/icons/duotone/long-arrow-down.svg similarity index 100% rename from src/static/icons/duotone/long-arrow-down.svg rename to apps/client/src/static/icons/duotone/long-arrow-down.svg diff --git a/src/static/icons/duotone/long-arrow-left.svg b/apps/client/src/static/icons/duotone/long-arrow-left.svg similarity index 100% rename from src/static/icons/duotone/long-arrow-left.svg rename to apps/client/src/static/icons/duotone/long-arrow-left.svg diff --git a/src/static/icons/duotone/long-arrow-right.svg b/apps/client/src/static/icons/duotone/long-arrow-right.svg similarity index 100% rename from src/static/icons/duotone/long-arrow-right.svg rename to apps/client/src/static/icons/duotone/long-arrow-right.svg diff --git a/src/static/icons/duotone/long-arrow-up.svg b/apps/client/src/static/icons/duotone/long-arrow-up.svg similarity index 100% rename from src/static/icons/duotone/long-arrow-up.svg rename to apps/client/src/static/icons/duotone/long-arrow-up.svg diff --git a/src/static/icons/duotone/loveseat.svg b/apps/client/src/static/icons/duotone/loveseat.svg similarity index 100% rename from src/static/icons/duotone/loveseat.svg rename to apps/client/src/static/icons/duotone/loveseat.svg diff --git a/src/static/icons/duotone/low-vision.svg b/apps/client/src/static/icons/duotone/low-vision.svg similarity index 100% rename from src/static/icons/duotone/low-vision.svg rename to apps/client/src/static/icons/duotone/low-vision.svg diff --git a/src/static/icons/duotone/luchador.svg b/apps/client/src/static/icons/duotone/luchador.svg similarity index 100% rename from src/static/icons/duotone/luchador.svg rename to apps/client/src/static/icons/duotone/luchador.svg diff --git a/src/static/icons/duotone/luggage-cart.svg b/apps/client/src/static/icons/duotone/luggage-cart.svg similarity index 100% rename from src/static/icons/duotone/luggage-cart.svg rename to apps/client/src/static/icons/duotone/luggage-cart.svg diff --git a/src/static/icons/duotone/lungs.svg b/apps/client/src/static/icons/duotone/lungs.svg similarity index 100% rename from src/static/icons/duotone/lungs.svg rename to apps/client/src/static/icons/duotone/lungs.svg diff --git a/src/static/icons/duotone/mace.svg b/apps/client/src/static/icons/duotone/mace.svg similarity index 100% rename from src/static/icons/duotone/mace.svg rename to apps/client/src/static/icons/duotone/mace.svg diff --git a/src/static/icons/duotone/magic.svg b/apps/client/src/static/icons/duotone/magic.svg similarity index 100% rename from src/static/icons/duotone/magic.svg rename to apps/client/src/static/icons/duotone/magic.svg diff --git a/src/static/icons/duotone/magnet.svg b/apps/client/src/static/icons/duotone/magnet.svg similarity index 100% rename from src/static/icons/duotone/magnet.svg rename to apps/client/src/static/icons/duotone/magnet.svg diff --git a/src/static/icons/duotone/mail-bulk.svg b/apps/client/src/static/icons/duotone/mail-bulk.svg similarity index 100% rename from src/static/icons/duotone/mail-bulk.svg rename to apps/client/src/static/icons/duotone/mail-bulk.svg diff --git a/src/static/icons/duotone/mailbox.svg b/apps/client/src/static/icons/duotone/mailbox.svg similarity index 100% rename from src/static/icons/duotone/mailbox.svg rename to apps/client/src/static/icons/duotone/mailbox.svg diff --git a/src/static/icons/duotone/male.svg b/apps/client/src/static/icons/duotone/male.svg similarity index 100% rename from src/static/icons/duotone/male.svg rename to apps/client/src/static/icons/duotone/male.svg diff --git a/src/static/icons/duotone/mandolin.svg b/apps/client/src/static/icons/duotone/mandolin.svg similarity index 100% rename from src/static/icons/duotone/mandolin.svg rename to apps/client/src/static/icons/duotone/mandolin.svg diff --git a/src/static/icons/duotone/map-marked-alt.svg b/apps/client/src/static/icons/duotone/map-marked-alt.svg similarity index 100% rename from src/static/icons/duotone/map-marked-alt.svg rename to apps/client/src/static/icons/duotone/map-marked-alt.svg diff --git a/src/static/icons/duotone/map-marked.svg b/apps/client/src/static/icons/duotone/map-marked.svg similarity index 100% rename from src/static/icons/duotone/map-marked.svg rename to apps/client/src/static/icons/duotone/map-marked.svg diff --git a/src/static/icons/duotone/map-marker-alt-slash.svg b/apps/client/src/static/icons/duotone/map-marker-alt-slash.svg similarity index 100% rename from src/static/icons/duotone/map-marker-alt-slash.svg rename to apps/client/src/static/icons/duotone/map-marker-alt-slash.svg diff --git a/src/static/icons/duotone/map-marker-alt.svg b/apps/client/src/static/icons/duotone/map-marker-alt.svg similarity index 100% rename from src/static/icons/duotone/map-marker-alt.svg rename to apps/client/src/static/icons/duotone/map-marker-alt.svg diff --git a/src/static/icons/duotone/map-marker-check.svg b/apps/client/src/static/icons/duotone/map-marker-check.svg similarity index 100% rename from src/static/icons/duotone/map-marker-check.svg rename to apps/client/src/static/icons/duotone/map-marker-check.svg diff --git a/src/static/icons/duotone/map-marker-edit.svg b/apps/client/src/static/icons/duotone/map-marker-edit.svg similarity index 100% rename from src/static/icons/duotone/map-marker-edit.svg rename to apps/client/src/static/icons/duotone/map-marker-edit.svg diff --git a/src/static/icons/duotone/map-marker-exclamation.svg b/apps/client/src/static/icons/duotone/map-marker-exclamation.svg similarity index 100% rename from src/static/icons/duotone/map-marker-exclamation.svg rename to apps/client/src/static/icons/duotone/map-marker-exclamation.svg diff --git a/src/static/icons/duotone/map-marker-minus.svg b/apps/client/src/static/icons/duotone/map-marker-minus.svg similarity index 100% rename from src/static/icons/duotone/map-marker-minus.svg rename to apps/client/src/static/icons/duotone/map-marker-minus.svg diff --git a/src/static/icons/duotone/map-marker-plus.svg b/apps/client/src/static/icons/duotone/map-marker-plus.svg similarity index 100% rename from src/static/icons/duotone/map-marker-plus.svg rename to apps/client/src/static/icons/duotone/map-marker-plus.svg diff --git a/src/static/icons/duotone/map-marker-question.svg b/apps/client/src/static/icons/duotone/map-marker-question.svg similarity index 100% rename from src/static/icons/duotone/map-marker-question.svg rename to apps/client/src/static/icons/duotone/map-marker-question.svg diff --git a/src/static/icons/duotone/map-marker-slash.svg b/apps/client/src/static/icons/duotone/map-marker-slash.svg similarity index 100% rename from src/static/icons/duotone/map-marker-slash.svg rename to apps/client/src/static/icons/duotone/map-marker-slash.svg diff --git a/src/static/icons/duotone/map-marker-smile.svg b/apps/client/src/static/icons/duotone/map-marker-smile.svg similarity index 100% rename from src/static/icons/duotone/map-marker-smile.svg rename to apps/client/src/static/icons/duotone/map-marker-smile.svg diff --git a/src/static/icons/duotone/map-marker-times.svg b/apps/client/src/static/icons/duotone/map-marker-times.svg similarity index 100% rename from src/static/icons/duotone/map-marker-times.svg rename to apps/client/src/static/icons/duotone/map-marker-times.svg diff --git a/src/static/icons/duotone/map-marker.svg b/apps/client/src/static/icons/duotone/map-marker.svg similarity index 100% rename from src/static/icons/duotone/map-marker.svg rename to apps/client/src/static/icons/duotone/map-marker.svg diff --git a/src/static/icons/duotone/map-pin.svg b/apps/client/src/static/icons/duotone/map-pin.svg similarity index 100% rename from src/static/icons/duotone/map-pin.svg rename to apps/client/src/static/icons/duotone/map-pin.svg diff --git a/src/static/icons/duotone/map-signs.svg b/apps/client/src/static/icons/duotone/map-signs.svg similarity index 100% rename from src/static/icons/duotone/map-signs.svg rename to apps/client/src/static/icons/duotone/map-signs.svg diff --git a/src/static/icons/duotone/map.svg b/apps/client/src/static/icons/duotone/map.svg similarity index 100% rename from src/static/icons/duotone/map.svg rename to apps/client/src/static/icons/duotone/map.svg diff --git a/src/static/icons/duotone/marker.svg b/apps/client/src/static/icons/duotone/marker.svg similarity index 100% rename from src/static/icons/duotone/marker.svg rename to apps/client/src/static/icons/duotone/marker.svg diff --git a/src/static/icons/duotone/mars-double.svg b/apps/client/src/static/icons/duotone/mars-double.svg similarity index 100% rename from src/static/icons/duotone/mars-double.svg rename to apps/client/src/static/icons/duotone/mars-double.svg diff --git a/src/static/icons/duotone/mars-stroke-h.svg b/apps/client/src/static/icons/duotone/mars-stroke-h.svg similarity index 100% rename from src/static/icons/duotone/mars-stroke-h.svg rename to apps/client/src/static/icons/duotone/mars-stroke-h.svg diff --git a/src/static/icons/duotone/mars-stroke-v.svg b/apps/client/src/static/icons/duotone/mars-stroke-v.svg similarity index 100% rename from src/static/icons/duotone/mars-stroke-v.svg rename to apps/client/src/static/icons/duotone/mars-stroke-v.svg diff --git a/src/static/icons/duotone/mars-stroke.svg b/apps/client/src/static/icons/duotone/mars-stroke.svg similarity index 100% rename from src/static/icons/duotone/mars-stroke.svg rename to apps/client/src/static/icons/duotone/mars-stroke.svg diff --git a/src/static/icons/duotone/mars.svg b/apps/client/src/static/icons/duotone/mars.svg similarity index 100% rename from src/static/icons/duotone/mars.svg rename to apps/client/src/static/icons/duotone/mars.svg diff --git a/src/static/icons/duotone/mask.svg b/apps/client/src/static/icons/duotone/mask.svg similarity index 100% rename from src/static/icons/duotone/mask.svg rename to apps/client/src/static/icons/duotone/mask.svg diff --git a/src/static/icons/duotone/meat.svg b/apps/client/src/static/icons/duotone/meat.svg similarity index 100% rename from src/static/icons/duotone/meat.svg rename to apps/client/src/static/icons/duotone/meat.svg diff --git a/src/static/icons/duotone/medal.svg b/apps/client/src/static/icons/duotone/medal.svg similarity index 100% rename from src/static/icons/duotone/medal.svg rename to apps/client/src/static/icons/duotone/medal.svg diff --git a/src/static/icons/duotone/medkit.svg b/apps/client/src/static/icons/duotone/medkit.svg similarity index 100% rename from src/static/icons/duotone/medkit.svg rename to apps/client/src/static/icons/duotone/medkit.svg diff --git a/src/static/icons/duotone/megaphone.svg b/apps/client/src/static/icons/duotone/megaphone.svg similarity index 100% rename from src/static/icons/duotone/megaphone.svg rename to apps/client/src/static/icons/duotone/megaphone.svg diff --git a/src/static/icons/duotone/meh-blank.svg b/apps/client/src/static/icons/duotone/meh-blank.svg similarity index 100% rename from src/static/icons/duotone/meh-blank.svg rename to apps/client/src/static/icons/duotone/meh-blank.svg diff --git a/src/static/icons/duotone/meh-rolling-eyes.svg b/apps/client/src/static/icons/duotone/meh-rolling-eyes.svg similarity index 100% rename from src/static/icons/duotone/meh-rolling-eyes.svg rename to apps/client/src/static/icons/duotone/meh-rolling-eyes.svg diff --git a/src/static/icons/duotone/meh.svg b/apps/client/src/static/icons/duotone/meh.svg similarity index 100% rename from src/static/icons/duotone/meh.svg rename to apps/client/src/static/icons/duotone/meh.svg diff --git a/src/static/icons/duotone/memory.svg b/apps/client/src/static/icons/duotone/memory.svg similarity index 100% rename from src/static/icons/duotone/memory.svg rename to apps/client/src/static/icons/duotone/memory.svg diff --git a/src/static/icons/duotone/menorah.svg b/apps/client/src/static/icons/duotone/menorah.svg similarity index 100% rename from src/static/icons/duotone/menorah.svg rename to apps/client/src/static/icons/duotone/menorah.svg diff --git a/src/static/icons/duotone/mercury.svg b/apps/client/src/static/icons/duotone/mercury.svg similarity index 100% rename from src/static/icons/duotone/mercury.svg rename to apps/client/src/static/icons/duotone/mercury.svg diff --git a/src/static/icons/duotone/meteor.svg b/apps/client/src/static/icons/duotone/meteor.svg similarity index 100% rename from src/static/icons/duotone/meteor.svg rename to apps/client/src/static/icons/duotone/meteor.svg diff --git a/src/static/icons/duotone/microchip.svg b/apps/client/src/static/icons/duotone/microchip.svg similarity index 100% rename from src/static/icons/duotone/microchip.svg rename to apps/client/src/static/icons/duotone/microchip.svg diff --git a/src/static/icons/duotone/microphone-alt-slash.svg b/apps/client/src/static/icons/duotone/microphone-alt-slash.svg similarity index 100% rename from src/static/icons/duotone/microphone-alt-slash.svg rename to apps/client/src/static/icons/duotone/microphone-alt-slash.svg diff --git a/src/static/icons/duotone/microphone-alt.svg b/apps/client/src/static/icons/duotone/microphone-alt.svg similarity index 100% rename from src/static/icons/duotone/microphone-alt.svg rename to apps/client/src/static/icons/duotone/microphone-alt.svg diff --git a/src/static/icons/duotone/microphone-slash.svg b/apps/client/src/static/icons/duotone/microphone-slash.svg similarity index 100% rename from src/static/icons/duotone/microphone-slash.svg rename to apps/client/src/static/icons/duotone/microphone-slash.svg diff --git a/src/static/icons/duotone/microphone-stand.svg b/apps/client/src/static/icons/duotone/microphone-stand.svg similarity index 100% rename from src/static/icons/duotone/microphone-stand.svg rename to apps/client/src/static/icons/duotone/microphone-stand.svg diff --git a/src/static/icons/duotone/microphone.svg b/apps/client/src/static/icons/duotone/microphone.svg similarity index 100% rename from src/static/icons/duotone/microphone.svg rename to apps/client/src/static/icons/duotone/microphone.svg diff --git a/src/static/icons/duotone/microscope.svg b/apps/client/src/static/icons/duotone/microscope.svg similarity index 100% rename from src/static/icons/duotone/microscope.svg rename to apps/client/src/static/icons/duotone/microscope.svg diff --git a/src/static/icons/duotone/microwave.svg b/apps/client/src/static/icons/duotone/microwave.svg similarity index 100% rename from src/static/icons/duotone/microwave.svg rename to apps/client/src/static/icons/duotone/microwave.svg diff --git a/src/static/icons/duotone/mind-share.svg b/apps/client/src/static/icons/duotone/mind-share.svg similarity index 100% rename from src/static/icons/duotone/mind-share.svg rename to apps/client/src/static/icons/duotone/mind-share.svg diff --git a/src/static/icons/duotone/minus-circle.svg b/apps/client/src/static/icons/duotone/minus-circle.svg similarity index 100% rename from src/static/icons/duotone/minus-circle.svg rename to apps/client/src/static/icons/duotone/minus-circle.svg diff --git a/src/static/icons/duotone/minus-hexagon.svg b/apps/client/src/static/icons/duotone/minus-hexagon.svg similarity index 100% rename from src/static/icons/duotone/minus-hexagon.svg rename to apps/client/src/static/icons/duotone/minus-hexagon.svg diff --git a/src/static/icons/duotone/minus-octagon.svg b/apps/client/src/static/icons/duotone/minus-octagon.svg similarity index 100% rename from src/static/icons/duotone/minus-octagon.svg rename to apps/client/src/static/icons/duotone/minus-octagon.svg diff --git a/src/static/icons/duotone/minus-square.svg b/apps/client/src/static/icons/duotone/minus-square.svg similarity index 100% rename from src/static/icons/duotone/minus-square.svg rename to apps/client/src/static/icons/duotone/minus-square.svg diff --git a/src/static/icons/duotone/minus.svg b/apps/client/src/static/icons/duotone/minus.svg similarity index 100% rename from src/static/icons/duotone/minus.svg rename to apps/client/src/static/icons/duotone/minus.svg diff --git a/src/static/icons/duotone/mistletoe.svg b/apps/client/src/static/icons/duotone/mistletoe.svg similarity index 100% rename from src/static/icons/duotone/mistletoe.svg rename to apps/client/src/static/icons/duotone/mistletoe.svg diff --git a/src/static/icons/duotone/mitten.svg b/apps/client/src/static/icons/duotone/mitten.svg similarity index 100% rename from src/static/icons/duotone/mitten.svg rename to apps/client/src/static/icons/duotone/mitten.svg diff --git a/src/static/icons/duotone/mobile-alt.svg b/apps/client/src/static/icons/duotone/mobile-alt.svg similarity index 100% rename from src/static/icons/duotone/mobile-alt.svg rename to apps/client/src/static/icons/duotone/mobile-alt.svg diff --git a/src/static/icons/duotone/mobile-android-alt.svg b/apps/client/src/static/icons/duotone/mobile-android-alt.svg similarity index 100% rename from src/static/icons/duotone/mobile-android-alt.svg rename to apps/client/src/static/icons/duotone/mobile-android-alt.svg diff --git a/src/static/icons/duotone/mobile-android.svg b/apps/client/src/static/icons/duotone/mobile-android.svg similarity index 100% rename from src/static/icons/duotone/mobile-android.svg rename to apps/client/src/static/icons/duotone/mobile-android.svg diff --git a/src/static/icons/duotone/mobile.svg b/apps/client/src/static/icons/duotone/mobile.svg similarity index 100% rename from src/static/icons/duotone/mobile.svg rename to apps/client/src/static/icons/duotone/mobile.svg diff --git a/src/static/icons/duotone/money-bill-alt.svg b/apps/client/src/static/icons/duotone/money-bill-alt.svg similarity index 100% rename from src/static/icons/duotone/money-bill-alt.svg rename to apps/client/src/static/icons/duotone/money-bill-alt.svg diff --git a/src/static/icons/duotone/money-bill-wave-alt.svg b/apps/client/src/static/icons/duotone/money-bill-wave-alt.svg similarity index 100% rename from src/static/icons/duotone/money-bill-wave-alt.svg rename to apps/client/src/static/icons/duotone/money-bill-wave-alt.svg diff --git a/src/static/icons/duotone/money-bill-wave.svg b/apps/client/src/static/icons/duotone/money-bill-wave.svg similarity index 100% rename from src/static/icons/duotone/money-bill-wave.svg rename to apps/client/src/static/icons/duotone/money-bill-wave.svg diff --git a/src/static/icons/duotone/money-bill.svg b/apps/client/src/static/icons/duotone/money-bill.svg similarity index 100% rename from src/static/icons/duotone/money-bill.svg rename to apps/client/src/static/icons/duotone/money-bill.svg diff --git a/src/static/icons/duotone/money-check-alt.svg b/apps/client/src/static/icons/duotone/money-check-alt.svg similarity index 100% rename from src/static/icons/duotone/money-check-alt.svg rename to apps/client/src/static/icons/duotone/money-check-alt.svg diff --git a/src/static/icons/duotone/money-check-edit-alt.svg b/apps/client/src/static/icons/duotone/money-check-edit-alt.svg similarity index 100% rename from src/static/icons/duotone/money-check-edit-alt.svg rename to apps/client/src/static/icons/duotone/money-check-edit-alt.svg diff --git a/src/static/icons/duotone/money-check-edit.svg b/apps/client/src/static/icons/duotone/money-check-edit.svg similarity index 100% rename from src/static/icons/duotone/money-check-edit.svg rename to apps/client/src/static/icons/duotone/money-check-edit.svg diff --git a/src/static/icons/duotone/money-check.svg b/apps/client/src/static/icons/duotone/money-check.svg similarity index 100% rename from src/static/icons/duotone/money-check.svg rename to apps/client/src/static/icons/duotone/money-check.svg diff --git a/src/static/icons/duotone/monitor-heart-rate.svg b/apps/client/src/static/icons/duotone/monitor-heart-rate.svg similarity index 100% rename from src/static/icons/duotone/monitor-heart-rate.svg rename to apps/client/src/static/icons/duotone/monitor-heart-rate.svg diff --git a/src/static/icons/duotone/monkey.svg b/apps/client/src/static/icons/duotone/monkey.svg similarity index 100% rename from src/static/icons/duotone/monkey.svg rename to apps/client/src/static/icons/duotone/monkey.svg diff --git a/src/static/icons/duotone/monument.svg b/apps/client/src/static/icons/duotone/monument.svg similarity index 100% rename from src/static/icons/duotone/monument.svg rename to apps/client/src/static/icons/duotone/monument.svg diff --git a/src/static/icons/duotone/moon-cloud.svg b/apps/client/src/static/icons/duotone/moon-cloud.svg similarity index 100% rename from src/static/icons/duotone/moon-cloud.svg rename to apps/client/src/static/icons/duotone/moon-cloud.svg diff --git a/src/static/icons/duotone/moon-stars.svg b/apps/client/src/static/icons/duotone/moon-stars.svg similarity index 100% rename from src/static/icons/duotone/moon-stars.svg rename to apps/client/src/static/icons/duotone/moon-stars.svg diff --git a/src/static/icons/duotone/moon.svg b/apps/client/src/static/icons/duotone/moon.svg similarity index 100% rename from src/static/icons/duotone/moon.svg rename to apps/client/src/static/icons/duotone/moon.svg diff --git a/src/static/icons/duotone/mortar-pestle.svg b/apps/client/src/static/icons/duotone/mortar-pestle.svg similarity index 100% rename from src/static/icons/duotone/mortar-pestle.svg rename to apps/client/src/static/icons/duotone/mortar-pestle.svg diff --git a/src/static/icons/duotone/mosque.svg b/apps/client/src/static/icons/duotone/mosque.svg similarity index 100% rename from src/static/icons/duotone/mosque.svg rename to apps/client/src/static/icons/duotone/mosque.svg diff --git a/src/static/icons/duotone/motorcycle.svg b/apps/client/src/static/icons/duotone/motorcycle.svg similarity index 100% rename from src/static/icons/duotone/motorcycle.svg rename to apps/client/src/static/icons/duotone/motorcycle.svg diff --git a/src/static/icons/duotone/mountain.svg b/apps/client/src/static/icons/duotone/mountain.svg similarity index 100% rename from src/static/icons/duotone/mountain.svg rename to apps/client/src/static/icons/duotone/mountain.svg diff --git a/src/static/icons/duotone/mountains.svg b/apps/client/src/static/icons/duotone/mountains.svg similarity index 100% rename from src/static/icons/duotone/mountains.svg rename to apps/client/src/static/icons/duotone/mountains.svg diff --git a/src/static/icons/duotone/mouse-alt.svg b/apps/client/src/static/icons/duotone/mouse-alt.svg similarity index 100% rename from src/static/icons/duotone/mouse-alt.svg rename to apps/client/src/static/icons/duotone/mouse-alt.svg diff --git a/src/static/icons/duotone/mouse-pointer.svg b/apps/client/src/static/icons/duotone/mouse-pointer.svg similarity index 100% rename from src/static/icons/duotone/mouse-pointer.svg rename to apps/client/src/static/icons/duotone/mouse-pointer.svg diff --git a/src/static/icons/duotone/mouse.svg b/apps/client/src/static/icons/duotone/mouse.svg similarity index 100% rename from src/static/icons/duotone/mouse.svg rename to apps/client/src/static/icons/duotone/mouse.svg diff --git a/src/static/icons/duotone/mp3-player.svg b/apps/client/src/static/icons/duotone/mp3-player.svg similarity index 100% rename from src/static/icons/duotone/mp3-player.svg rename to apps/client/src/static/icons/duotone/mp3-player.svg diff --git a/src/static/icons/duotone/mug-hot.svg b/apps/client/src/static/icons/duotone/mug-hot.svg similarity index 100% rename from src/static/icons/duotone/mug-hot.svg rename to apps/client/src/static/icons/duotone/mug-hot.svg diff --git a/src/static/icons/duotone/mug-marshmallows.svg b/apps/client/src/static/icons/duotone/mug-marshmallows.svg similarity index 100% rename from src/static/icons/duotone/mug-marshmallows.svg rename to apps/client/src/static/icons/duotone/mug-marshmallows.svg diff --git a/src/static/icons/duotone/mug-tea.svg b/apps/client/src/static/icons/duotone/mug-tea.svg similarity index 100% rename from src/static/icons/duotone/mug-tea.svg rename to apps/client/src/static/icons/duotone/mug-tea.svg diff --git a/src/static/icons/duotone/mug.svg b/apps/client/src/static/icons/duotone/mug.svg similarity index 100% rename from src/static/icons/duotone/mug.svg rename to apps/client/src/static/icons/duotone/mug.svg diff --git a/src/static/icons/duotone/music-alt-slash.svg b/apps/client/src/static/icons/duotone/music-alt-slash.svg similarity index 100% rename from src/static/icons/duotone/music-alt-slash.svg rename to apps/client/src/static/icons/duotone/music-alt-slash.svg diff --git a/src/static/icons/duotone/music-alt.svg b/apps/client/src/static/icons/duotone/music-alt.svg similarity index 100% rename from src/static/icons/duotone/music-alt.svg rename to apps/client/src/static/icons/duotone/music-alt.svg diff --git a/src/static/icons/duotone/music-slash.svg b/apps/client/src/static/icons/duotone/music-slash.svg similarity index 100% rename from src/static/icons/duotone/music-slash.svg rename to apps/client/src/static/icons/duotone/music-slash.svg diff --git a/src/static/icons/duotone/music.svg b/apps/client/src/static/icons/duotone/music.svg similarity index 100% rename from src/static/icons/duotone/music.svg rename to apps/client/src/static/icons/duotone/music.svg diff --git a/src/static/icons/duotone/narwhal.svg b/apps/client/src/static/icons/duotone/narwhal.svg similarity index 100% rename from src/static/icons/duotone/narwhal.svg rename to apps/client/src/static/icons/duotone/narwhal.svg diff --git a/src/static/icons/duotone/network-wired.svg b/apps/client/src/static/icons/duotone/network-wired.svg similarity index 100% rename from src/static/icons/duotone/network-wired.svg rename to apps/client/src/static/icons/duotone/network-wired.svg diff --git a/src/static/icons/duotone/neuter.svg b/apps/client/src/static/icons/duotone/neuter.svg similarity index 100% rename from src/static/icons/duotone/neuter.svg rename to apps/client/src/static/icons/duotone/neuter.svg diff --git a/src/static/icons/duotone/newspaper.svg b/apps/client/src/static/icons/duotone/newspaper.svg similarity index 100% rename from src/static/icons/duotone/newspaper.svg rename to apps/client/src/static/icons/duotone/newspaper.svg diff --git a/src/static/icons/duotone/not-equal.svg b/apps/client/src/static/icons/duotone/not-equal.svg similarity index 100% rename from src/static/icons/duotone/not-equal.svg rename to apps/client/src/static/icons/duotone/not-equal.svg diff --git a/src/static/icons/duotone/notes-medical.svg b/apps/client/src/static/icons/duotone/notes-medical.svg similarity index 100% rename from src/static/icons/duotone/notes-medical.svg rename to apps/client/src/static/icons/duotone/notes-medical.svg diff --git a/src/static/icons/duotone/object-group.svg b/apps/client/src/static/icons/duotone/object-group.svg similarity index 100% rename from src/static/icons/duotone/object-group.svg rename to apps/client/src/static/icons/duotone/object-group.svg diff --git a/src/static/icons/duotone/object-ungroup.svg b/apps/client/src/static/icons/duotone/object-ungroup.svg similarity index 100% rename from src/static/icons/duotone/object-ungroup.svg rename to apps/client/src/static/icons/duotone/object-ungroup.svg diff --git a/src/static/icons/duotone/octagon.svg b/apps/client/src/static/icons/duotone/octagon.svg similarity index 100% rename from src/static/icons/duotone/octagon.svg rename to apps/client/src/static/icons/duotone/octagon.svg diff --git a/src/static/icons/duotone/oil-can.svg b/apps/client/src/static/icons/duotone/oil-can.svg similarity index 100% rename from src/static/icons/duotone/oil-can.svg rename to apps/client/src/static/icons/duotone/oil-can.svg diff --git a/src/static/icons/duotone/oil-temp.svg b/apps/client/src/static/icons/duotone/oil-temp.svg similarity index 100% rename from src/static/icons/duotone/oil-temp.svg rename to apps/client/src/static/icons/duotone/oil-temp.svg diff --git a/src/static/icons/duotone/om.svg b/apps/client/src/static/icons/duotone/om.svg similarity index 100% rename from src/static/icons/duotone/om.svg rename to apps/client/src/static/icons/duotone/om.svg diff --git a/src/static/icons/duotone/omega.svg b/apps/client/src/static/icons/duotone/omega.svg similarity index 100% rename from src/static/icons/duotone/omega.svg rename to apps/client/src/static/icons/duotone/omega.svg diff --git a/src/static/icons/duotone/ornament.svg b/apps/client/src/static/icons/duotone/ornament.svg similarity index 100% rename from src/static/icons/duotone/ornament.svg rename to apps/client/src/static/icons/duotone/ornament.svg diff --git a/src/static/icons/duotone/otter.svg b/apps/client/src/static/icons/duotone/otter.svg similarity index 100% rename from src/static/icons/duotone/otter.svg rename to apps/client/src/static/icons/duotone/otter.svg diff --git a/src/static/icons/duotone/outdent.svg b/apps/client/src/static/icons/duotone/outdent.svg similarity index 100% rename from src/static/icons/duotone/outdent.svg rename to apps/client/src/static/icons/duotone/outdent.svg diff --git a/src/static/icons/duotone/outlet.svg b/apps/client/src/static/icons/duotone/outlet.svg similarity index 100% rename from src/static/icons/duotone/outlet.svg rename to apps/client/src/static/icons/duotone/outlet.svg diff --git a/src/static/icons/duotone/oven.svg b/apps/client/src/static/icons/duotone/oven.svg similarity index 100% rename from src/static/icons/duotone/oven.svg rename to apps/client/src/static/icons/duotone/oven.svg diff --git a/src/static/icons/duotone/overline.svg b/apps/client/src/static/icons/duotone/overline.svg similarity index 100% rename from src/static/icons/duotone/overline.svg rename to apps/client/src/static/icons/duotone/overline.svg diff --git a/src/static/icons/duotone/page-break.svg b/apps/client/src/static/icons/duotone/page-break.svg similarity index 100% rename from src/static/icons/duotone/page-break.svg rename to apps/client/src/static/icons/duotone/page-break.svg diff --git a/src/static/icons/duotone/pager.svg b/apps/client/src/static/icons/duotone/pager.svg similarity index 100% rename from src/static/icons/duotone/pager.svg rename to apps/client/src/static/icons/duotone/pager.svg diff --git a/src/static/icons/duotone/paint-brush-alt.svg b/apps/client/src/static/icons/duotone/paint-brush-alt.svg similarity index 100% rename from src/static/icons/duotone/paint-brush-alt.svg rename to apps/client/src/static/icons/duotone/paint-brush-alt.svg diff --git a/src/static/icons/duotone/paint-brush.svg b/apps/client/src/static/icons/duotone/paint-brush.svg similarity index 100% rename from src/static/icons/duotone/paint-brush.svg rename to apps/client/src/static/icons/duotone/paint-brush.svg diff --git a/src/static/icons/duotone/paint-roller.svg b/apps/client/src/static/icons/duotone/paint-roller.svg similarity index 100% rename from src/static/icons/duotone/paint-roller.svg rename to apps/client/src/static/icons/duotone/paint-roller.svg diff --git a/src/static/icons/duotone/palette.svg b/apps/client/src/static/icons/duotone/palette.svg similarity index 100% rename from src/static/icons/duotone/palette.svg rename to apps/client/src/static/icons/duotone/palette.svg diff --git a/src/static/icons/duotone/pallet-alt.svg b/apps/client/src/static/icons/duotone/pallet-alt.svg similarity index 100% rename from src/static/icons/duotone/pallet-alt.svg rename to apps/client/src/static/icons/duotone/pallet-alt.svg diff --git a/src/static/icons/duotone/pallet.svg b/apps/client/src/static/icons/duotone/pallet.svg similarity index 100% rename from src/static/icons/duotone/pallet.svg rename to apps/client/src/static/icons/duotone/pallet.svg diff --git a/src/static/icons/duotone/paper-plane.svg b/apps/client/src/static/icons/duotone/paper-plane.svg similarity index 100% rename from src/static/icons/duotone/paper-plane.svg rename to apps/client/src/static/icons/duotone/paper-plane.svg diff --git a/src/static/icons/duotone/paperclip.svg b/apps/client/src/static/icons/duotone/paperclip.svg similarity index 100% rename from src/static/icons/duotone/paperclip.svg rename to apps/client/src/static/icons/duotone/paperclip.svg diff --git a/src/static/icons/duotone/parachute-box.svg b/apps/client/src/static/icons/duotone/parachute-box.svg similarity index 100% rename from src/static/icons/duotone/parachute-box.svg rename to apps/client/src/static/icons/duotone/parachute-box.svg diff --git a/src/static/icons/duotone/paragraph-rtl.svg b/apps/client/src/static/icons/duotone/paragraph-rtl.svg similarity index 100% rename from src/static/icons/duotone/paragraph-rtl.svg rename to apps/client/src/static/icons/duotone/paragraph-rtl.svg diff --git a/src/static/icons/duotone/paragraph.svg b/apps/client/src/static/icons/duotone/paragraph.svg similarity index 100% rename from src/static/icons/duotone/paragraph.svg rename to apps/client/src/static/icons/duotone/paragraph.svg diff --git a/src/static/icons/duotone/parking-circle-slash.svg b/apps/client/src/static/icons/duotone/parking-circle-slash.svg similarity index 100% rename from src/static/icons/duotone/parking-circle-slash.svg rename to apps/client/src/static/icons/duotone/parking-circle-slash.svg diff --git a/src/static/icons/duotone/parking-circle.svg b/apps/client/src/static/icons/duotone/parking-circle.svg similarity index 100% rename from src/static/icons/duotone/parking-circle.svg rename to apps/client/src/static/icons/duotone/parking-circle.svg diff --git a/src/static/icons/duotone/parking-slash.svg b/apps/client/src/static/icons/duotone/parking-slash.svg similarity index 100% rename from src/static/icons/duotone/parking-slash.svg rename to apps/client/src/static/icons/duotone/parking-slash.svg diff --git a/src/static/icons/duotone/parking.svg b/apps/client/src/static/icons/duotone/parking.svg similarity index 100% rename from src/static/icons/duotone/parking.svg rename to apps/client/src/static/icons/duotone/parking.svg diff --git a/src/static/icons/duotone/passport.svg b/apps/client/src/static/icons/duotone/passport.svg similarity index 100% rename from src/static/icons/duotone/passport.svg rename to apps/client/src/static/icons/duotone/passport.svg diff --git a/src/static/icons/duotone/pastafarianism.svg b/apps/client/src/static/icons/duotone/pastafarianism.svg similarity index 100% rename from src/static/icons/duotone/pastafarianism.svg rename to apps/client/src/static/icons/duotone/pastafarianism.svg diff --git a/src/static/icons/duotone/paste.svg b/apps/client/src/static/icons/duotone/paste.svg similarity index 100% rename from src/static/icons/duotone/paste.svg rename to apps/client/src/static/icons/duotone/paste.svg diff --git a/src/static/icons/duotone/pause-circle.svg b/apps/client/src/static/icons/duotone/pause-circle.svg similarity index 100% rename from src/static/icons/duotone/pause-circle.svg rename to apps/client/src/static/icons/duotone/pause-circle.svg diff --git a/src/static/icons/duotone/pause.svg b/apps/client/src/static/icons/duotone/pause.svg similarity index 100% rename from src/static/icons/duotone/pause.svg rename to apps/client/src/static/icons/duotone/pause.svg diff --git a/src/static/icons/duotone/paw-alt.svg b/apps/client/src/static/icons/duotone/paw-alt.svg similarity index 100% rename from src/static/icons/duotone/paw-alt.svg rename to apps/client/src/static/icons/duotone/paw-alt.svg diff --git a/src/static/icons/duotone/paw-claws.svg b/apps/client/src/static/icons/duotone/paw-claws.svg similarity index 100% rename from src/static/icons/duotone/paw-claws.svg rename to apps/client/src/static/icons/duotone/paw-claws.svg diff --git a/src/static/icons/duotone/paw.svg b/apps/client/src/static/icons/duotone/paw.svg similarity index 100% rename from src/static/icons/duotone/paw.svg rename to apps/client/src/static/icons/duotone/paw.svg diff --git a/src/static/icons/duotone/peace.svg b/apps/client/src/static/icons/duotone/peace.svg similarity index 100% rename from src/static/icons/duotone/peace.svg rename to apps/client/src/static/icons/duotone/peace.svg diff --git a/src/static/icons/duotone/pegasus.svg b/apps/client/src/static/icons/duotone/pegasus.svg similarity index 100% rename from src/static/icons/duotone/pegasus.svg rename to apps/client/src/static/icons/duotone/pegasus.svg diff --git a/src/static/icons/duotone/pen-alt.svg b/apps/client/src/static/icons/duotone/pen-alt.svg similarity index 100% rename from src/static/icons/duotone/pen-alt.svg rename to apps/client/src/static/icons/duotone/pen-alt.svg diff --git a/src/static/icons/duotone/pen-fancy.svg b/apps/client/src/static/icons/duotone/pen-fancy.svg similarity index 100% rename from src/static/icons/duotone/pen-fancy.svg rename to apps/client/src/static/icons/duotone/pen-fancy.svg diff --git a/src/static/icons/duotone/pen-nib.svg b/apps/client/src/static/icons/duotone/pen-nib.svg similarity index 100% rename from src/static/icons/duotone/pen-nib.svg rename to apps/client/src/static/icons/duotone/pen-nib.svg diff --git a/src/static/icons/duotone/pen-square.svg b/apps/client/src/static/icons/duotone/pen-square.svg similarity index 100% rename from src/static/icons/duotone/pen-square.svg rename to apps/client/src/static/icons/duotone/pen-square.svg diff --git a/src/static/icons/duotone/pen.svg b/apps/client/src/static/icons/duotone/pen.svg similarity index 100% rename from src/static/icons/duotone/pen.svg rename to apps/client/src/static/icons/duotone/pen.svg diff --git a/src/static/icons/duotone/pencil-alt.svg b/apps/client/src/static/icons/duotone/pencil-alt.svg similarity index 100% rename from src/static/icons/duotone/pencil-alt.svg rename to apps/client/src/static/icons/duotone/pencil-alt.svg diff --git a/src/static/icons/duotone/pencil-paintbrush.svg b/apps/client/src/static/icons/duotone/pencil-paintbrush.svg similarity index 100% rename from src/static/icons/duotone/pencil-paintbrush.svg rename to apps/client/src/static/icons/duotone/pencil-paintbrush.svg diff --git a/src/static/icons/duotone/pencil-ruler.svg b/apps/client/src/static/icons/duotone/pencil-ruler.svg similarity index 100% rename from src/static/icons/duotone/pencil-ruler.svg rename to apps/client/src/static/icons/duotone/pencil-ruler.svg diff --git a/src/static/icons/duotone/pencil.svg b/apps/client/src/static/icons/duotone/pencil.svg similarity index 100% rename from src/static/icons/duotone/pencil.svg rename to apps/client/src/static/icons/duotone/pencil.svg diff --git a/src/static/icons/duotone/pennant.svg b/apps/client/src/static/icons/duotone/pennant.svg similarity index 100% rename from src/static/icons/duotone/pennant.svg rename to apps/client/src/static/icons/duotone/pennant.svg diff --git a/src/static/icons/duotone/people-carry.svg b/apps/client/src/static/icons/duotone/people-carry.svg similarity index 100% rename from src/static/icons/duotone/people-carry.svg rename to apps/client/src/static/icons/duotone/people-carry.svg diff --git a/src/static/icons/duotone/pepper-hot.svg b/apps/client/src/static/icons/duotone/pepper-hot.svg similarity index 100% rename from src/static/icons/duotone/pepper-hot.svg rename to apps/client/src/static/icons/duotone/pepper-hot.svg diff --git a/src/static/icons/duotone/percent.svg b/apps/client/src/static/icons/duotone/percent.svg similarity index 100% rename from src/static/icons/duotone/percent.svg rename to apps/client/src/static/icons/duotone/percent.svg diff --git a/src/static/icons/duotone/percentage.svg b/apps/client/src/static/icons/duotone/percentage.svg similarity index 100% rename from src/static/icons/duotone/percentage.svg rename to apps/client/src/static/icons/duotone/percentage.svg diff --git a/src/static/icons/duotone/person-booth.svg b/apps/client/src/static/icons/duotone/person-booth.svg similarity index 100% rename from src/static/icons/duotone/person-booth.svg rename to apps/client/src/static/icons/duotone/person-booth.svg diff --git a/src/static/icons/duotone/person-carry.svg b/apps/client/src/static/icons/duotone/person-carry.svg similarity index 100% rename from src/static/icons/duotone/person-carry.svg rename to apps/client/src/static/icons/duotone/person-carry.svg diff --git a/src/static/icons/duotone/person-dolly-empty.svg b/apps/client/src/static/icons/duotone/person-dolly-empty.svg similarity index 100% rename from src/static/icons/duotone/person-dolly-empty.svg rename to apps/client/src/static/icons/duotone/person-dolly-empty.svg diff --git a/src/static/icons/duotone/person-dolly.svg b/apps/client/src/static/icons/duotone/person-dolly.svg similarity index 100% rename from src/static/icons/duotone/person-dolly.svg rename to apps/client/src/static/icons/duotone/person-dolly.svg diff --git a/src/static/icons/duotone/person-sign.svg b/apps/client/src/static/icons/duotone/person-sign.svg similarity index 100% rename from src/static/icons/duotone/person-sign.svg rename to apps/client/src/static/icons/duotone/person-sign.svg diff --git a/src/static/icons/duotone/phone-alt.svg b/apps/client/src/static/icons/duotone/phone-alt.svg similarity index 100% rename from src/static/icons/duotone/phone-alt.svg rename to apps/client/src/static/icons/duotone/phone-alt.svg diff --git a/src/static/icons/duotone/phone-laptop.svg b/apps/client/src/static/icons/duotone/phone-laptop.svg similarity index 100% rename from src/static/icons/duotone/phone-laptop.svg rename to apps/client/src/static/icons/duotone/phone-laptop.svg diff --git a/src/static/icons/duotone/phone-office.svg b/apps/client/src/static/icons/duotone/phone-office.svg similarity index 100% rename from src/static/icons/duotone/phone-office.svg rename to apps/client/src/static/icons/duotone/phone-office.svg diff --git a/src/static/icons/duotone/phone-plus.svg b/apps/client/src/static/icons/duotone/phone-plus.svg similarity index 100% rename from src/static/icons/duotone/phone-plus.svg rename to apps/client/src/static/icons/duotone/phone-plus.svg diff --git a/src/static/icons/duotone/phone-rotary.svg b/apps/client/src/static/icons/duotone/phone-rotary.svg similarity index 100% rename from src/static/icons/duotone/phone-rotary.svg rename to apps/client/src/static/icons/duotone/phone-rotary.svg diff --git a/src/static/icons/duotone/phone-slash.svg b/apps/client/src/static/icons/duotone/phone-slash.svg similarity index 100% rename from src/static/icons/duotone/phone-slash.svg rename to apps/client/src/static/icons/duotone/phone-slash.svg diff --git a/src/static/icons/duotone/phone-square-alt.svg b/apps/client/src/static/icons/duotone/phone-square-alt.svg similarity index 100% rename from src/static/icons/duotone/phone-square-alt.svg rename to apps/client/src/static/icons/duotone/phone-square-alt.svg diff --git a/src/static/icons/duotone/phone-square.svg b/apps/client/src/static/icons/duotone/phone-square.svg similarity index 100% rename from src/static/icons/duotone/phone-square.svg rename to apps/client/src/static/icons/duotone/phone-square.svg diff --git a/src/static/icons/duotone/phone-volume.svg b/apps/client/src/static/icons/duotone/phone-volume.svg similarity index 100% rename from src/static/icons/duotone/phone-volume.svg rename to apps/client/src/static/icons/duotone/phone-volume.svg diff --git a/src/static/icons/duotone/phone.svg b/apps/client/src/static/icons/duotone/phone.svg similarity index 100% rename from src/static/icons/duotone/phone.svg rename to apps/client/src/static/icons/duotone/phone.svg diff --git a/src/static/icons/duotone/photo-video.svg b/apps/client/src/static/icons/duotone/photo-video.svg similarity index 100% rename from src/static/icons/duotone/photo-video.svg rename to apps/client/src/static/icons/duotone/photo-video.svg diff --git a/src/static/icons/duotone/pi.svg b/apps/client/src/static/icons/duotone/pi.svg similarity index 100% rename from src/static/icons/duotone/pi.svg rename to apps/client/src/static/icons/duotone/pi.svg diff --git a/src/static/icons/duotone/piano-keyboard.svg b/apps/client/src/static/icons/duotone/piano-keyboard.svg similarity index 100% rename from src/static/icons/duotone/piano-keyboard.svg rename to apps/client/src/static/icons/duotone/piano-keyboard.svg diff --git a/src/static/icons/duotone/piano.svg b/apps/client/src/static/icons/duotone/piano.svg similarity index 100% rename from src/static/icons/duotone/piano.svg rename to apps/client/src/static/icons/duotone/piano.svg diff --git a/src/static/icons/duotone/pie.svg b/apps/client/src/static/icons/duotone/pie.svg similarity index 100% rename from src/static/icons/duotone/pie.svg rename to apps/client/src/static/icons/duotone/pie.svg diff --git a/src/static/icons/duotone/pig.svg b/apps/client/src/static/icons/duotone/pig.svg similarity index 100% rename from src/static/icons/duotone/pig.svg rename to apps/client/src/static/icons/duotone/pig.svg diff --git a/src/static/icons/duotone/piggy-bank.svg b/apps/client/src/static/icons/duotone/piggy-bank.svg similarity index 100% rename from src/static/icons/duotone/piggy-bank.svg rename to apps/client/src/static/icons/duotone/piggy-bank.svg diff --git a/src/static/icons/duotone/pills.svg b/apps/client/src/static/icons/duotone/pills.svg similarity index 100% rename from src/static/icons/duotone/pills.svg rename to apps/client/src/static/icons/duotone/pills.svg diff --git a/src/static/icons/duotone/pizza-slice.svg b/apps/client/src/static/icons/duotone/pizza-slice.svg similarity index 100% rename from src/static/icons/duotone/pizza-slice.svg rename to apps/client/src/static/icons/duotone/pizza-slice.svg diff --git a/src/static/icons/duotone/pizza.svg b/apps/client/src/static/icons/duotone/pizza.svg similarity index 100% rename from src/static/icons/duotone/pizza.svg rename to apps/client/src/static/icons/duotone/pizza.svg diff --git a/src/static/icons/duotone/place-of-worship.svg b/apps/client/src/static/icons/duotone/place-of-worship.svg similarity index 100% rename from src/static/icons/duotone/place-of-worship.svg rename to apps/client/src/static/icons/duotone/place-of-worship.svg diff --git a/src/static/icons/duotone/plane-alt.svg b/apps/client/src/static/icons/duotone/plane-alt.svg similarity index 100% rename from src/static/icons/duotone/plane-alt.svg rename to apps/client/src/static/icons/duotone/plane-alt.svg diff --git a/src/static/icons/duotone/plane-arrival.svg b/apps/client/src/static/icons/duotone/plane-arrival.svg similarity index 100% rename from src/static/icons/duotone/plane-arrival.svg rename to apps/client/src/static/icons/duotone/plane-arrival.svg diff --git a/src/static/icons/duotone/plane-departure.svg b/apps/client/src/static/icons/duotone/plane-departure.svg similarity index 100% rename from src/static/icons/duotone/plane-departure.svg rename to apps/client/src/static/icons/duotone/plane-departure.svg diff --git a/src/static/icons/duotone/plane.svg b/apps/client/src/static/icons/duotone/plane.svg similarity index 100% rename from src/static/icons/duotone/plane.svg rename to apps/client/src/static/icons/duotone/plane.svg diff --git a/src/static/icons/duotone/planet-moon.svg b/apps/client/src/static/icons/duotone/planet-moon.svg similarity index 100% rename from src/static/icons/duotone/planet-moon.svg rename to apps/client/src/static/icons/duotone/planet-moon.svg diff --git a/src/static/icons/duotone/planet-ringed.svg b/apps/client/src/static/icons/duotone/planet-ringed.svg similarity index 100% rename from src/static/icons/duotone/planet-ringed.svg rename to apps/client/src/static/icons/duotone/planet-ringed.svg diff --git a/src/static/icons/duotone/play-circle.svg b/apps/client/src/static/icons/duotone/play-circle.svg similarity index 100% rename from src/static/icons/duotone/play-circle.svg rename to apps/client/src/static/icons/duotone/play-circle.svg diff --git a/src/static/icons/duotone/play.svg b/apps/client/src/static/icons/duotone/play.svg similarity index 100% rename from src/static/icons/duotone/play.svg rename to apps/client/src/static/icons/duotone/play.svg diff --git a/src/static/icons/duotone/plug.svg b/apps/client/src/static/icons/duotone/plug.svg similarity index 100% rename from src/static/icons/duotone/plug.svg rename to apps/client/src/static/icons/duotone/plug.svg diff --git a/src/static/icons/duotone/plus-circle.svg b/apps/client/src/static/icons/duotone/plus-circle.svg similarity index 100% rename from src/static/icons/duotone/plus-circle.svg rename to apps/client/src/static/icons/duotone/plus-circle.svg diff --git a/src/static/icons/duotone/plus-hexagon.svg b/apps/client/src/static/icons/duotone/plus-hexagon.svg similarity index 100% rename from src/static/icons/duotone/plus-hexagon.svg rename to apps/client/src/static/icons/duotone/plus-hexagon.svg diff --git a/src/static/icons/duotone/plus-octagon.svg b/apps/client/src/static/icons/duotone/plus-octagon.svg similarity index 100% rename from src/static/icons/duotone/plus-octagon.svg rename to apps/client/src/static/icons/duotone/plus-octagon.svg diff --git a/src/static/icons/duotone/plus-square.svg b/apps/client/src/static/icons/duotone/plus-square.svg similarity index 100% rename from src/static/icons/duotone/plus-square.svg rename to apps/client/src/static/icons/duotone/plus-square.svg diff --git a/src/static/icons/duotone/plus.svg b/apps/client/src/static/icons/duotone/plus.svg similarity index 100% rename from src/static/icons/duotone/plus.svg rename to apps/client/src/static/icons/duotone/plus.svg diff --git a/src/static/icons/duotone/podcast.svg b/apps/client/src/static/icons/duotone/podcast.svg similarity index 100% rename from src/static/icons/duotone/podcast.svg rename to apps/client/src/static/icons/duotone/podcast.svg diff --git a/src/static/icons/duotone/podium-star.svg b/apps/client/src/static/icons/duotone/podium-star.svg similarity index 100% rename from src/static/icons/duotone/podium-star.svg rename to apps/client/src/static/icons/duotone/podium-star.svg diff --git a/src/static/icons/duotone/podium.svg b/apps/client/src/static/icons/duotone/podium.svg similarity index 100% rename from src/static/icons/duotone/podium.svg rename to apps/client/src/static/icons/duotone/podium.svg diff --git a/src/static/icons/duotone/police-box.svg b/apps/client/src/static/icons/duotone/police-box.svg similarity index 100% rename from src/static/icons/duotone/police-box.svg rename to apps/client/src/static/icons/duotone/police-box.svg diff --git a/src/static/icons/duotone/poll-h.svg b/apps/client/src/static/icons/duotone/poll-h.svg similarity index 100% rename from src/static/icons/duotone/poll-h.svg rename to apps/client/src/static/icons/duotone/poll-h.svg diff --git a/src/static/icons/duotone/poll-people.svg b/apps/client/src/static/icons/duotone/poll-people.svg similarity index 100% rename from src/static/icons/duotone/poll-people.svg rename to apps/client/src/static/icons/duotone/poll-people.svg diff --git a/src/static/icons/duotone/poll.svg b/apps/client/src/static/icons/duotone/poll.svg similarity index 100% rename from src/static/icons/duotone/poll.svg rename to apps/client/src/static/icons/duotone/poll.svg diff --git a/src/static/icons/duotone/poo-storm.svg b/apps/client/src/static/icons/duotone/poo-storm.svg similarity index 100% rename from src/static/icons/duotone/poo-storm.svg rename to apps/client/src/static/icons/duotone/poo-storm.svg diff --git a/src/static/icons/duotone/poo.svg b/apps/client/src/static/icons/duotone/poo.svg similarity index 100% rename from src/static/icons/duotone/poo.svg rename to apps/client/src/static/icons/duotone/poo.svg diff --git a/src/static/icons/duotone/poop.svg b/apps/client/src/static/icons/duotone/poop.svg similarity index 100% rename from src/static/icons/duotone/poop.svg rename to apps/client/src/static/icons/duotone/poop.svg diff --git a/src/static/icons/duotone/popcorn.svg b/apps/client/src/static/icons/duotone/popcorn.svg similarity index 100% rename from src/static/icons/duotone/popcorn.svg rename to apps/client/src/static/icons/duotone/popcorn.svg diff --git a/src/static/icons/duotone/portal-enter.svg b/apps/client/src/static/icons/duotone/portal-enter.svg similarity index 100% rename from src/static/icons/duotone/portal-enter.svg rename to apps/client/src/static/icons/duotone/portal-enter.svg diff --git a/src/static/icons/duotone/portal-exit.svg b/apps/client/src/static/icons/duotone/portal-exit.svg similarity index 100% rename from src/static/icons/duotone/portal-exit.svg rename to apps/client/src/static/icons/duotone/portal-exit.svg diff --git a/src/static/icons/duotone/portrait.svg b/apps/client/src/static/icons/duotone/portrait.svg similarity index 100% rename from src/static/icons/duotone/portrait.svg rename to apps/client/src/static/icons/duotone/portrait.svg diff --git a/src/static/icons/duotone/pound-sign.svg b/apps/client/src/static/icons/duotone/pound-sign.svg similarity index 100% rename from src/static/icons/duotone/pound-sign.svg rename to apps/client/src/static/icons/duotone/pound-sign.svg diff --git a/src/static/icons/duotone/power-off.svg b/apps/client/src/static/icons/duotone/power-off.svg similarity index 100% rename from src/static/icons/duotone/power-off.svg rename to apps/client/src/static/icons/duotone/power-off.svg diff --git a/src/static/icons/duotone/pray.svg b/apps/client/src/static/icons/duotone/pray.svg similarity index 100% rename from src/static/icons/duotone/pray.svg rename to apps/client/src/static/icons/duotone/pray.svg diff --git a/src/static/icons/duotone/praying-hands.svg b/apps/client/src/static/icons/duotone/praying-hands.svg similarity index 100% rename from src/static/icons/duotone/praying-hands.svg rename to apps/client/src/static/icons/duotone/praying-hands.svg diff --git a/src/static/icons/duotone/prescription-bottle-alt.svg b/apps/client/src/static/icons/duotone/prescription-bottle-alt.svg similarity index 100% rename from src/static/icons/duotone/prescription-bottle-alt.svg rename to apps/client/src/static/icons/duotone/prescription-bottle-alt.svg diff --git a/src/static/icons/duotone/prescription-bottle.svg b/apps/client/src/static/icons/duotone/prescription-bottle.svg similarity index 100% rename from src/static/icons/duotone/prescription-bottle.svg rename to apps/client/src/static/icons/duotone/prescription-bottle.svg diff --git a/src/static/icons/duotone/prescription.svg b/apps/client/src/static/icons/duotone/prescription.svg similarity index 100% rename from src/static/icons/duotone/prescription.svg rename to apps/client/src/static/icons/duotone/prescription.svg diff --git a/src/static/icons/duotone/presentation.svg b/apps/client/src/static/icons/duotone/presentation.svg similarity index 100% rename from src/static/icons/duotone/presentation.svg rename to apps/client/src/static/icons/duotone/presentation.svg diff --git a/src/static/icons/duotone/print-search.svg b/apps/client/src/static/icons/duotone/print-search.svg similarity index 100% rename from src/static/icons/duotone/print-search.svg rename to apps/client/src/static/icons/duotone/print-search.svg diff --git a/src/static/icons/duotone/print-slash.svg b/apps/client/src/static/icons/duotone/print-slash.svg similarity index 100% rename from src/static/icons/duotone/print-slash.svg rename to apps/client/src/static/icons/duotone/print-slash.svg diff --git a/src/static/icons/duotone/print.svg b/apps/client/src/static/icons/duotone/print.svg similarity index 100% rename from src/static/icons/duotone/print.svg rename to apps/client/src/static/icons/duotone/print.svg diff --git a/src/static/icons/duotone/procedures.svg b/apps/client/src/static/icons/duotone/procedures.svg similarity index 100% rename from src/static/icons/duotone/procedures.svg rename to apps/client/src/static/icons/duotone/procedures.svg diff --git a/src/static/icons/duotone/project-diagram.svg b/apps/client/src/static/icons/duotone/project-diagram.svg similarity index 100% rename from src/static/icons/duotone/project-diagram.svg rename to apps/client/src/static/icons/duotone/project-diagram.svg diff --git a/src/static/icons/duotone/projector.svg b/apps/client/src/static/icons/duotone/projector.svg similarity index 100% rename from src/static/icons/duotone/projector.svg rename to apps/client/src/static/icons/duotone/projector.svg diff --git a/src/static/icons/duotone/pumpkin.svg b/apps/client/src/static/icons/duotone/pumpkin.svg similarity index 100% rename from src/static/icons/duotone/pumpkin.svg rename to apps/client/src/static/icons/duotone/pumpkin.svg diff --git a/src/static/icons/duotone/puzzle-piece.svg b/apps/client/src/static/icons/duotone/puzzle-piece.svg similarity index 100% rename from src/static/icons/duotone/puzzle-piece.svg rename to apps/client/src/static/icons/duotone/puzzle-piece.svg diff --git a/src/static/icons/duotone/qrcode.svg b/apps/client/src/static/icons/duotone/qrcode.svg similarity index 100% rename from src/static/icons/duotone/qrcode.svg rename to apps/client/src/static/icons/duotone/qrcode.svg diff --git a/src/static/icons/duotone/question-circle.svg b/apps/client/src/static/icons/duotone/question-circle.svg similarity index 100% rename from src/static/icons/duotone/question-circle.svg rename to apps/client/src/static/icons/duotone/question-circle.svg diff --git a/src/static/icons/duotone/question-square.svg b/apps/client/src/static/icons/duotone/question-square.svg similarity index 100% rename from src/static/icons/duotone/question-square.svg rename to apps/client/src/static/icons/duotone/question-square.svg diff --git a/src/static/icons/duotone/question.svg b/apps/client/src/static/icons/duotone/question.svg similarity index 100% rename from src/static/icons/duotone/question.svg rename to apps/client/src/static/icons/duotone/question.svg diff --git a/src/static/icons/duotone/quidditch.svg b/apps/client/src/static/icons/duotone/quidditch.svg similarity index 100% rename from src/static/icons/duotone/quidditch.svg rename to apps/client/src/static/icons/duotone/quidditch.svg diff --git a/src/static/icons/duotone/quote-left.svg b/apps/client/src/static/icons/duotone/quote-left.svg similarity index 100% rename from src/static/icons/duotone/quote-left.svg rename to apps/client/src/static/icons/duotone/quote-left.svg diff --git a/src/static/icons/duotone/quote-right.svg b/apps/client/src/static/icons/duotone/quote-right.svg similarity index 100% rename from src/static/icons/duotone/quote-right.svg rename to apps/client/src/static/icons/duotone/quote-right.svg diff --git a/src/static/icons/duotone/quran.svg b/apps/client/src/static/icons/duotone/quran.svg similarity index 100% rename from src/static/icons/duotone/quran.svg rename to apps/client/src/static/icons/duotone/quran.svg diff --git a/src/static/icons/duotone/rabbit-fast.svg b/apps/client/src/static/icons/duotone/rabbit-fast.svg similarity index 100% rename from src/static/icons/duotone/rabbit-fast.svg rename to apps/client/src/static/icons/duotone/rabbit-fast.svg diff --git a/src/static/icons/duotone/rabbit.svg b/apps/client/src/static/icons/duotone/rabbit.svg similarity index 100% rename from src/static/icons/duotone/rabbit.svg rename to apps/client/src/static/icons/duotone/rabbit.svg diff --git a/src/static/icons/duotone/racquet.svg b/apps/client/src/static/icons/duotone/racquet.svg similarity index 100% rename from src/static/icons/duotone/racquet.svg rename to apps/client/src/static/icons/duotone/racquet.svg diff --git a/src/static/icons/duotone/radar.svg b/apps/client/src/static/icons/duotone/radar.svg similarity index 100% rename from src/static/icons/duotone/radar.svg rename to apps/client/src/static/icons/duotone/radar.svg diff --git a/src/static/icons/duotone/radiation-alt.svg b/apps/client/src/static/icons/duotone/radiation-alt.svg similarity index 100% rename from src/static/icons/duotone/radiation-alt.svg rename to apps/client/src/static/icons/duotone/radiation-alt.svg diff --git a/src/static/icons/duotone/radiation.svg b/apps/client/src/static/icons/duotone/radiation.svg similarity index 100% rename from src/static/icons/duotone/radiation.svg rename to apps/client/src/static/icons/duotone/radiation.svg diff --git a/src/static/icons/duotone/radio-alt.svg b/apps/client/src/static/icons/duotone/radio-alt.svg similarity index 100% rename from src/static/icons/duotone/radio-alt.svg rename to apps/client/src/static/icons/duotone/radio-alt.svg diff --git a/src/static/icons/duotone/radio.svg b/apps/client/src/static/icons/duotone/radio.svg similarity index 100% rename from src/static/icons/duotone/radio.svg rename to apps/client/src/static/icons/duotone/radio.svg diff --git a/src/static/icons/duotone/rainbow.svg b/apps/client/src/static/icons/duotone/rainbow.svg similarity index 100% rename from src/static/icons/duotone/rainbow.svg rename to apps/client/src/static/icons/duotone/rainbow.svg diff --git a/src/static/icons/duotone/raindrops.svg b/apps/client/src/static/icons/duotone/raindrops.svg similarity index 100% rename from src/static/icons/duotone/raindrops.svg rename to apps/client/src/static/icons/duotone/raindrops.svg diff --git a/src/static/icons/duotone/ram.svg b/apps/client/src/static/icons/duotone/ram.svg similarity index 100% rename from src/static/icons/duotone/ram.svg rename to apps/client/src/static/icons/duotone/ram.svg diff --git a/src/static/icons/duotone/ramp-loading.svg b/apps/client/src/static/icons/duotone/ramp-loading.svg similarity index 100% rename from src/static/icons/duotone/ramp-loading.svg rename to apps/client/src/static/icons/duotone/ramp-loading.svg diff --git a/src/static/icons/duotone/random.svg b/apps/client/src/static/icons/duotone/random.svg similarity index 100% rename from src/static/icons/duotone/random.svg rename to apps/client/src/static/icons/duotone/random.svg diff --git a/src/static/icons/duotone/raygun.svg b/apps/client/src/static/icons/duotone/raygun.svg similarity index 100% rename from src/static/icons/duotone/raygun.svg rename to apps/client/src/static/icons/duotone/raygun.svg diff --git a/src/static/icons/duotone/receipt.svg b/apps/client/src/static/icons/duotone/receipt.svg similarity index 100% rename from src/static/icons/duotone/receipt.svg rename to apps/client/src/static/icons/duotone/receipt.svg diff --git a/src/static/icons/duotone/record-vinyl.svg b/apps/client/src/static/icons/duotone/record-vinyl.svg similarity index 100% rename from src/static/icons/duotone/record-vinyl.svg rename to apps/client/src/static/icons/duotone/record-vinyl.svg diff --git a/src/static/icons/duotone/rectangle-landscape.svg b/apps/client/src/static/icons/duotone/rectangle-landscape.svg similarity index 100% rename from src/static/icons/duotone/rectangle-landscape.svg rename to apps/client/src/static/icons/duotone/rectangle-landscape.svg diff --git a/src/static/icons/duotone/rectangle-portrait.svg b/apps/client/src/static/icons/duotone/rectangle-portrait.svg similarity index 100% rename from src/static/icons/duotone/rectangle-portrait.svg rename to apps/client/src/static/icons/duotone/rectangle-portrait.svg diff --git a/src/static/icons/duotone/rectangle-wide.svg b/apps/client/src/static/icons/duotone/rectangle-wide.svg similarity index 100% rename from src/static/icons/duotone/rectangle-wide.svg rename to apps/client/src/static/icons/duotone/rectangle-wide.svg diff --git a/src/static/icons/duotone/recycle.svg b/apps/client/src/static/icons/duotone/recycle.svg similarity index 100% rename from src/static/icons/duotone/recycle.svg rename to apps/client/src/static/icons/duotone/recycle.svg diff --git a/src/static/icons/duotone/redo-alt.svg b/apps/client/src/static/icons/duotone/redo-alt.svg similarity index 100% rename from src/static/icons/duotone/redo-alt.svg rename to apps/client/src/static/icons/duotone/redo-alt.svg diff --git a/src/static/icons/duotone/redo.svg b/apps/client/src/static/icons/duotone/redo.svg similarity index 100% rename from src/static/icons/duotone/redo.svg rename to apps/client/src/static/icons/duotone/redo.svg diff --git a/src/static/icons/duotone/refrigerator.svg b/apps/client/src/static/icons/duotone/refrigerator.svg similarity index 100% rename from src/static/icons/duotone/refrigerator.svg rename to apps/client/src/static/icons/duotone/refrigerator.svg diff --git a/src/static/icons/duotone/registered.svg b/apps/client/src/static/icons/duotone/registered.svg similarity index 100% rename from src/static/icons/duotone/registered.svg rename to apps/client/src/static/icons/duotone/registered.svg diff --git a/src/static/icons/duotone/remove-format.svg b/apps/client/src/static/icons/duotone/remove-format.svg similarity index 100% rename from src/static/icons/duotone/remove-format.svg rename to apps/client/src/static/icons/duotone/remove-format.svg diff --git a/src/static/icons/duotone/repeat-1-alt.svg b/apps/client/src/static/icons/duotone/repeat-1-alt.svg similarity index 100% rename from src/static/icons/duotone/repeat-1-alt.svg rename to apps/client/src/static/icons/duotone/repeat-1-alt.svg diff --git a/src/static/icons/duotone/repeat-1.svg b/apps/client/src/static/icons/duotone/repeat-1.svg similarity index 100% rename from src/static/icons/duotone/repeat-1.svg rename to apps/client/src/static/icons/duotone/repeat-1.svg diff --git a/src/static/icons/duotone/repeat-alt.svg b/apps/client/src/static/icons/duotone/repeat-alt.svg similarity index 100% rename from src/static/icons/duotone/repeat-alt.svg rename to apps/client/src/static/icons/duotone/repeat-alt.svg diff --git a/src/static/icons/duotone/repeat.svg b/apps/client/src/static/icons/duotone/repeat.svg similarity index 100% rename from src/static/icons/duotone/repeat.svg rename to apps/client/src/static/icons/duotone/repeat.svg diff --git a/src/static/icons/duotone/reply-all.svg b/apps/client/src/static/icons/duotone/reply-all.svg similarity index 100% rename from src/static/icons/duotone/reply-all.svg rename to apps/client/src/static/icons/duotone/reply-all.svg diff --git a/src/static/icons/duotone/reply.svg b/apps/client/src/static/icons/duotone/reply.svg similarity index 100% rename from src/static/icons/duotone/reply.svg rename to apps/client/src/static/icons/duotone/reply.svg diff --git a/src/static/icons/duotone/republican.svg b/apps/client/src/static/icons/duotone/republican.svg similarity index 100% rename from src/static/icons/duotone/republican.svg rename to apps/client/src/static/icons/duotone/republican.svg diff --git a/src/static/icons/duotone/restroom.svg b/apps/client/src/static/icons/duotone/restroom.svg similarity index 100% rename from src/static/icons/duotone/restroom.svg rename to apps/client/src/static/icons/duotone/restroom.svg diff --git a/src/static/icons/duotone/retweet-alt.svg b/apps/client/src/static/icons/duotone/retweet-alt.svg similarity index 100% rename from src/static/icons/duotone/retweet-alt.svg rename to apps/client/src/static/icons/duotone/retweet-alt.svg diff --git a/src/static/icons/duotone/retweet.svg b/apps/client/src/static/icons/duotone/retweet.svg similarity index 100% rename from src/static/icons/duotone/retweet.svg rename to apps/client/src/static/icons/duotone/retweet.svg diff --git a/src/static/icons/duotone/ribbon.svg b/apps/client/src/static/icons/duotone/ribbon.svg similarity index 100% rename from src/static/icons/duotone/ribbon.svg rename to apps/client/src/static/icons/duotone/ribbon.svg diff --git a/src/static/icons/duotone/ring.svg b/apps/client/src/static/icons/duotone/ring.svg similarity index 100% rename from src/static/icons/duotone/ring.svg rename to apps/client/src/static/icons/duotone/ring.svg diff --git a/src/static/icons/duotone/rings-wedding.svg b/apps/client/src/static/icons/duotone/rings-wedding.svg similarity index 100% rename from src/static/icons/duotone/rings-wedding.svg rename to apps/client/src/static/icons/duotone/rings-wedding.svg diff --git a/src/static/icons/duotone/road.svg b/apps/client/src/static/icons/duotone/road.svg similarity index 100% rename from src/static/icons/duotone/road.svg rename to apps/client/src/static/icons/duotone/road.svg diff --git a/src/static/icons/duotone/robot.svg b/apps/client/src/static/icons/duotone/robot.svg similarity index 100% rename from src/static/icons/duotone/robot.svg rename to apps/client/src/static/icons/duotone/robot.svg diff --git a/src/static/icons/duotone/rocket-launch.svg b/apps/client/src/static/icons/duotone/rocket-launch.svg similarity index 100% rename from src/static/icons/duotone/rocket-launch.svg rename to apps/client/src/static/icons/duotone/rocket-launch.svg diff --git a/src/static/icons/duotone/rocket.svg b/apps/client/src/static/icons/duotone/rocket.svg similarity index 100% rename from src/static/icons/duotone/rocket.svg rename to apps/client/src/static/icons/duotone/rocket.svg diff --git a/src/static/icons/duotone/route-highway.svg b/apps/client/src/static/icons/duotone/route-highway.svg similarity index 100% rename from src/static/icons/duotone/route-highway.svg rename to apps/client/src/static/icons/duotone/route-highway.svg diff --git a/src/static/icons/duotone/route-interstate.svg b/apps/client/src/static/icons/duotone/route-interstate.svg similarity index 100% rename from src/static/icons/duotone/route-interstate.svg rename to apps/client/src/static/icons/duotone/route-interstate.svg diff --git a/src/static/icons/duotone/route.svg b/apps/client/src/static/icons/duotone/route.svg similarity index 100% rename from src/static/icons/duotone/route.svg rename to apps/client/src/static/icons/duotone/route.svg diff --git a/src/static/icons/duotone/router.svg b/apps/client/src/static/icons/duotone/router.svg similarity index 100% rename from src/static/icons/duotone/router.svg rename to apps/client/src/static/icons/duotone/router.svg diff --git a/src/static/icons/duotone/rss-square.svg b/apps/client/src/static/icons/duotone/rss-square.svg similarity index 100% rename from src/static/icons/duotone/rss-square.svg rename to apps/client/src/static/icons/duotone/rss-square.svg diff --git a/src/static/icons/duotone/rss.svg b/apps/client/src/static/icons/duotone/rss.svg similarity index 100% rename from src/static/icons/duotone/rss.svg rename to apps/client/src/static/icons/duotone/rss.svg diff --git a/src/static/icons/duotone/ruble-sign.svg b/apps/client/src/static/icons/duotone/ruble-sign.svg similarity index 100% rename from src/static/icons/duotone/ruble-sign.svg rename to apps/client/src/static/icons/duotone/ruble-sign.svg diff --git a/src/static/icons/duotone/ruler-combined.svg b/apps/client/src/static/icons/duotone/ruler-combined.svg similarity index 100% rename from src/static/icons/duotone/ruler-combined.svg rename to apps/client/src/static/icons/duotone/ruler-combined.svg diff --git a/src/static/icons/duotone/ruler-horizontal.svg b/apps/client/src/static/icons/duotone/ruler-horizontal.svg similarity index 100% rename from src/static/icons/duotone/ruler-horizontal.svg rename to apps/client/src/static/icons/duotone/ruler-horizontal.svg diff --git a/src/static/icons/duotone/ruler-triangle.svg b/apps/client/src/static/icons/duotone/ruler-triangle.svg similarity index 100% rename from src/static/icons/duotone/ruler-triangle.svg rename to apps/client/src/static/icons/duotone/ruler-triangle.svg diff --git a/src/static/icons/duotone/ruler-vertical.svg b/apps/client/src/static/icons/duotone/ruler-vertical.svg similarity index 100% rename from src/static/icons/duotone/ruler-vertical.svg rename to apps/client/src/static/icons/duotone/ruler-vertical.svg diff --git a/src/static/icons/duotone/ruler.svg b/apps/client/src/static/icons/duotone/ruler.svg similarity index 100% rename from src/static/icons/duotone/ruler.svg rename to apps/client/src/static/icons/duotone/ruler.svg diff --git a/src/static/icons/duotone/running.svg b/apps/client/src/static/icons/duotone/running.svg similarity index 100% rename from src/static/icons/duotone/running.svg rename to apps/client/src/static/icons/duotone/running.svg diff --git a/src/static/icons/duotone/rupee-sign.svg b/apps/client/src/static/icons/duotone/rupee-sign.svg similarity index 100% rename from src/static/icons/duotone/rupee-sign.svg rename to apps/client/src/static/icons/duotone/rupee-sign.svg diff --git a/src/static/icons/duotone/rv.svg b/apps/client/src/static/icons/duotone/rv.svg similarity index 100% rename from src/static/icons/duotone/rv.svg rename to apps/client/src/static/icons/duotone/rv.svg diff --git a/src/static/icons/duotone/sack-dollar.svg b/apps/client/src/static/icons/duotone/sack-dollar.svg similarity index 100% rename from src/static/icons/duotone/sack-dollar.svg rename to apps/client/src/static/icons/duotone/sack-dollar.svg diff --git a/src/static/icons/duotone/sack.svg b/apps/client/src/static/icons/duotone/sack.svg similarity index 100% rename from src/static/icons/duotone/sack.svg rename to apps/client/src/static/icons/duotone/sack.svg diff --git a/src/static/icons/duotone/sad-cry.svg b/apps/client/src/static/icons/duotone/sad-cry.svg similarity index 100% rename from src/static/icons/duotone/sad-cry.svg rename to apps/client/src/static/icons/duotone/sad-cry.svg diff --git a/src/static/icons/duotone/sad-tear.svg b/apps/client/src/static/icons/duotone/sad-tear.svg similarity index 100% rename from src/static/icons/duotone/sad-tear.svg rename to apps/client/src/static/icons/duotone/sad-tear.svg diff --git a/src/static/icons/duotone/salad.svg b/apps/client/src/static/icons/duotone/salad.svg similarity index 100% rename from src/static/icons/duotone/salad.svg rename to apps/client/src/static/icons/duotone/salad.svg diff --git a/src/static/icons/duotone/sandwich.svg b/apps/client/src/static/icons/duotone/sandwich.svg similarity index 100% rename from src/static/icons/duotone/sandwich.svg rename to apps/client/src/static/icons/duotone/sandwich.svg diff --git a/src/static/icons/duotone/satellite-dish.svg b/apps/client/src/static/icons/duotone/satellite-dish.svg similarity index 100% rename from src/static/icons/duotone/satellite-dish.svg rename to apps/client/src/static/icons/duotone/satellite-dish.svg diff --git a/src/static/icons/duotone/satellite.svg b/apps/client/src/static/icons/duotone/satellite.svg similarity index 100% rename from src/static/icons/duotone/satellite.svg rename to apps/client/src/static/icons/duotone/satellite.svg diff --git a/src/static/icons/duotone/sausage.svg b/apps/client/src/static/icons/duotone/sausage.svg similarity index 100% rename from src/static/icons/duotone/sausage.svg rename to apps/client/src/static/icons/duotone/sausage.svg diff --git a/src/static/icons/duotone/save.svg b/apps/client/src/static/icons/duotone/save.svg similarity index 100% rename from src/static/icons/duotone/save.svg rename to apps/client/src/static/icons/duotone/save.svg diff --git a/src/static/icons/duotone/sax-hot.svg b/apps/client/src/static/icons/duotone/sax-hot.svg similarity index 100% rename from src/static/icons/duotone/sax-hot.svg rename to apps/client/src/static/icons/duotone/sax-hot.svg diff --git a/src/static/icons/duotone/saxophone.svg b/apps/client/src/static/icons/duotone/saxophone.svg similarity index 100% rename from src/static/icons/duotone/saxophone.svg rename to apps/client/src/static/icons/duotone/saxophone.svg diff --git a/src/static/icons/duotone/scalpel-path.svg b/apps/client/src/static/icons/duotone/scalpel-path.svg similarity index 100% rename from src/static/icons/duotone/scalpel-path.svg rename to apps/client/src/static/icons/duotone/scalpel-path.svg diff --git a/src/static/icons/duotone/scalpel.svg b/apps/client/src/static/icons/duotone/scalpel.svg similarity index 100% rename from src/static/icons/duotone/scalpel.svg rename to apps/client/src/static/icons/duotone/scalpel.svg diff --git a/src/static/icons/duotone/scanner-image.svg b/apps/client/src/static/icons/duotone/scanner-image.svg similarity index 100% rename from src/static/icons/duotone/scanner-image.svg rename to apps/client/src/static/icons/duotone/scanner-image.svg diff --git a/src/static/icons/duotone/scanner-keyboard.svg b/apps/client/src/static/icons/duotone/scanner-keyboard.svg similarity index 100% rename from src/static/icons/duotone/scanner-keyboard.svg rename to apps/client/src/static/icons/duotone/scanner-keyboard.svg diff --git a/src/static/icons/duotone/scanner-touchscreen.svg b/apps/client/src/static/icons/duotone/scanner-touchscreen.svg similarity index 100% rename from src/static/icons/duotone/scanner-touchscreen.svg rename to apps/client/src/static/icons/duotone/scanner-touchscreen.svg diff --git a/src/static/icons/duotone/scanner.svg b/apps/client/src/static/icons/duotone/scanner.svg similarity index 100% rename from src/static/icons/duotone/scanner.svg rename to apps/client/src/static/icons/duotone/scanner.svg diff --git a/src/static/icons/duotone/scarecrow.svg b/apps/client/src/static/icons/duotone/scarecrow.svg similarity index 100% rename from src/static/icons/duotone/scarecrow.svg rename to apps/client/src/static/icons/duotone/scarecrow.svg diff --git a/src/static/icons/duotone/scarf.svg b/apps/client/src/static/icons/duotone/scarf.svg similarity index 100% rename from src/static/icons/duotone/scarf.svg rename to apps/client/src/static/icons/duotone/scarf.svg diff --git a/src/static/icons/duotone/school.svg b/apps/client/src/static/icons/duotone/school.svg similarity index 100% rename from src/static/icons/duotone/school.svg rename to apps/client/src/static/icons/duotone/school.svg diff --git a/src/static/icons/duotone/screwdriver.svg b/apps/client/src/static/icons/duotone/screwdriver.svg similarity index 100% rename from src/static/icons/duotone/screwdriver.svg rename to apps/client/src/static/icons/duotone/screwdriver.svg diff --git a/src/static/icons/duotone/scroll-old.svg b/apps/client/src/static/icons/duotone/scroll-old.svg similarity index 100% rename from src/static/icons/duotone/scroll-old.svg rename to apps/client/src/static/icons/duotone/scroll-old.svg diff --git a/src/static/icons/duotone/scroll.svg b/apps/client/src/static/icons/duotone/scroll.svg similarity index 100% rename from src/static/icons/duotone/scroll.svg rename to apps/client/src/static/icons/duotone/scroll.svg diff --git a/src/static/icons/duotone/scrubber.svg b/apps/client/src/static/icons/duotone/scrubber.svg similarity index 100% rename from src/static/icons/duotone/scrubber.svg rename to apps/client/src/static/icons/duotone/scrubber.svg diff --git a/src/static/icons/duotone/scythe.svg b/apps/client/src/static/icons/duotone/scythe.svg similarity index 100% rename from src/static/icons/duotone/scythe.svg rename to apps/client/src/static/icons/duotone/scythe.svg diff --git a/src/static/icons/duotone/sd-card.svg b/apps/client/src/static/icons/duotone/sd-card.svg similarity index 100% rename from src/static/icons/duotone/sd-card.svg rename to apps/client/src/static/icons/duotone/sd-card.svg diff --git a/src/static/icons/duotone/search-dollar.svg b/apps/client/src/static/icons/duotone/search-dollar.svg similarity index 100% rename from src/static/icons/duotone/search-dollar.svg rename to apps/client/src/static/icons/duotone/search-dollar.svg diff --git a/src/static/icons/duotone/search-location.svg b/apps/client/src/static/icons/duotone/search-location.svg similarity index 100% rename from src/static/icons/duotone/search-location.svg rename to apps/client/src/static/icons/duotone/search-location.svg diff --git a/src/static/icons/duotone/search-minus.svg b/apps/client/src/static/icons/duotone/search-minus.svg similarity index 100% rename from src/static/icons/duotone/search-minus.svg rename to apps/client/src/static/icons/duotone/search-minus.svg diff --git a/src/static/icons/duotone/search-plus.svg b/apps/client/src/static/icons/duotone/search-plus.svg similarity index 100% rename from src/static/icons/duotone/search-plus.svg rename to apps/client/src/static/icons/duotone/search-plus.svg diff --git a/src/static/icons/duotone/search.svg b/apps/client/src/static/icons/duotone/search.svg similarity index 100% rename from src/static/icons/duotone/search.svg rename to apps/client/src/static/icons/duotone/search.svg diff --git a/src/static/icons/duotone/seedling.svg b/apps/client/src/static/icons/duotone/seedling.svg similarity index 100% rename from src/static/icons/duotone/seedling.svg rename to apps/client/src/static/icons/duotone/seedling.svg diff --git a/src/static/icons/duotone/send-back.svg b/apps/client/src/static/icons/duotone/send-back.svg similarity index 100% rename from src/static/icons/duotone/send-back.svg rename to apps/client/src/static/icons/duotone/send-back.svg diff --git a/src/static/icons/duotone/send-backward.svg b/apps/client/src/static/icons/duotone/send-backward.svg similarity index 100% rename from src/static/icons/duotone/send-backward.svg rename to apps/client/src/static/icons/duotone/send-backward.svg diff --git a/src/static/icons/duotone/sensor-alert.svg b/apps/client/src/static/icons/duotone/sensor-alert.svg similarity index 100% rename from src/static/icons/duotone/sensor-alert.svg rename to apps/client/src/static/icons/duotone/sensor-alert.svg diff --git a/src/static/icons/duotone/sensor-fire.svg b/apps/client/src/static/icons/duotone/sensor-fire.svg similarity index 100% rename from src/static/icons/duotone/sensor-fire.svg rename to apps/client/src/static/icons/duotone/sensor-fire.svg diff --git a/src/static/icons/duotone/sensor-on.svg b/apps/client/src/static/icons/duotone/sensor-on.svg similarity index 100% rename from src/static/icons/duotone/sensor-on.svg rename to apps/client/src/static/icons/duotone/sensor-on.svg diff --git a/src/static/icons/duotone/sensor-smoke.svg b/apps/client/src/static/icons/duotone/sensor-smoke.svg similarity index 100% rename from src/static/icons/duotone/sensor-smoke.svg rename to apps/client/src/static/icons/duotone/sensor-smoke.svg diff --git a/src/static/icons/duotone/sensor.svg b/apps/client/src/static/icons/duotone/sensor.svg similarity index 100% rename from src/static/icons/duotone/sensor.svg rename to apps/client/src/static/icons/duotone/sensor.svg diff --git a/src/static/icons/duotone/server.svg b/apps/client/src/static/icons/duotone/server.svg similarity index 100% rename from src/static/icons/duotone/server.svg rename to apps/client/src/static/icons/duotone/server.svg diff --git a/src/static/icons/duotone/shapes.svg b/apps/client/src/static/icons/duotone/shapes.svg similarity index 100% rename from src/static/icons/duotone/shapes.svg rename to apps/client/src/static/icons/duotone/shapes.svg diff --git a/src/static/icons/duotone/share-all.svg b/apps/client/src/static/icons/duotone/share-all.svg similarity index 100% rename from src/static/icons/duotone/share-all.svg rename to apps/client/src/static/icons/duotone/share-all.svg diff --git a/src/static/icons/duotone/share-alt-square.svg b/apps/client/src/static/icons/duotone/share-alt-square.svg similarity index 100% rename from src/static/icons/duotone/share-alt-square.svg rename to apps/client/src/static/icons/duotone/share-alt-square.svg diff --git a/src/static/icons/duotone/share-alt.svg b/apps/client/src/static/icons/duotone/share-alt.svg similarity index 100% rename from src/static/icons/duotone/share-alt.svg rename to apps/client/src/static/icons/duotone/share-alt.svg diff --git a/src/static/icons/duotone/share-square.svg b/apps/client/src/static/icons/duotone/share-square.svg similarity index 100% rename from src/static/icons/duotone/share-square.svg rename to apps/client/src/static/icons/duotone/share-square.svg diff --git a/src/static/icons/duotone/share.svg b/apps/client/src/static/icons/duotone/share.svg similarity index 100% rename from src/static/icons/duotone/share.svg rename to apps/client/src/static/icons/duotone/share.svg diff --git a/src/static/icons/duotone/sheep.svg b/apps/client/src/static/icons/duotone/sheep.svg similarity index 100% rename from src/static/icons/duotone/sheep.svg rename to apps/client/src/static/icons/duotone/sheep.svg diff --git a/src/static/icons/duotone/shekel-sign.svg b/apps/client/src/static/icons/duotone/shekel-sign.svg similarity index 100% rename from src/static/icons/duotone/shekel-sign.svg rename to apps/client/src/static/icons/duotone/shekel-sign.svg diff --git a/src/static/icons/duotone/shield-alt.svg b/apps/client/src/static/icons/duotone/shield-alt.svg similarity index 100% rename from src/static/icons/duotone/shield-alt.svg rename to apps/client/src/static/icons/duotone/shield-alt.svg diff --git a/src/static/icons/duotone/shield-check.svg b/apps/client/src/static/icons/duotone/shield-check.svg similarity index 100% rename from src/static/icons/duotone/shield-check.svg rename to apps/client/src/static/icons/duotone/shield-check.svg diff --git a/src/static/icons/duotone/shield-cross.svg b/apps/client/src/static/icons/duotone/shield-cross.svg similarity index 100% rename from src/static/icons/duotone/shield-cross.svg rename to apps/client/src/static/icons/duotone/shield-cross.svg diff --git a/src/static/icons/duotone/shield.svg b/apps/client/src/static/icons/duotone/shield.svg similarity index 100% rename from src/static/icons/duotone/shield.svg rename to apps/client/src/static/icons/duotone/shield.svg diff --git a/src/static/icons/duotone/ship.svg b/apps/client/src/static/icons/duotone/ship.svg similarity index 100% rename from src/static/icons/duotone/ship.svg rename to apps/client/src/static/icons/duotone/ship.svg diff --git a/src/static/icons/duotone/shipping-fast.svg b/apps/client/src/static/icons/duotone/shipping-fast.svg similarity index 100% rename from src/static/icons/duotone/shipping-fast.svg rename to apps/client/src/static/icons/duotone/shipping-fast.svg diff --git a/src/static/icons/duotone/shipping-timed.svg b/apps/client/src/static/icons/duotone/shipping-timed.svg similarity index 100% rename from src/static/icons/duotone/shipping-timed.svg rename to apps/client/src/static/icons/duotone/shipping-timed.svg diff --git a/src/static/icons/duotone/shish-kebab.svg b/apps/client/src/static/icons/duotone/shish-kebab.svg similarity index 100% rename from src/static/icons/duotone/shish-kebab.svg rename to apps/client/src/static/icons/duotone/shish-kebab.svg diff --git a/src/static/icons/duotone/shoe-prints.svg b/apps/client/src/static/icons/duotone/shoe-prints.svg similarity index 100% rename from src/static/icons/duotone/shoe-prints.svg rename to apps/client/src/static/icons/duotone/shoe-prints.svg diff --git a/src/static/icons/duotone/shopping-bag.svg b/apps/client/src/static/icons/duotone/shopping-bag.svg similarity index 100% rename from src/static/icons/duotone/shopping-bag.svg rename to apps/client/src/static/icons/duotone/shopping-bag.svg diff --git a/src/static/icons/duotone/shopping-basket.svg b/apps/client/src/static/icons/duotone/shopping-basket.svg similarity index 100% rename from src/static/icons/duotone/shopping-basket.svg rename to apps/client/src/static/icons/duotone/shopping-basket.svg diff --git a/src/static/icons/duotone/shopping-cart.svg b/apps/client/src/static/icons/duotone/shopping-cart.svg similarity index 100% rename from src/static/icons/duotone/shopping-cart.svg rename to apps/client/src/static/icons/duotone/shopping-cart.svg diff --git a/src/static/icons/duotone/shovel-snow.svg b/apps/client/src/static/icons/duotone/shovel-snow.svg similarity index 100% rename from src/static/icons/duotone/shovel-snow.svg rename to apps/client/src/static/icons/duotone/shovel-snow.svg diff --git a/src/static/icons/duotone/shovel.svg b/apps/client/src/static/icons/duotone/shovel.svg similarity index 100% rename from src/static/icons/duotone/shovel.svg rename to apps/client/src/static/icons/duotone/shovel.svg diff --git a/src/static/icons/duotone/shower.svg b/apps/client/src/static/icons/duotone/shower.svg similarity index 100% rename from src/static/icons/duotone/shower.svg rename to apps/client/src/static/icons/duotone/shower.svg diff --git a/src/static/icons/duotone/shredder.svg b/apps/client/src/static/icons/duotone/shredder.svg similarity index 100% rename from src/static/icons/duotone/shredder.svg rename to apps/client/src/static/icons/duotone/shredder.svg diff --git a/src/static/icons/duotone/shuttle-van.svg b/apps/client/src/static/icons/duotone/shuttle-van.svg similarity index 100% rename from src/static/icons/duotone/shuttle-van.svg rename to apps/client/src/static/icons/duotone/shuttle-van.svg diff --git a/src/static/icons/duotone/shuttlecock.svg b/apps/client/src/static/icons/duotone/shuttlecock.svg similarity index 100% rename from src/static/icons/duotone/shuttlecock.svg rename to apps/client/src/static/icons/duotone/shuttlecock.svg diff --git a/src/static/icons/duotone/sickle.svg b/apps/client/src/static/icons/duotone/sickle.svg similarity index 100% rename from src/static/icons/duotone/sickle.svg rename to apps/client/src/static/icons/duotone/sickle.svg diff --git a/src/static/icons/duotone/sigma.svg b/apps/client/src/static/icons/duotone/sigma.svg similarity index 100% rename from src/static/icons/duotone/sigma.svg rename to apps/client/src/static/icons/duotone/sigma.svg diff --git a/src/static/icons/duotone/sign-in-alt.svg b/apps/client/src/static/icons/duotone/sign-in-alt.svg similarity index 100% rename from src/static/icons/duotone/sign-in-alt.svg rename to apps/client/src/static/icons/duotone/sign-in-alt.svg diff --git a/src/static/icons/duotone/sign-in.svg b/apps/client/src/static/icons/duotone/sign-in.svg similarity index 100% rename from src/static/icons/duotone/sign-in.svg rename to apps/client/src/static/icons/duotone/sign-in.svg diff --git a/src/static/icons/duotone/sign-language.svg b/apps/client/src/static/icons/duotone/sign-language.svg similarity index 100% rename from src/static/icons/duotone/sign-language.svg rename to apps/client/src/static/icons/duotone/sign-language.svg diff --git a/src/static/icons/duotone/sign-out-alt.svg b/apps/client/src/static/icons/duotone/sign-out-alt.svg similarity index 100% rename from src/static/icons/duotone/sign-out-alt.svg rename to apps/client/src/static/icons/duotone/sign-out-alt.svg diff --git a/src/static/icons/duotone/sign-out.svg b/apps/client/src/static/icons/duotone/sign-out.svg similarity index 100% rename from src/static/icons/duotone/sign-out.svg rename to apps/client/src/static/icons/duotone/sign-out.svg diff --git a/src/static/icons/duotone/sign.svg b/apps/client/src/static/icons/duotone/sign.svg similarity index 100% rename from src/static/icons/duotone/sign.svg rename to apps/client/src/static/icons/duotone/sign.svg diff --git a/src/static/icons/duotone/signal-1.svg b/apps/client/src/static/icons/duotone/signal-1.svg similarity index 100% rename from src/static/icons/duotone/signal-1.svg rename to apps/client/src/static/icons/duotone/signal-1.svg diff --git a/src/static/icons/duotone/signal-2.svg b/apps/client/src/static/icons/duotone/signal-2.svg similarity index 100% rename from src/static/icons/duotone/signal-2.svg rename to apps/client/src/static/icons/duotone/signal-2.svg diff --git a/src/static/icons/duotone/signal-3.svg b/apps/client/src/static/icons/duotone/signal-3.svg similarity index 100% rename from src/static/icons/duotone/signal-3.svg rename to apps/client/src/static/icons/duotone/signal-3.svg diff --git a/src/static/icons/duotone/signal-4.svg b/apps/client/src/static/icons/duotone/signal-4.svg similarity index 100% rename from src/static/icons/duotone/signal-4.svg rename to apps/client/src/static/icons/duotone/signal-4.svg diff --git a/src/static/icons/duotone/signal-alt-1.svg b/apps/client/src/static/icons/duotone/signal-alt-1.svg similarity index 100% rename from src/static/icons/duotone/signal-alt-1.svg rename to apps/client/src/static/icons/duotone/signal-alt-1.svg diff --git a/src/static/icons/duotone/signal-alt-2.svg b/apps/client/src/static/icons/duotone/signal-alt-2.svg similarity index 100% rename from src/static/icons/duotone/signal-alt-2.svg rename to apps/client/src/static/icons/duotone/signal-alt-2.svg diff --git a/src/static/icons/duotone/signal-alt-3.svg b/apps/client/src/static/icons/duotone/signal-alt-3.svg similarity index 100% rename from src/static/icons/duotone/signal-alt-3.svg rename to apps/client/src/static/icons/duotone/signal-alt-3.svg diff --git a/src/static/icons/duotone/signal-alt-slash.svg b/apps/client/src/static/icons/duotone/signal-alt-slash.svg similarity index 100% rename from src/static/icons/duotone/signal-alt-slash.svg rename to apps/client/src/static/icons/duotone/signal-alt-slash.svg diff --git a/src/static/icons/duotone/signal-alt.svg b/apps/client/src/static/icons/duotone/signal-alt.svg similarity index 100% rename from src/static/icons/duotone/signal-alt.svg rename to apps/client/src/static/icons/duotone/signal-alt.svg diff --git a/src/static/icons/duotone/signal-slash.svg b/apps/client/src/static/icons/duotone/signal-slash.svg similarity index 100% rename from src/static/icons/duotone/signal-slash.svg rename to apps/client/src/static/icons/duotone/signal-slash.svg diff --git a/src/static/icons/duotone/signal-stream.svg b/apps/client/src/static/icons/duotone/signal-stream.svg similarity index 100% rename from src/static/icons/duotone/signal-stream.svg rename to apps/client/src/static/icons/duotone/signal-stream.svg diff --git a/src/static/icons/duotone/signal.svg b/apps/client/src/static/icons/duotone/signal.svg similarity index 100% rename from src/static/icons/duotone/signal.svg rename to apps/client/src/static/icons/duotone/signal.svg diff --git a/src/static/icons/duotone/signature.svg b/apps/client/src/static/icons/duotone/signature.svg similarity index 100% rename from src/static/icons/duotone/signature.svg rename to apps/client/src/static/icons/duotone/signature.svg diff --git a/src/static/icons/duotone/sim-card.svg b/apps/client/src/static/icons/duotone/sim-card.svg similarity index 100% rename from src/static/icons/duotone/sim-card.svg rename to apps/client/src/static/icons/duotone/sim-card.svg diff --git a/src/static/icons/duotone/siren-on.svg b/apps/client/src/static/icons/duotone/siren-on.svg similarity index 100% rename from src/static/icons/duotone/siren-on.svg rename to apps/client/src/static/icons/duotone/siren-on.svg diff --git a/src/static/icons/duotone/siren.svg b/apps/client/src/static/icons/duotone/siren.svg similarity index 100% rename from src/static/icons/duotone/siren.svg rename to apps/client/src/static/icons/duotone/siren.svg diff --git a/src/static/icons/duotone/sitemap.svg b/apps/client/src/static/icons/duotone/sitemap.svg similarity index 100% rename from src/static/icons/duotone/sitemap.svg rename to apps/client/src/static/icons/duotone/sitemap.svg diff --git a/src/static/icons/duotone/skating.svg b/apps/client/src/static/icons/duotone/skating.svg similarity index 100% rename from src/static/icons/duotone/skating.svg rename to apps/client/src/static/icons/duotone/skating.svg diff --git a/src/static/icons/duotone/skeleton.svg b/apps/client/src/static/icons/duotone/skeleton.svg similarity index 100% rename from src/static/icons/duotone/skeleton.svg rename to apps/client/src/static/icons/duotone/skeleton.svg diff --git a/src/static/icons/duotone/ski-jump.svg b/apps/client/src/static/icons/duotone/ski-jump.svg similarity index 100% rename from src/static/icons/duotone/ski-jump.svg rename to apps/client/src/static/icons/duotone/ski-jump.svg diff --git a/src/static/icons/duotone/ski-lift.svg b/apps/client/src/static/icons/duotone/ski-lift.svg similarity index 100% rename from src/static/icons/duotone/ski-lift.svg rename to apps/client/src/static/icons/duotone/ski-lift.svg diff --git a/src/static/icons/duotone/skiing-nordic.svg b/apps/client/src/static/icons/duotone/skiing-nordic.svg similarity index 100% rename from src/static/icons/duotone/skiing-nordic.svg rename to apps/client/src/static/icons/duotone/skiing-nordic.svg diff --git a/src/static/icons/duotone/skiing.svg b/apps/client/src/static/icons/duotone/skiing.svg similarity index 100% rename from src/static/icons/duotone/skiing.svg rename to apps/client/src/static/icons/duotone/skiing.svg diff --git a/src/static/icons/duotone/skull-cow.svg b/apps/client/src/static/icons/duotone/skull-cow.svg similarity index 100% rename from src/static/icons/duotone/skull-cow.svg rename to apps/client/src/static/icons/duotone/skull-cow.svg diff --git a/src/static/icons/duotone/skull-crossbones.svg b/apps/client/src/static/icons/duotone/skull-crossbones.svg similarity index 100% rename from src/static/icons/duotone/skull-crossbones.svg rename to apps/client/src/static/icons/duotone/skull-crossbones.svg diff --git a/src/static/icons/duotone/skull.svg b/apps/client/src/static/icons/duotone/skull.svg similarity index 100% rename from src/static/icons/duotone/skull.svg rename to apps/client/src/static/icons/duotone/skull.svg diff --git a/src/static/icons/duotone/slash.svg b/apps/client/src/static/icons/duotone/slash.svg similarity index 100% rename from src/static/icons/duotone/slash.svg rename to apps/client/src/static/icons/duotone/slash.svg diff --git a/src/static/icons/duotone/sledding.svg b/apps/client/src/static/icons/duotone/sledding.svg similarity index 100% rename from src/static/icons/duotone/sledding.svg rename to apps/client/src/static/icons/duotone/sledding.svg diff --git a/src/static/icons/duotone/sleigh.svg b/apps/client/src/static/icons/duotone/sleigh.svg similarity index 100% rename from src/static/icons/duotone/sleigh.svg rename to apps/client/src/static/icons/duotone/sleigh.svg diff --git a/src/static/icons/duotone/sliders-h-square.svg b/apps/client/src/static/icons/duotone/sliders-h-square.svg similarity index 100% rename from src/static/icons/duotone/sliders-h-square.svg rename to apps/client/src/static/icons/duotone/sliders-h-square.svg diff --git a/src/static/icons/duotone/sliders-h.svg b/apps/client/src/static/icons/duotone/sliders-h.svg similarity index 100% rename from src/static/icons/duotone/sliders-h.svg rename to apps/client/src/static/icons/duotone/sliders-h.svg diff --git a/src/static/icons/duotone/sliders-v-square.svg b/apps/client/src/static/icons/duotone/sliders-v-square.svg similarity index 100% rename from src/static/icons/duotone/sliders-v-square.svg rename to apps/client/src/static/icons/duotone/sliders-v-square.svg diff --git a/src/static/icons/duotone/sliders-v.svg b/apps/client/src/static/icons/duotone/sliders-v.svg similarity index 100% rename from src/static/icons/duotone/sliders-v.svg rename to apps/client/src/static/icons/duotone/sliders-v.svg diff --git a/src/static/icons/duotone/smile-beam.svg b/apps/client/src/static/icons/duotone/smile-beam.svg similarity index 100% rename from src/static/icons/duotone/smile-beam.svg rename to apps/client/src/static/icons/duotone/smile-beam.svg diff --git a/src/static/icons/duotone/smile-plus.svg b/apps/client/src/static/icons/duotone/smile-plus.svg similarity index 100% rename from src/static/icons/duotone/smile-plus.svg rename to apps/client/src/static/icons/duotone/smile-plus.svg diff --git a/src/static/icons/duotone/smile-wink.svg b/apps/client/src/static/icons/duotone/smile-wink.svg similarity index 100% rename from src/static/icons/duotone/smile-wink.svg rename to apps/client/src/static/icons/duotone/smile-wink.svg diff --git a/src/static/icons/duotone/smile.svg b/apps/client/src/static/icons/duotone/smile.svg similarity index 100% rename from src/static/icons/duotone/smile.svg rename to apps/client/src/static/icons/duotone/smile.svg diff --git a/src/static/icons/duotone/smog.svg b/apps/client/src/static/icons/duotone/smog.svg similarity index 100% rename from src/static/icons/duotone/smog.svg rename to apps/client/src/static/icons/duotone/smog.svg diff --git a/src/static/icons/duotone/smoke.svg b/apps/client/src/static/icons/duotone/smoke.svg similarity index 100% rename from src/static/icons/duotone/smoke.svg rename to apps/client/src/static/icons/duotone/smoke.svg diff --git a/src/static/icons/duotone/smoking-ban.svg b/apps/client/src/static/icons/duotone/smoking-ban.svg similarity index 100% rename from src/static/icons/duotone/smoking-ban.svg rename to apps/client/src/static/icons/duotone/smoking-ban.svg diff --git a/src/static/icons/duotone/smoking.svg b/apps/client/src/static/icons/duotone/smoking.svg similarity index 100% rename from src/static/icons/duotone/smoking.svg rename to apps/client/src/static/icons/duotone/smoking.svg diff --git a/src/static/icons/duotone/sms.svg b/apps/client/src/static/icons/duotone/sms.svg similarity index 100% rename from src/static/icons/duotone/sms.svg rename to apps/client/src/static/icons/duotone/sms.svg diff --git a/src/static/icons/duotone/snake.svg b/apps/client/src/static/icons/duotone/snake.svg similarity index 100% rename from src/static/icons/duotone/snake.svg rename to apps/client/src/static/icons/duotone/snake.svg diff --git a/src/static/icons/duotone/snooze.svg b/apps/client/src/static/icons/duotone/snooze.svg similarity index 100% rename from src/static/icons/duotone/snooze.svg rename to apps/client/src/static/icons/duotone/snooze.svg diff --git a/src/static/icons/duotone/snow-blowing.svg b/apps/client/src/static/icons/duotone/snow-blowing.svg similarity index 100% rename from src/static/icons/duotone/snow-blowing.svg rename to apps/client/src/static/icons/duotone/snow-blowing.svg diff --git a/src/static/icons/duotone/snowboarding.svg b/apps/client/src/static/icons/duotone/snowboarding.svg similarity index 100% rename from src/static/icons/duotone/snowboarding.svg rename to apps/client/src/static/icons/duotone/snowboarding.svg diff --git a/src/static/icons/duotone/snowflake.svg b/apps/client/src/static/icons/duotone/snowflake.svg similarity index 100% rename from src/static/icons/duotone/snowflake.svg rename to apps/client/src/static/icons/duotone/snowflake.svg diff --git a/src/static/icons/duotone/snowflakes.svg b/apps/client/src/static/icons/duotone/snowflakes.svg similarity index 100% rename from src/static/icons/duotone/snowflakes.svg rename to apps/client/src/static/icons/duotone/snowflakes.svg diff --git a/src/static/icons/duotone/snowman.svg b/apps/client/src/static/icons/duotone/snowman.svg similarity index 100% rename from src/static/icons/duotone/snowman.svg rename to apps/client/src/static/icons/duotone/snowman.svg diff --git a/src/static/icons/duotone/snowmobile.svg b/apps/client/src/static/icons/duotone/snowmobile.svg similarity index 100% rename from src/static/icons/duotone/snowmobile.svg rename to apps/client/src/static/icons/duotone/snowmobile.svg diff --git a/src/static/icons/duotone/snowplow.svg b/apps/client/src/static/icons/duotone/snowplow.svg similarity index 100% rename from src/static/icons/duotone/snowplow.svg rename to apps/client/src/static/icons/duotone/snowplow.svg diff --git a/src/static/icons/duotone/socks.svg b/apps/client/src/static/icons/duotone/socks.svg similarity index 100% rename from src/static/icons/duotone/socks.svg rename to apps/client/src/static/icons/duotone/socks.svg diff --git a/src/static/icons/duotone/solar-panel.svg b/apps/client/src/static/icons/duotone/solar-panel.svg similarity index 100% rename from src/static/icons/duotone/solar-panel.svg rename to apps/client/src/static/icons/duotone/solar-panel.svg diff --git a/src/static/icons/duotone/solar-system.svg b/apps/client/src/static/icons/duotone/solar-system.svg similarity index 100% rename from src/static/icons/duotone/solar-system.svg rename to apps/client/src/static/icons/duotone/solar-system.svg diff --git a/src/static/icons/duotone/sort-alpha-down-alt.svg b/apps/client/src/static/icons/duotone/sort-alpha-down-alt.svg similarity index 100% rename from src/static/icons/duotone/sort-alpha-down-alt.svg rename to apps/client/src/static/icons/duotone/sort-alpha-down-alt.svg diff --git a/src/static/icons/duotone/sort-alpha-down.svg b/apps/client/src/static/icons/duotone/sort-alpha-down.svg similarity index 100% rename from src/static/icons/duotone/sort-alpha-down.svg rename to apps/client/src/static/icons/duotone/sort-alpha-down.svg diff --git a/src/static/icons/duotone/sort-alpha-up-alt.svg b/apps/client/src/static/icons/duotone/sort-alpha-up-alt.svg similarity index 100% rename from src/static/icons/duotone/sort-alpha-up-alt.svg rename to apps/client/src/static/icons/duotone/sort-alpha-up-alt.svg diff --git a/src/static/icons/duotone/sort-alpha-up.svg b/apps/client/src/static/icons/duotone/sort-alpha-up.svg similarity index 100% rename from src/static/icons/duotone/sort-alpha-up.svg rename to apps/client/src/static/icons/duotone/sort-alpha-up.svg diff --git a/src/static/icons/duotone/sort-alt.svg b/apps/client/src/static/icons/duotone/sort-alt.svg similarity index 100% rename from src/static/icons/duotone/sort-alt.svg rename to apps/client/src/static/icons/duotone/sort-alt.svg diff --git a/src/static/icons/duotone/sort-amount-down-alt.svg b/apps/client/src/static/icons/duotone/sort-amount-down-alt.svg similarity index 100% rename from src/static/icons/duotone/sort-amount-down-alt.svg rename to apps/client/src/static/icons/duotone/sort-amount-down-alt.svg diff --git a/src/static/icons/duotone/sort-amount-down.svg b/apps/client/src/static/icons/duotone/sort-amount-down.svg similarity index 100% rename from src/static/icons/duotone/sort-amount-down.svg rename to apps/client/src/static/icons/duotone/sort-amount-down.svg diff --git a/src/static/icons/duotone/sort-amount-up-alt.svg b/apps/client/src/static/icons/duotone/sort-amount-up-alt.svg similarity index 100% rename from src/static/icons/duotone/sort-amount-up-alt.svg rename to apps/client/src/static/icons/duotone/sort-amount-up-alt.svg diff --git a/src/static/icons/duotone/sort-amount-up.svg b/apps/client/src/static/icons/duotone/sort-amount-up.svg similarity index 100% rename from src/static/icons/duotone/sort-amount-up.svg rename to apps/client/src/static/icons/duotone/sort-amount-up.svg diff --git a/src/static/icons/duotone/sort-circle-down.svg b/apps/client/src/static/icons/duotone/sort-circle-down.svg similarity index 100% rename from src/static/icons/duotone/sort-circle-down.svg rename to apps/client/src/static/icons/duotone/sort-circle-down.svg diff --git a/src/static/icons/duotone/sort-circle-up.svg b/apps/client/src/static/icons/duotone/sort-circle-up.svg similarity index 100% rename from src/static/icons/duotone/sort-circle-up.svg rename to apps/client/src/static/icons/duotone/sort-circle-up.svg diff --git a/src/static/icons/duotone/sort-circle.svg b/apps/client/src/static/icons/duotone/sort-circle.svg similarity index 100% rename from src/static/icons/duotone/sort-circle.svg rename to apps/client/src/static/icons/duotone/sort-circle.svg diff --git a/src/static/icons/duotone/sort-down.svg b/apps/client/src/static/icons/duotone/sort-down.svg similarity index 100% rename from src/static/icons/duotone/sort-down.svg rename to apps/client/src/static/icons/duotone/sort-down.svg diff --git a/src/static/icons/duotone/sort-numeric-down-alt.svg b/apps/client/src/static/icons/duotone/sort-numeric-down-alt.svg similarity index 100% rename from src/static/icons/duotone/sort-numeric-down-alt.svg rename to apps/client/src/static/icons/duotone/sort-numeric-down-alt.svg diff --git a/src/static/icons/duotone/sort-numeric-down.svg b/apps/client/src/static/icons/duotone/sort-numeric-down.svg similarity index 100% rename from src/static/icons/duotone/sort-numeric-down.svg rename to apps/client/src/static/icons/duotone/sort-numeric-down.svg diff --git a/src/static/icons/duotone/sort-numeric-up-alt.svg b/apps/client/src/static/icons/duotone/sort-numeric-up-alt.svg similarity index 100% rename from src/static/icons/duotone/sort-numeric-up-alt.svg rename to apps/client/src/static/icons/duotone/sort-numeric-up-alt.svg diff --git a/src/static/icons/duotone/sort-numeric-up.svg b/apps/client/src/static/icons/duotone/sort-numeric-up.svg similarity index 100% rename from src/static/icons/duotone/sort-numeric-up.svg rename to apps/client/src/static/icons/duotone/sort-numeric-up.svg diff --git a/src/static/icons/duotone/sort-shapes-down-alt.svg b/apps/client/src/static/icons/duotone/sort-shapes-down-alt.svg similarity index 100% rename from src/static/icons/duotone/sort-shapes-down-alt.svg rename to apps/client/src/static/icons/duotone/sort-shapes-down-alt.svg diff --git a/src/static/icons/duotone/sort-shapes-down.svg b/apps/client/src/static/icons/duotone/sort-shapes-down.svg similarity index 100% rename from src/static/icons/duotone/sort-shapes-down.svg rename to apps/client/src/static/icons/duotone/sort-shapes-down.svg diff --git a/src/static/icons/duotone/sort-shapes-up-alt.svg b/apps/client/src/static/icons/duotone/sort-shapes-up-alt.svg similarity index 100% rename from src/static/icons/duotone/sort-shapes-up-alt.svg rename to apps/client/src/static/icons/duotone/sort-shapes-up-alt.svg diff --git a/src/static/icons/duotone/sort-shapes-up.svg b/apps/client/src/static/icons/duotone/sort-shapes-up.svg similarity index 100% rename from src/static/icons/duotone/sort-shapes-up.svg rename to apps/client/src/static/icons/duotone/sort-shapes-up.svg diff --git a/src/static/icons/duotone/sort-size-down-alt.svg b/apps/client/src/static/icons/duotone/sort-size-down-alt.svg similarity index 100% rename from src/static/icons/duotone/sort-size-down-alt.svg rename to apps/client/src/static/icons/duotone/sort-size-down-alt.svg diff --git a/src/static/icons/duotone/sort-size-down.svg b/apps/client/src/static/icons/duotone/sort-size-down.svg similarity index 100% rename from src/static/icons/duotone/sort-size-down.svg rename to apps/client/src/static/icons/duotone/sort-size-down.svg diff --git a/src/static/icons/duotone/sort-size-up-alt.svg b/apps/client/src/static/icons/duotone/sort-size-up-alt.svg similarity index 100% rename from src/static/icons/duotone/sort-size-up-alt.svg rename to apps/client/src/static/icons/duotone/sort-size-up-alt.svg diff --git a/src/static/icons/duotone/sort-size-up.svg b/apps/client/src/static/icons/duotone/sort-size-up.svg similarity index 100% rename from src/static/icons/duotone/sort-size-up.svg rename to apps/client/src/static/icons/duotone/sort-size-up.svg diff --git a/src/static/icons/duotone/sort-up.svg b/apps/client/src/static/icons/duotone/sort-up.svg similarity index 100% rename from src/static/icons/duotone/sort-up.svg rename to apps/client/src/static/icons/duotone/sort-up.svg diff --git a/src/static/icons/duotone/sort.svg b/apps/client/src/static/icons/duotone/sort.svg similarity index 100% rename from src/static/icons/duotone/sort.svg rename to apps/client/src/static/icons/duotone/sort.svg diff --git a/src/static/icons/duotone/soup.svg b/apps/client/src/static/icons/duotone/soup.svg similarity index 100% rename from src/static/icons/duotone/soup.svg rename to apps/client/src/static/icons/duotone/soup.svg diff --git a/src/static/icons/duotone/spa.svg b/apps/client/src/static/icons/duotone/spa.svg similarity index 100% rename from src/static/icons/duotone/spa.svg rename to apps/client/src/static/icons/duotone/spa.svg diff --git a/src/static/icons/duotone/space-shuttle.svg b/apps/client/src/static/icons/duotone/space-shuttle.svg similarity index 100% rename from src/static/icons/duotone/space-shuttle.svg rename to apps/client/src/static/icons/duotone/space-shuttle.svg diff --git a/src/static/icons/duotone/space-station-moon-alt.svg b/apps/client/src/static/icons/duotone/space-station-moon-alt.svg similarity index 100% rename from src/static/icons/duotone/space-station-moon-alt.svg rename to apps/client/src/static/icons/duotone/space-station-moon-alt.svg diff --git a/src/static/icons/duotone/space-station-moon.svg b/apps/client/src/static/icons/duotone/space-station-moon.svg similarity index 100% rename from src/static/icons/duotone/space-station-moon.svg rename to apps/client/src/static/icons/duotone/space-station-moon.svg diff --git a/src/static/icons/duotone/spade.svg b/apps/client/src/static/icons/duotone/spade.svg similarity index 100% rename from src/static/icons/duotone/spade.svg rename to apps/client/src/static/icons/duotone/spade.svg diff --git a/src/static/icons/duotone/sparkles.svg b/apps/client/src/static/icons/duotone/sparkles.svg similarity index 100% rename from src/static/icons/duotone/sparkles.svg rename to apps/client/src/static/icons/duotone/sparkles.svg diff --git a/src/static/icons/duotone/speaker.svg b/apps/client/src/static/icons/duotone/speaker.svg similarity index 100% rename from src/static/icons/duotone/speaker.svg rename to apps/client/src/static/icons/duotone/speaker.svg diff --git a/src/static/icons/duotone/speakers.svg b/apps/client/src/static/icons/duotone/speakers.svg similarity index 100% rename from src/static/icons/duotone/speakers.svg rename to apps/client/src/static/icons/duotone/speakers.svg diff --git a/src/static/icons/duotone/spell-check.svg b/apps/client/src/static/icons/duotone/spell-check.svg similarity index 100% rename from src/static/icons/duotone/spell-check.svg rename to apps/client/src/static/icons/duotone/spell-check.svg diff --git a/src/static/icons/duotone/spider-black-widow.svg b/apps/client/src/static/icons/duotone/spider-black-widow.svg similarity index 100% rename from src/static/icons/duotone/spider-black-widow.svg rename to apps/client/src/static/icons/duotone/spider-black-widow.svg diff --git a/src/static/icons/duotone/spider-web.svg b/apps/client/src/static/icons/duotone/spider-web.svg similarity index 100% rename from src/static/icons/duotone/spider-web.svg rename to apps/client/src/static/icons/duotone/spider-web.svg diff --git a/src/static/icons/duotone/spider.svg b/apps/client/src/static/icons/duotone/spider.svg similarity index 100% rename from src/static/icons/duotone/spider.svg rename to apps/client/src/static/icons/duotone/spider.svg diff --git a/src/static/icons/duotone/spinner-third.svg b/apps/client/src/static/icons/duotone/spinner-third.svg similarity index 100% rename from src/static/icons/duotone/spinner-third.svg rename to apps/client/src/static/icons/duotone/spinner-third.svg diff --git a/src/static/icons/duotone/spinner.svg b/apps/client/src/static/icons/duotone/spinner.svg similarity index 100% rename from src/static/icons/duotone/spinner.svg rename to apps/client/src/static/icons/duotone/spinner.svg diff --git a/src/static/icons/duotone/splotch.svg b/apps/client/src/static/icons/duotone/splotch.svg similarity index 100% rename from src/static/icons/duotone/splotch.svg rename to apps/client/src/static/icons/duotone/splotch.svg diff --git a/src/static/icons/duotone/spray-can.svg b/apps/client/src/static/icons/duotone/spray-can.svg similarity index 100% rename from src/static/icons/duotone/spray-can.svg rename to apps/client/src/static/icons/duotone/spray-can.svg diff --git a/src/static/icons/duotone/sprinkler.svg b/apps/client/src/static/icons/duotone/sprinkler.svg similarity index 100% rename from src/static/icons/duotone/sprinkler.svg rename to apps/client/src/static/icons/duotone/sprinkler.svg diff --git a/src/static/icons/duotone/square-full.svg b/apps/client/src/static/icons/duotone/square-full.svg similarity index 100% rename from src/static/icons/duotone/square-full.svg rename to apps/client/src/static/icons/duotone/square-full.svg diff --git a/src/static/icons/duotone/square-root-alt.svg b/apps/client/src/static/icons/duotone/square-root-alt.svg similarity index 100% rename from src/static/icons/duotone/square-root-alt.svg rename to apps/client/src/static/icons/duotone/square-root-alt.svg diff --git a/src/static/icons/duotone/square-root.svg b/apps/client/src/static/icons/duotone/square-root.svg similarity index 100% rename from src/static/icons/duotone/square-root.svg rename to apps/client/src/static/icons/duotone/square-root.svg diff --git a/src/static/icons/duotone/square.svg b/apps/client/src/static/icons/duotone/square.svg similarity index 100% rename from src/static/icons/duotone/square.svg rename to apps/client/src/static/icons/duotone/square.svg diff --git a/src/static/icons/duotone/squirrel.svg b/apps/client/src/static/icons/duotone/squirrel.svg similarity index 100% rename from src/static/icons/duotone/squirrel.svg rename to apps/client/src/static/icons/duotone/squirrel.svg diff --git a/src/static/icons/duotone/staff.svg b/apps/client/src/static/icons/duotone/staff.svg similarity index 100% rename from src/static/icons/duotone/staff.svg rename to apps/client/src/static/icons/duotone/staff.svg diff --git a/src/static/icons/duotone/stamp.svg b/apps/client/src/static/icons/duotone/stamp.svg similarity index 100% rename from src/static/icons/duotone/stamp.svg rename to apps/client/src/static/icons/duotone/stamp.svg diff --git a/src/static/icons/duotone/star-and-crescent.svg b/apps/client/src/static/icons/duotone/star-and-crescent.svg similarity index 100% rename from src/static/icons/duotone/star-and-crescent.svg rename to apps/client/src/static/icons/duotone/star-and-crescent.svg diff --git a/src/static/icons/duotone/star-christmas.svg b/apps/client/src/static/icons/duotone/star-christmas.svg similarity index 100% rename from src/static/icons/duotone/star-christmas.svg rename to apps/client/src/static/icons/duotone/star-christmas.svg diff --git a/src/static/icons/duotone/star-exclamation.svg b/apps/client/src/static/icons/duotone/star-exclamation.svg similarity index 100% rename from src/static/icons/duotone/star-exclamation.svg rename to apps/client/src/static/icons/duotone/star-exclamation.svg diff --git a/src/static/icons/duotone/star-half-alt.svg b/apps/client/src/static/icons/duotone/star-half-alt.svg similarity index 100% rename from src/static/icons/duotone/star-half-alt.svg rename to apps/client/src/static/icons/duotone/star-half-alt.svg diff --git a/src/static/icons/duotone/star-half.svg b/apps/client/src/static/icons/duotone/star-half.svg similarity index 100% rename from src/static/icons/duotone/star-half.svg rename to apps/client/src/static/icons/duotone/star-half.svg diff --git a/src/static/icons/duotone/star-of-david.svg b/apps/client/src/static/icons/duotone/star-of-david.svg similarity index 100% rename from src/static/icons/duotone/star-of-david.svg rename to apps/client/src/static/icons/duotone/star-of-david.svg diff --git a/src/static/icons/duotone/star-of-life.svg b/apps/client/src/static/icons/duotone/star-of-life.svg similarity index 100% rename from src/static/icons/duotone/star-of-life.svg rename to apps/client/src/static/icons/duotone/star-of-life.svg diff --git a/src/static/icons/duotone/star-shooting.svg b/apps/client/src/static/icons/duotone/star-shooting.svg similarity index 100% rename from src/static/icons/duotone/star-shooting.svg rename to apps/client/src/static/icons/duotone/star-shooting.svg diff --git a/src/static/icons/duotone/star.svg b/apps/client/src/static/icons/duotone/star.svg similarity index 100% rename from src/static/icons/duotone/star.svg rename to apps/client/src/static/icons/duotone/star.svg diff --git a/src/static/icons/duotone/starfighter-alt.svg b/apps/client/src/static/icons/duotone/starfighter-alt.svg similarity index 100% rename from src/static/icons/duotone/starfighter-alt.svg rename to apps/client/src/static/icons/duotone/starfighter-alt.svg diff --git a/src/static/icons/duotone/starfighter.svg b/apps/client/src/static/icons/duotone/starfighter.svg similarity index 100% rename from src/static/icons/duotone/starfighter.svg rename to apps/client/src/static/icons/duotone/starfighter.svg diff --git a/src/static/icons/duotone/stars.svg b/apps/client/src/static/icons/duotone/stars.svg similarity index 100% rename from src/static/icons/duotone/stars.svg rename to apps/client/src/static/icons/duotone/stars.svg diff --git a/src/static/icons/duotone/starship-freighter.svg b/apps/client/src/static/icons/duotone/starship-freighter.svg similarity index 100% rename from src/static/icons/duotone/starship-freighter.svg rename to apps/client/src/static/icons/duotone/starship-freighter.svg diff --git a/src/static/icons/duotone/starship.svg b/apps/client/src/static/icons/duotone/starship.svg similarity index 100% rename from src/static/icons/duotone/starship.svg rename to apps/client/src/static/icons/duotone/starship.svg diff --git a/src/static/icons/duotone/steak.svg b/apps/client/src/static/icons/duotone/steak.svg similarity index 100% rename from src/static/icons/duotone/steak.svg rename to apps/client/src/static/icons/duotone/steak.svg diff --git a/src/static/icons/duotone/steering-wheel.svg b/apps/client/src/static/icons/duotone/steering-wheel.svg similarity index 100% rename from src/static/icons/duotone/steering-wheel.svg rename to apps/client/src/static/icons/duotone/steering-wheel.svg diff --git a/src/static/icons/duotone/step-backward.svg b/apps/client/src/static/icons/duotone/step-backward.svg similarity index 100% rename from src/static/icons/duotone/step-backward.svg rename to apps/client/src/static/icons/duotone/step-backward.svg diff --git a/src/static/icons/duotone/step-forward.svg b/apps/client/src/static/icons/duotone/step-forward.svg similarity index 100% rename from src/static/icons/duotone/step-forward.svg rename to apps/client/src/static/icons/duotone/step-forward.svg diff --git a/src/static/icons/duotone/stethoscope.svg b/apps/client/src/static/icons/duotone/stethoscope.svg similarity index 100% rename from src/static/icons/duotone/stethoscope.svg rename to apps/client/src/static/icons/duotone/stethoscope.svg diff --git a/src/static/icons/duotone/sticky-note.svg b/apps/client/src/static/icons/duotone/sticky-note.svg similarity index 100% rename from src/static/icons/duotone/sticky-note.svg rename to apps/client/src/static/icons/duotone/sticky-note.svg diff --git a/src/static/icons/duotone/stocking.svg b/apps/client/src/static/icons/duotone/stocking.svg similarity index 100% rename from src/static/icons/duotone/stocking.svg rename to apps/client/src/static/icons/duotone/stocking.svg diff --git a/src/static/icons/duotone/stomach.svg b/apps/client/src/static/icons/duotone/stomach.svg similarity index 100% rename from src/static/icons/duotone/stomach.svg rename to apps/client/src/static/icons/duotone/stomach.svg diff --git a/src/static/icons/duotone/stop-circle.svg b/apps/client/src/static/icons/duotone/stop-circle.svg similarity index 100% rename from src/static/icons/duotone/stop-circle.svg rename to apps/client/src/static/icons/duotone/stop-circle.svg diff --git a/src/static/icons/duotone/stop.svg b/apps/client/src/static/icons/duotone/stop.svg similarity index 100% rename from src/static/icons/duotone/stop.svg rename to apps/client/src/static/icons/duotone/stop.svg diff --git a/src/static/icons/duotone/stopwatch.svg b/apps/client/src/static/icons/duotone/stopwatch.svg similarity index 100% rename from src/static/icons/duotone/stopwatch.svg rename to apps/client/src/static/icons/duotone/stopwatch.svg diff --git a/src/static/icons/duotone/store-alt.svg b/apps/client/src/static/icons/duotone/store-alt.svg similarity index 100% rename from src/static/icons/duotone/store-alt.svg rename to apps/client/src/static/icons/duotone/store-alt.svg diff --git a/src/static/icons/duotone/store.svg b/apps/client/src/static/icons/duotone/store.svg similarity index 100% rename from src/static/icons/duotone/store.svg rename to apps/client/src/static/icons/duotone/store.svg diff --git a/src/static/icons/duotone/stream.svg b/apps/client/src/static/icons/duotone/stream.svg similarity index 100% rename from src/static/icons/duotone/stream.svg rename to apps/client/src/static/icons/duotone/stream.svg diff --git a/src/static/icons/duotone/street-view.svg b/apps/client/src/static/icons/duotone/street-view.svg similarity index 100% rename from src/static/icons/duotone/street-view.svg rename to apps/client/src/static/icons/duotone/street-view.svg diff --git a/src/static/icons/duotone/stretcher.svg b/apps/client/src/static/icons/duotone/stretcher.svg similarity index 100% rename from src/static/icons/duotone/stretcher.svg rename to apps/client/src/static/icons/duotone/stretcher.svg diff --git a/src/static/icons/duotone/strikethrough.svg b/apps/client/src/static/icons/duotone/strikethrough.svg similarity index 100% rename from src/static/icons/duotone/strikethrough.svg rename to apps/client/src/static/icons/duotone/strikethrough.svg diff --git a/src/static/icons/duotone/stroopwafel.svg b/apps/client/src/static/icons/duotone/stroopwafel.svg similarity index 100% rename from src/static/icons/duotone/stroopwafel.svg rename to apps/client/src/static/icons/duotone/stroopwafel.svg diff --git a/src/static/icons/duotone/subscript.svg b/apps/client/src/static/icons/duotone/subscript.svg similarity index 100% rename from src/static/icons/duotone/subscript.svg rename to apps/client/src/static/icons/duotone/subscript.svg diff --git a/src/static/icons/duotone/subway.svg b/apps/client/src/static/icons/duotone/subway.svg similarity index 100% rename from src/static/icons/duotone/subway.svg rename to apps/client/src/static/icons/duotone/subway.svg diff --git a/src/static/icons/duotone/suitcase-rolling.svg b/apps/client/src/static/icons/duotone/suitcase-rolling.svg similarity index 100% rename from src/static/icons/duotone/suitcase-rolling.svg rename to apps/client/src/static/icons/duotone/suitcase-rolling.svg diff --git a/src/static/icons/duotone/suitcase.svg b/apps/client/src/static/icons/duotone/suitcase.svg similarity index 100% rename from src/static/icons/duotone/suitcase.svg rename to apps/client/src/static/icons/duotone/suitcase.svg diff --git a/src/static/icons/duotone/sun-cloud.svg b/apps/client/src/static/icons/duotone/sun-cloud.svg similarity index 100% rename from src/static/icons/duotone/sun-cloud.svg rename to apps/client/src/static/icons/duotone/sun-cloud.svg diff --git a/src/static/icons/duotone/sun-dust.svg b/apps/client/src/static/icons/duotone/sun-dust.svg similarity index 100% rename from src/static/icons/duotone/sun-dust.svg rename to apps/client/src/static/icons/duotone/sun-dust.svg diff --git a/src/static/icons/duotone/sun-haze.svg b/apps/client/src/static/icons/duotone/sun-haze.svg similarity index 100% rename from src/static/icons/duotone/sun-haze.svg rename to apps/client/src/static/icons/duotone/sun-haze.svg diff --git a/src/static/icons/duotone/sun.svg b/apps/client/src/static/icons/duotone/sun.svg similarity index 100% rename from src/static/icons/duotone/sun.svg rename to apps/client/src/static/icons/duotone/sun.svg diff --git a/src/static/icons/duotone/sunglasses.svg b/apps/client/src/static/icons/duotone/sunglasses.svg similarity index 100% rename from src/static/icons/duotone/sunglasses.svg rename to apps/client/src/static/icons/duotone/sunglasses.svg diff --git a/src/static/icons/duotone/sunrise.svg b/apps/client/src/static/icons/duotone/sunrise.svg similarity index 100% rename from src/static/icons/duotone/sunrise.svg rename to apps/client/src/static/icons/duotone/sunrise.svg diff --git a/src/static/icons/duotone/sunset.svg b/apps/client/src/static/icons/duotone/sunset.svg similarity index 100% rename from src/static/icons/duotone/sunset.svg rename to apps/client/src/static/icons/duotone/sunset.svg diff --git a/src/static/icons/duotone/superscript.svg b/apps/client/src/static/icons/duotone/superscript.svg similarity index 100% rename from src/static/icons/duotone/superscript.svg rename to apps/client/src/static/icons/duotone/superscript.svg diff --git a/src/static/icons/duotone/surprise.svg b/apps/client/src/static/icons/duotone/surprise.svg similarity index 100% rename from src/static/icons/duotone/surprise.svg rename to apps/client/src/static/icons/duotone/surprise.svg diff --git a/src/static/icons/duotone/swatchbook.svg b/apps/client/src/static/icons/duotone/swatchbook.svg similarity index 100% rename from src/static/icons/duotone/swatchbook.svg rename to apps/client/src/static/icons/duotone/swatchbook.svg diff --git a/src/static/icons/duotone/swimmer.svg b/apps/client/src/static/icons/duotone/swimmer.svg similarity index 100% rename from src/static/icons/duotone/swimmer.svg rename to apps/client/src/static/icons/duotone/swimmer.svg diff --git a/src/static/icons/duotone/swimming-pool.svg b/apps/client/src/static/icons/duotone/swimming-pool.svg similarity index 100% rename from src/static/icons/duotone/swimming-pool.svg rename to apps/client/src/static/icons/duotone/swimming-pool.svg diff --git a/src/static/icons/duotone/sword-laser-alt.svg b/apps/client/src/static/icons/duotone/sword-laser-alt.svg similarity index 100% rename from src/static/icons/duotone/sword-laser-alt.svg rename to apps/client/src/static/icons/duotone/sword-laser-alt.svg diff --git a/src/static/icons/duotone/sword-laser.svg b/apps/client/src/static/icons/duotone/sword-laser.svg similarity index 100% rename from src/static/icons/duotone/sword-laser.svg rename to apps/client/src/static/icons/duotone/sword-laser.svg diff --git a/src/static/icons/duotone/sword.svg b/apps/client/src/static/icons/duotone/sword.svg similarity index 100% rename from src/static/icons/duotone/sword.svg rename to apps/client/src/static/icons/duotone/sword.svg diff --git a/src/static/icons/duotone/swords-laser.svg b/apps/client/src/static/icons/duotone/swords-laser.svg similarity index 100% rename from src/static/icons/duotone/swords-laser.svg rename to apps/client/src/static/icons/duotone/swords-laser.svg diff --git a/src/static/icons/duotone/swords.svg b/apps/client/src/static/icons/duotone/swords.svg similarity index 100% rename from src/static/icons/duotone/swords.svg rename to apps/client/src/static/icons/duotone/swords.svg diff --git a/src/static/icons/duotone/synagogue.svg b/apps/client/src/static/icons/duotone/synagogue.svg similarity index 100% rename from src/static/icons/duotone/synagogue.svg rename to apps/client/src/static/icons/duotone/synagogue.svg diff --git a/src/static/icons/duotone/sync-alt.svg b/apps/client/src/static/icons/duotone/sync-alt.svg similarity index 100% rename from src/static/icons/duotone/sync-alt.svg rename to apps/client/src/static/icons/duotone/sync-alt.svg diff --git a/src/static/icons/duotone/sync.svg b/apps/client/src/static/icons/duotone/sync.svg similarity index 100% rename from src/static/icons/duotone/sync.svg rename to apps/client/src/static/icons/duotone/sync.svg diff --git a/src/static/icons/duotone/syringe.svg b/apps/client/src/static/icons/duotone/syringe.svg similarity index 100% rename from src/static/icons/duotone/syringe.svg rename to apps/client/src/static/icons/duotone/syringe.svg diff --git a/src/static/icons/duotone/table-tennis.svg b/apps/client/src/static/icons/duotone/table-tennis.svg similarity index 100% rename from src/static/icons/duotone/table-tennis.svg rename to apps/client/src/static/icons/duotone/table-tennis.svg diff --git a/src/static/icons/duotone/table.svg b/apps/client/src/static/icons/duotone/table.svg similarity index 100% rename from src/static/icons/duotone/table.svg rename to apps/client/src/static/icons/duotone/table.svg diff --git a/src/static/icons/duotone/tablet-alt.svg b/apps/client/src/static/icons/duotone/tablet-alt.svg similarity index 100% rename from src/static/icons/duotone/tablet-alt.svg rename to apps/client/src/static/icons/duotone/tablet-alt.svg diff --git a/src/static/icons/duotone/tablet-android-alt.svg b/apps/client/src/static/icons/duotone/tablet-android-alt.svg similarity index 100% rename from src/static/icons/duotone/tablet-android-alt.svg rename to apps/client/src/static/icons/duotone/tablet-android-alt.svg diff --git a/src/static/icons/duotone/tablet-android.svg b/apps/client/src/static/icons/duotone/tablet-android.svg similarity index 100% rename from src/static/icons/duotone/tablet-android.svg rename to apps/client/src/static/icons/duotone/tablet-android.svg diff --git a/src/static/icons/duotone/tablet-rugged.svg b/apps/client/src/static/icons/duotone/tablet-rugged.svg similarity index 100% rename from src/static/icons/duotone/tablet-rugged.svg rename to apps/client/src/static/icons/duotone/tablet-rugged.svg diff --git a/src/static/icons/duotone/tablet.svg b/apps/client/src/static/icons/duotone/tablet.svg similarity index 100% rename from src/static/icons/duotone/tablet.svg rename to apps/client/src/static/icons/duotone/tablet.svg diff --git a/src/static/icons/duotone/tablets.svg b/apps/client/src/static/icons/duotone/tablets.svg similarity index 100% rename from src/static/icons/duotone/tablets.svg rename to apps/client/src/static/icons/duotone/tablets.svg diff --git a/src/static/icons/duotone/tachometer-alt-average.svg b/apps/client/src/static/icons/duotone/tachometer-alt-average.svg similarity index 100% rename from src/static/icons/duotone/tachometer-alt-average.svg rename to apps/client/src/static/icons/duotone/tachometer-alt-average.svg diff --git a/src/static/icons/duotone/tachometer-alt-fast.svg b/apps/client/src/static/icons/duotone/tachometer-alt-fast.svg similarity index 100% rename from src/static/icons/duotone/tachometer-alt-fast.svg rename to apps/client/src/static/icons/duotone/tachometer-alt-fast.svg diff --git a/src/static/icons/duotone/tachometer-alt-fastest.svg b/apps/client/src/static/icons/duotone/tachometer-alt-fastest.svg similarity index 100% rename from src/static/icons/duotone/tachometer-alt-fastest.svg rename to apps/client/src/static/icons/duotone/tachometer-alt-fastest.svg diff --git a/src/static/icons/duotone/tachometer-alt-slow.svg b/apps/client/src/static/icons/duotone/tachometer-alt-slow.svg similarity index 100% rename from src/static/icons/duotone/tachometer-alt-slow.svg rename to apps/client/src/static/icons/duotone/tachometer-alt-slow.svg diff --git a/src/static/icons/duotone/tachometer-alt-slowest.svg b/apps/client/src/static/icons/duotone/tachometer-alt-slowest.svg similarity index 100% rename from src/static/icons/duotone/tachometer-alt-slowest.svg rename to apps/client/src/static/icons/duotone/tachometer-alt-slowest.svg diff --git a/src/static/icons/duotone/tachometer-alt.svg b/apps/client/src/static/icons/duotone/tachometer-alt.svg similarity index 100% rename from src/static/icons/duotone/tachometer-alt.svg rename to apps/client/src/static/icons/duotone/tachometer-alt.svg diff --git a/src/static/icons/duotone/tachometer-average.svg b/apps/client/src/static/icons/duotone/tachometer-average.svg similarity index 100% rename from src/static/icons/duotone/tachometer-average.svg rename to apps/client/src/static/icons/duotone/tachometer-average.svg diff --git a/src/static/icons/duotone/tachometer-fast.svg b/apps/client/src/static/icons/duotone/tachometer-fast.svg similarity index 100% rename from src/static/icons/duotone/tachometer-fast.svg rename to apps/client/src/static/icons/duotone/tachometer-fast.svg diff --git a/src/static/icons/duotone/tachometer-fastest.svg b/apps/client/src/static/icons/duotone/tachometer-fastest.svg similarity index 100% rename from src/static/icons/duotone/tachometer-fastest.svg rename to apps/client/src/static/icons/duotone/tachometer-fastest.svg diff --git a/src/static/icons/duotone/tachometer-slow.svg b/apps/client/src/static/icons/duotone/tachometer-slow.svg similarity index 100% rename from src/static/icons/duotone/tachometer-slow.svg rename to apps/client/src/static/icons/duotone/tachometer-slow.svg diff --git a/src/static/icons/duotone/tachometer-slowest.svg b/apps/client/src/static/icons/duotone/tachometer-slowest.svg similarity index 100% rename from src/static/icons/duotone/tachometer-slowest.svg rename to apps/client/src/static/icons/duotone/tachometer-slowest.svg diff --git a/src/static/icons/duotone/tachometer.svg b/apps/client/src/static/icons/duotone/tachometer.svg similarity index 100% rename from src/static/icons/duotone/tachometer.svg rename to apps/client/src/static/icons/duotone/tachometer.svg diff --git a/src/static/icons/duotone/taco.svg b/apps/client/src/static/icons/duotone/taco.svg similarity index 100% rename from src/static/icons/duotone/taco.svg rename to apps/client/src/static/icons/duotone/taco.svg diff --git a/src/static/icons/duotone/tag.svg b/apps/client/src/static/icons/duotone/tag.svg similarity index 100% rename from src/static/icons/duotone/tag.svg rename to apps/client/src/static/icons/duotone/tag.svg diff --git a/src/static/icons/duotone/tags.svg b/apps/client/src/static/icons/duotone/tags.svg similarity index 100% rename from src/static/icons/duotone/tags.svg rename to apps/client/src/static/icons/duotone/tags.svg diff --git a/src/static/icons/duotone/tally.svg b/apps/client/src/static/icons/duotone/tally.svg similarity index 100% rename from src/static/icons/duotone/tally.svg rename to apps/client/src/static/icons/duotone/tally.svg diff --git a/src/static/icons/duotone/tanakh.svg b/apps/client/src/static/icons/duotone/tanakh.svg similarity index 100% rename from src/static/icons/duotone/tanakh.svg rename to apps/client/src/static/icons/duotone/tanakh.svg diff --git a/src/static/icons/duotone/tape.svg b/apps/client/src/static/icons/duotone/tape.svg similarity index 100% rename from src/static/icons/duotone/tape.svg rename to apps/client/src/static/icons/duotone/tape.svg diff --git a/src/static/icons/duotone/tasks-alt.svg b/apps/client/src/static/icons/duotone/tasks-alt.svg similarity index 100% rename from src/static/icons/duotone/tasks-alt.svg rename to apps/client/src/static/icons/duotone/tasks-alt.svg diff --git a/src/static/icons/duotone/tasks.svg b/apps/client/src/static/icons/duotone/tasks.svg similarity index 100% rename from src/static/icons/duotone/tasks.svg rename to apps/client/src/static/icons/duotone/tasks.svg diff --git a/src/static/icons/duotone/taxi.svg b/apps/client/src/static/icons/duotone/taxi.svg similarity index 100% rename from src/static/icons/duotone/taxi.svg rename to apps/client/src/static/icons/duotone/taxi.svg diff --git a/src/static/icons/duotone/teeth-open.svg b/apps/client/src/static/icons/duotone/teeth-open.svg similarity index 100% rename from src/static/icons/duotone/teeth-open.svg rename to apps/client/src/static/icons/duotone/teeth-open.svg diff --git a/src/static/icons/duotone/teeth.svg b/apps/client/src/static/icons/duotone/teeth.svg similarity index 100% rename from src/static/icons/duotone/teeth.svg rename to apps/client/src/static/icons/duotone/teeth.svg diff --git a/src/static/icons/duotone/telescope.svg b/apps/client/src/static/icons/duotone/telescope.svg similarity index 100% rename from src/static/icons/duotone/telescope.svg rename to apps/client/src/static/icons/duotone/telescope.svg diff --git a/src/static/icons/duotone/temperature-down.svg b/apps/client/src/static/icons/duotone/temperature-down.svg similarity index 100% rename from src/static/icons/duotone/temperature-down.svg rename to apps/client/src/static/icons/duotone/temperature-down.svg diff --git a/src/static/icons/duotone/temperature-frigid.svg b/apps/client/src/static/icons/duotone/temperature-frigid.svg similarity index 100% rename from src/static/icons/duotone/temperature-frigid.svg rename to apps/client/src/static/icons/duotone/temperature-frigid.svg diff --git a/src/static/icons/duotone/temperature-high.svg b/apps/client/src/static/icons/duotone/temperature-high.svg similarity index 100% rename from src/static/icons/duotone/temperature-high.svg rename to apps/client/src/static/icons/duotone/temperature-high.svg diff --git a/src/static/icons/duotone/temperature-hot.svg b/apps/client/src/static/icons/duotone/temperature-hot.svg similarity index 100% rename from src/static/icons/duotone/temperature-hot.svg rename to apps/client/src/static/icons/duotone/temperature-hot.svg diff --git a/src/static/icons/duotone/temperature-low.svg b/apps/client/src/static/icons/duotone/temperature-low.svg similarity index 100% rename from src/static/icons/duotone/temperature-low.svg rename to apps/client/src/static/icons/duotone/temperature-low.svg diff --git a/src/static/icons/duotone/temperature-up.svg b/apps/client/src/static/icons/duotone/temperature-up.svg similarity index 100% rename from src/static/icons/duotone/temperature-up.svg rename to apps/client/src/static/icons/duotone/temperature-up.svg diff --git a/src/static/icons/duotone/tenge.svg b/apps/client/src/static/icons/duotone/tenge.svg similarity index 100% rename from src/static/icons/duotone/tenge.svg rename to apps/client/src/static/icons/duotone/tenge.svg diff --git a/src/static/icons/duotone/tennis-ball.svg b/apps/client/src/static/icons/duotone/tennis-ball.svg similarity index 100% rename from src/static/icons/duotone/tennis-ball.svg rename to apps/client/src/static/icons/duotone/tennis-ball.svg diff --git a/src/static/icons/duotone/terminal.svg b/apps/client/src/static/icons/duotone/terminal.svg similarity index 100% rename from src/static/icons/duotone/terminal.svg rename to apps/client/src/static/icons/duotone/terminal.svg diff --git a/src/static/icons/duotone/text-height.svg b/apps/client/src/static/icons/duotone/text-height.svg similarity index 100% rename from src/static/icons/duotone/text-height.svg rename to apps/client/src/static/icons/duotone/text-height.svg diff --git a/src/static/icons/duotone/text-size.svg b/apps/client/src/static/icons/duotone/text-size.svg similarity index 100% rename from src/static/icons/duotone/text-size.svg rename to apps/client/src/static/icons/duotone/text-size.svg diff --git a/src/static/icons/duotone/text-width.svg b/apps/client/src/static/icons/duotone/text-width.svg similarity index 100% rename from src/static/icons/duotone/text-width.svg rename to apps/client/src/static/icons/duotone/text-width.svg diff --git a/src/static/icons/duotone/text.svg b/apps/client/src/static/icons/duotone/text.svg similarity index 100% rename from src/static/icons/duotone/text.svg rename to apps/client/src/static/icons/duotone/text.svg diff --git a/src/static/icons/duotone/th-large.svg b/apps/client/src/static/icons/duotone/th-large.svg similarity index 100% rename from src/static/icons/duotone/th-large.svg rename to apps/client/src/static/icons/duotone/th-large.svg diff --git a/src/static/icons/duotone/th-list.svg b/apps/client/src/static/icons/duotone/th-list.svg similarity index 100% rename from src/static/icons/duotone/th-list.svg rename to apps/client/src/static/icons/duotone/th-list.svg diff --git a/src/static/icons/duotone/th.svg b/apps/client/src/static/icons/duotone/th.svg similarity index 100% rename from src/static/icons/duotone/th.svg rename to apps/client/src/static/icons/duotone/th.svg diff --git a/src/static/icons/duotone/theater-masks.svg b/apps/client/src/static/icons/duotone/theater-masks.svg similarity index 100% rename from src/static/icons/duotone/theater-masks.svg rename to apps/client/src/static/icons/duotone/theater-masks.svg diff --git a/src/static/icons/duotone/thermometer-empty.svg b/apps/client/src/static/icons/duotone/thermometer-empty.svg similarity index 100% rename from src/static/icons/duotone/thermometer-empty.svg rename to apps/client/src/static/icons/duotone/thermometer-empty.svg diff --git a/src/static/icons/duotone/thermometer-full.svg b/apps/client/src/static/icons/duotone/thermometer-full.svg similarity index 100% rename from src/static/icons/duotone/thermometer-full.svg rename to apps/client/src/static/icons/duotone/thermometer-full.svg diff --git a/src/static/icons/duotone/thermometer-half.svg b/apps/client/src/static/icons/duotone/thermometer-half.svg similarity index 100% rename from src/static/icons/duotone/thermometer-half.svg rename to apps/client/src/static/icons/duotone/thermometer-half.svg diff --git a/src/static/icons/duotone/thermometer-quarter.svg b/apps/client/src/static/icons/duotone/thermometer-quarter.svg similarity index 100% rename from src/static/icons/duotone/thermometer-quarter.svg rename to apps/client/src/static/icons/duotone/thermometer-quarter.svg diff --git a/src/static/icons/duotone/thermometer-three-quarters.svg b/apps/client/src/static/icons/duotone/thermometer-three-quarters.svg similarity index 100% rename from src/static/icons/duotone/thermometer-three-quarters.svg rename to apps/client/src/static/icons/duotone/thermometer-three-quarters.svg diff --git a/src/static/icons/duotone/thermometer.svg b/apps/client/src/static/icons/duotone/thermometer.svg similarity index 100% rename from src/static/icons/duotone/thermometer.svg rename to apps/client/src/static/icons/duotone/thermometer.svg diff --git a/src/static/icons/duotone/theta.svg b/apps/client/src/static/icons/duotone/theta.svg similarity index 100% rename from src/static/icons/duotone/theta.svg rename to apps/client/src/static/icons/duotone/theta.svg diff --git a/src/static/icons/duotone/thumbs-down.svg b/apps/client/src/static/icons/duotone/thumbs-down.svg similarity index 100% rename from src/static/icons/duotone/thumbs-down.svg rename to apps/client/src/static/icons/duotone/thumbs-down.svg diff --git a/src/static/icons/duotone/thumbs-up.svg b/apps/client/src/static/icons/duotone/thumbs-up.svg similarity index 100% rename from src/static/icons/duotone/thumbs-up.svg rename to apps/client/src/static/icons/duotone/thumbs-up.svg diff --git a/src/static/icons/duotone/thumbtack.svg b/apps/client/src/static/icons/duotone/thumbtack.svg similarity index 100% rename from src/static/icons/duotone/thumbtack.svg rename to apps/client/src/static/icons/duotone/thumbtack.svg diff --git a/src/static/icons/duotone/thunderstorm-moon.svg b/apps/client/src/static/icons/duotone/thunderstorm-moon.svg similarity index 100% rename from src/static/icons/duotone/thunderstorm-moon.svg rename to apps/client/src/static/icons/duotone/thunderstorm-moon.svg diff --git a/src/static/icons/duotone/thunderstorm-sun.svg b/apps/client/src/static/icons/duotone/thunderstorm-sun.svg similarity index 100% rename from src/static/icons/duotone/thunderstorm-sun.svg rename to apps/client/src/static/icons/duotone/thunderstorm-sun.svg diff --git a/src/static/icons/duotone/thunderstorm.svg b/apps/client/src/static/icons/duotone/thunderstorm.svg similarity index 100% rename from src/static/icons/duotone/thunderstorm.svg rename to apps/client/src/static/icons/duotone/thunderstorm.svg diff --git a/src/static/icons/duotone/ticket-alt.svg b/apps/client/src/static/icons/duotone/ticket-alt.svg similarity index 100% rename from src/static/icons/duotone/ticket-alt.svg rename to apps/client/src/static/icons/duotone/ticket-alt.svg diff --git a/src/static/icons/duotone/ticket.svg b/apps/client/src/static/icons/duotone/ticket.svg similarity index 100% rename from src/static/icons/duotone/ticket.svg rename to apps/client/src/static/icons/duotone/ticket.svg diff --git a/src/static/icons/duotone/tilde.svg b/apps/client/src/static/icons/duotone/tilde.svg similarity index 100% rename from src/static/icons/duotone/tilde.svg rename to apps/client/src/static/icons/duotone/tilde.svg diff --git a/src/static/icons/duotone/times-circle.svg b/apps/client/src/static/icons/duotone/times-circle.svg similarity index 100% rename from src/static/icons/duotone/times-circle.svg rename to apps/client/src/static/icons/duotone/times-circle.svg diff --git a/src/static/icons/duotone/times-hexagon.svg b/apps/client/src/static/icons/duotone/times-hexagon.svg similarity index 100% rename from src/static/icons/duotone/times-hexagon.svg rename to apps/client/src/static/icons/duotone/times-hexagon.svg diff --git a/src/static/icons/duotone/times-octagon.svg b/apps/client/src/static/icons/duotone/times-octagon.svg similarity index 100% rename from src/static/icons/duotone/times-octagon.svg rename to apps/client/src/static/icons/duotone/times-octagon.svg diff --git a/src/static/icons/duotone/times-square.svg b/apps/client/src/static/icons/duotone/times-square.svg similarity index 100% rename from src/static/icons/duotone/times-square.svg rename to apps/client/src/static/icons/duotone/times-square.svg diff --git a/src/static/icons/duotone/times.svg b/apps/client/src/static/icons/duotone/times.svg similarity index 100% rename from src/static/icons/duotone/times.svg rename to apps/client/src/static/icons/duotone/times.svg diff --git a/src/static/icons/duotone/tint-slash.svg b/apps/client/src/static/icons/duotone/tint-slash.svg similarity index 100% rename from src/static/icons/duotone/tint-slash.svg rename to apps/client/src/static/icons/duotone/tint-slash.svg diff --git a/src/static/icons/duotone/tint.svg b/apps/client/src/static/icons/duotone/tint.svg similarity index 100% rename from src/static/icons/duotone/tint.svg rename to apps/client/src/static/icons/duotone/tint.svg diff --git a/src/static/icons/duotone/tire-flat.svg b/apps/client/src/static/icons/duotone/tire-flat.svg similarity index 100% rename from src/static/icons/duotone/tire-flat.svg rename to apps/client/src/static/icons/duotone/tire-flat.svg diff --git a/src/static/icons/duotone/tire-pressure-warning.svg b/apps/client/src/static/icons/duotone/tire-pressure-warning.svg similarity index 100% rename from src/static/icons/duotone/tire-pressure-warning.svg rename to apps/client/src/static/icons/duotone/tire-pressure-warning.svg diff --git a/src/static/icons/duotone/tire-rugged.svg b/apps/client/src/static/icons/duotone/tire-rugged.svg similarity index 100% rename from src/static/icons/duotone/tire-rugged.svg rename to apps/client/src/static/icons/duotone/tire-rugged.svg diff --git a/src/static/icons/duotone/tire.svg b/apps/client/src/static/icons/duotone/tire.svg similarity index 100% rename from src/static/icons/duotone/tire.svg rename to apps/client/src/static/icons/duotone/tire.svg diff --git a/src/static/icons/duotone/tired.svg b/apps/client/src/static/icons/duotone/tired.svg similarity index 100% rename from src/static/icons/duotone/tired.svg rename to apps/client/src/static/icons/duotone/tired.svg diff --git a/src/static/icons/duotone/toggle-off.svg b/apps/client/src/static/icons/duotone/toggle-off.svg similarity index 100% rename from src/static/icons/duotone/toggle-off.svg rename to apps/client/src/static/icons/duotone/toggle-off.svg diff --git a/src/static/icons/duotone/toggle-on.svg b/apps/client/src/static/icons/duotone/toggle-on.svg similarity index 100% rename from src/static/icons/duotone/toggle-on.svg rename to apps/client/src/static/icons/duotone/toggle-on.svg diff --git a/src/static/icons/duotone/toilet-paper-alt.svg b/apps/client/src/static/icons/duotone/toilet-paper-alt.svg similarity index 100% rename from src/static/icons/duotone/toilet-paper-alt.svg rename to apps/client/src/static/icons/duotone/toilet-paper-alt.svg diff --git a/src/static/icons/duotone/toilet-paper.svg b/apps/client/src/static/icons/duotone/toilet-paper.svg similarity index 100% rename from src/static/icons/duotone/toilet-paper.svg rename to apps/client/src/static/icons/duotone/toilet-paper.svg diff --git a/src/static/icons/duotone/toilet.svg b/apps/client/src/static/icons/duotone/toilet.svg similarity index 100% rename from src/static/icons/duotone/toilet.svg rename to apps/client/src/static/icons/duotone/toilet.svg diff --git a/src/static/icons/duotone/tombstone-alt.svg b/apps/client/src/static/icons/duotone/tombstone-alt.svg similarity index 100% rename from src/static/icons/duotone/tombstone-alt.svg rename to apps/client/src/static/icons/duotone/tombstone-alt.svg diff --git a/src/static/icons/duotone/tombstone.svg b/apps/client/src/static/icons/duotone/tombstone.svg similarity index 100% rename from src/static/icons/duotone/tombstone.svg rename to apps/client/src/static/icons/duotone/tombstone.svg diff --git a/src/static/icons/duotone/toolbox.svg b/apps/client/src/static/icons/duotone/toolbox.svg similarity index 100% rename from src/static/icons/duotone/toolbox.svg rename to apps/client/src/static/icons/duotone/toolbox.svg diff --git a/src/static/icons/duotone/tools.svg b/apps/client/src/static/icons/duotone/tools.svg similarity index 100% rename from src/static/icons/duotone/tools.svg rename to apps/client/src/static/icons/duotone/tools.svg diff --git a/src/static/icons/duotone/tooth.svg b/apps/client/src/static/icons/duotone/tooth.svg similarity index 100% rename from src/static/icons/duotone/tooth.svg rename to apps/client/src/static/icons/duotone/tooth.svg diff --git a/src/static/icons/duotone/toothbrush.svg b/apps/client/src/static/icons/duotone/toothbrush.svg similarity index 100% rename from src/static/icons/duotone/toothbrush.svg rename to apps/client/src/static/icons/duotone/toothbrush.svg diff --git a/src/static/icons/duotone/torah.svg b/apps/client/src/static/icons/duotone/torah.svg similarity index 100% rename from src/static/icons/duotone/torah.svg rename to apps/client/src/static/icons/duotone/torah.svg diff --git a/src/static/icons/duotone/torii-gate.svg b/apps/client/src/static/icons/duotone/torii-gate.svg similarity index 100% rename from src/static/icons/duotone/torii-gate.svg rename to apps/client/src/static/icons/duotone/torii-gate.svg diff --git a/src/static/icons/duotone/tornado.svg b/apps/client/src/static/icons/duotone/tornado.svg similarity index 100% rename from src/static/icons/duotone/tornado.svg rename to apps/client/src/static/icons/duotone/tornado.svg diff --git a/src/static/icons/duotone/tractor.svg b/apps/client/src/static/icons/duotone/tractor.svg similarity index 100% rename from src/static/icons/duotone/tractor.svg rename to apps/client/src/static/icons/duotone/tractor.svg diff --git a/src/static/icons/duotone/trademark.svg b/apps/client/src/static/icons/duotone/trademark.svg similarity index 100% rename from src/static/icons/duotone/trademark.svg rename to apps/client/src/static/icons/duotone/trademark.svg diff --git a/src/static/icons/duotone/traffic-cone.svg b/apps/client/src/static/icons/duotone/traffic-cone.svg similarity index 100% rename from src/static/icons/duotone/traffic-cone.svg rename to apps/client/src/static/icons/duotone/traffic-cone.svg diff --git a/src/static/icons/duotone/traffic-light-go.svg b/apps/client/src/static/icons/duotone/traffic-light-go.svg similarity index 100% rename from src/static/icons/duotone/traffic-light-go.svg rename to apps/client/src/static/icons/duotone/traffic-light-go.svg diff --git a/src/static/icons/duotone/traffic-light-slow.svg b/apps/client/src/static/icons/duotone/traffic-light-slow.svg similarity index 100% rename from src/static/icons/duotone/traffic-light-slow.svg rename to apps/client/src/static/icons/duotone/traffic-light-slow.svg diff --git a/src/static/icons/duotone/traffic-light-stop.svg b/apps/client/src/static/icons/duotone/traffic-light-stop.svg similarity index 100% rename from src/static/icons/duotone/traffic-light-stop.svg rename to apps/client/src/static/icons/duotone/traffic-light-stop.svg diff --git a/src/static/icons/duotone/traffic-light.svg b/apps/client/src/static/icons/duotone/traffic-light.svg similarity index 100% rename from src/static/icons/duotone/traffic-light.svg rename to apps/client/src/static/icons/duotone/traffic-light.svg diff --git a/src/static/icons/duotone/trailer.svg b/apps/client/src/static/icons/duotone/trailer.svg similarity index 100% rename from src/static/icons/duotone/trailer.svg rename to apps/client/src/static/icons/duotone/trailer.svg diff --git a/src/static/icons/duotone/train.svg b/apps/client/src/static/icons/duotone/train.svg similarity index 100% rename from src/static/icons/duotone/train.svg rename to apps/client/src/static/icons/duotone/train.svg diff --git a/src/static/icons/duotone/tram.svg b/apps/client/src/static/icons/duotone/tram.svg similarity index 100% rename from src/static/icons/duotone/tram.svg rename to apps/client/src/static/icons/duotone/tram.svg diff --git a/src/static/icons/duotone/transgender-alt.svg b/apps/client/src/static/icons/duotone/transgender-alt.svg similarity index 100% rename from src/static/icons/duotone/transgender-alt.svg rename to apps/client/src/static/icons/duotone/transgender-alt.svg diff --git a/src/static/icons/duotone/transgender.svg b/apps/client/src/static/icons/duotone/transgender.svg similarity index 100% rename from src/static/icons/duotone/transgender.svg rename to apps/client/src/static/icons/duotone/transgender.svg diff --git a/src/static/icons/duotone/transporter-1.svg b/apps/client/src/static/icons/duotone/transporter-1.svg similarity index 100% rename from src/static/icons/duotone/transporter-1.svg rename to apps/client/src/static/icons/duotone/transporter-1.svg diff --git a/src/static/icons/duotone/transporter-2.svg b/apps/client/src/static/icons/duotone/transporter-2.svg similarity index 100% rename from src/static/icons/duotone/transporter-2.svg rename to apps/client/src/static/icons/duotone/transporter-2.svg diff --git a/src/static/icons/duotone/transporter-3.svg b/apps/client/src/static/icons/duotone/transporter-3.svg similarity index 100% rename from src/static/icons/duotone/transporter-3.svg rename to apps/client/src/static/icons/duotone/transporter-3.svg diff --git a/src/static/icons/duotone/transporter-empty.svg b/apps/client/src/static/icons/duotone/transporter-empty.svg similarity index 100% rename from src/static/icons/duotone/transporter-empty.svg rename to apps/client/src/static/icons/duotone/transporter-empty.svg diff --git a/src/static/icons/duotone/transporter.svg b/apps/client/src/static/icons/duotone/transporter.svg similarity index 100% rename from src/static/icons/duotone/transporter.svg rename to apps/client/src/static/icons/duotone/transporter.svg diff --git a/src/static/icons/duotone/trash-alt.svg b/apps/client/src/static/icons/duotone/trash-alt.svg similarity index 100% rename from src/static/icons/duotone/trash-alt.svg rename to apps/client/src/static/icons/duotone/trash-alt.svg diff --git a/src/static/icons/duotone/trash-restore-alt.svg b/apps/client/src/static/icons/duotone/trash-restore-alt.svg similarity index 100% rename from src/static/icons/duotone/trash-restore-alt.svg rename to apps/client/src/static/icons/duotone/trash-restore-alt.svg diff --git a/src/static/icons/duotone/trash-restore.svg b/apps/client/src/static/icons/duotone/trash-restore.svg similarity index 100% rename from src/static/icons/duotone/trash-restore.svg rename to apps/client/src/static/icons/duotone/trash-restore.svg diff --git a/src/static/icons/duotone/trash-undo-alt.svg b/apps/client/src/static/icons/duotone/trash-undo-alt.svg similarity index 100% rename from src/static/icons/duotone/trash-undo-alt.svg rename to apps/client/src/static/icons/duotone/trash-undo-alt.svg diff --git a/src/static/icons/duotone/trash-undo.svg b/apps/client/src/static/icons/duotone/trash-undo.svg similarity index 100% rename from src/static/icons/duotone/trash-undo.svg rename to apps/client/src/static/icons/duotone/trash-undo.svg diff --git a/src/static/icons/duotone/trash.svg b/apps/client/src/static/icons/duotone/trash.svg similarity index 100% rename from src/static/icons/duotone/trash.svg rename to apps/client/src/static/icons/duotone/trash.svg diff --git a/src/static/icons/duotone/treasure-chest.svg b/apps/client/src/static/icons/duotone/treasure-chest.svg similarity index 100% rename from src/static/icons/duotone/treasure-chest.svg rename to apps/client/src/static/icons/duotone/treasure-chest.svg diff --git a/src/static/icons/duotone/tree-alt.svg b/apps/client/src/static/icons/duotone/tree-alt.svg similarity index 100% rename from src/static/icons/duotone/tree-alt.svg rename to apps/client/src/static/icons/duotone/tree-alt.svg diff --git a/src/static/icons/duotone/tree-christmas.svg b/apps/client/src/static/icons/duotone/tree-christmas.svg similarity index 100% rename from src/static/icons/duotone/tree-christmas.svg rename to apps/client/src/static/icons/duotone/tree-christmas.svg diff --git a/src/static/icons/duotone/tree-decorated.svg b/apps/client/src/static/icons/duotone/tree-decorated.svg similarity index 100% rename from src/static/icons/duotone/tree-decorated.svg rename to apps/client/src/static/icons/duotone/tree-decorated.svg diff --git a/src/static/icons/duotone/tree-large.svg b/apps/client/src/static/icons/duotone/tree-large.svg similarity index 100% rename from src/static/icons/duotone/tree-large.svg rename to apps/client/src/static/icons/duotone/tree-large.svg diff --git a/src/static/icons/duotone/tree-palm.svg b/apps/client/src/static/icons/duotone/tree-palm.svg similarity index 100% rename from src/static/icons/duotone/tree-palm.svg rename to apps/client/src/static/icons/duotone/tree-palm.svg diff --git a/src/static/icons/duotone/tree.svg b/apps/client/src/static/icons/duotone/tree.svg similarity index 100% rename from src/static/icons/duotone/tree.svg rename to apps/client/src/static/icons/duotone/tree.svg diff --git a/src/static/icons/duotone/trees.svg b/apps/client/src/static/icons/duotone/trees.svg similarity index 100% rename from src/static/icons/duotone/trees.svg rename to apps/client/src/static/icons/duotone/trees.svg diff --git a/src/static/icons/duotone/triangle-music.svg b/apps/client/src/static/icons/duotone/triangle-music.svg similarity index 100% rename from src/static/icons/duotone/triangle-music.svg rename to apps/client/src/static/icons/duotone/triangle-music.svg diff --git a/src/static/icons/duotone/triangle.svg b/apps/client/src/static/icons/duotone/triangle.svg similarity index 100% rename from src/static/icons/duotone/triangle.svg rename to apps/client/src/static/icons/duotone/triangle.svg diff --git a/src/static/icons/duotone/trophy-alt.svg b/apps/client/src/static/icons/duotone/trophy-alt.svg similarity index 100% rename from src/static/icons/duotone/trophy-alt.svg rename to apps/client/src/static/icons/duotone/trophy-alt.svg diff --git a/src/static/icons/duotone/trophy.svg b/apps/client/src/static/icons/duotone/trophy.svg similarity index 100% rename from src/static/icons/duotone/trophy.svg rename to apps/client/src/static/icons/duotone/trophy.svg diff --git a/src/static/icons/duotone/truck-container.svg b/apps/client/src/static/icons/duotone/truck-container.svg similarity index 100% rename from src/static/icons/duotone/truck-container.svg rename to apps/client/src/static/icons/duotone/truck-container.svg diff --git a/src/static/icons/duotone/truck-couch.svg b/apps/client/src/static/icons/duotone/truck-couch.svg similarity index 100% rename from src/static/icons/duotone/truck-couch.svg rename to apps/client/src/static/icons/duotone/truck-couch.svg diff --git a/src/static/icons/duotone/truck-loading.svg b/apps/client/src/static/icons/duotone/truck-loading.svg similarity index 100% rename from src/static/icons/duotone/truck-loading.svg rename to apps/client/src/static/icons/duotone/truck-loading.svg diff --git a/src/static/icons/duotone/truck-monster.svg b/apps/client/src/static/icons/duotone/truck-monster.svg similarity index 100% rename from src/static/icons/duotone/truck-monster.svg rename to apps/client/src/static/icons/duotone/truck-monster.svg diff --git a/src/static/icons/duotone/truck-moving.svg b/apps/client/src/static/icons/duotone/truck-moving.svg similarity index 100% rename from src/static/icons/duotone/truck-moving.svg rename to apps/client/src/static/icons/duotone/truck-moving.svg diff --git a/src/static/icons/duotone/truck-pickup.svg b/apps/client/src/static/icons/duotone/truck-pickup.svg similarity index 100% rename from src/static/icons/duotone/truck-pickup.svg rename to apps/client/src/static/icons/duotone/truck-pickup.svg diff --git a/src/static/icons/duotone/truck-plow.svg b/apps/client/src/static/icons/duotone/truck-plow.svg similarity index 100% rename from src/static/icons/duotone/truck-plow.svg rename to apps/client/src/static/icons/duotone/truck-plow.svg diff --git a/src/static/icons/duotone/truck-ramp.svg b/apps/client/src/static/icons/duotone/truck-ramp.svg similarity index 100% rename from src/static/icons/duotone/truck-ramp.svg rename to apps/client/src/static/icons/duotone/truck-ramp.svg diff --git a/src/static/icons/duotone/truck.svg b/apps/client/src/static/icons/duotone/truck.svg similarity index 100% rename from src/static/icons/duotone/truck.svg rename to apps/client/src/static/icons/duotone/truck.svg diff --git a/src/static/icons/duotone/trumpet.svg b/apps/client/src/static/icons/duotone/trumpet.svg similarity index 100% rename from src/static/icons/duotone/trumpet.svg rename to apps/client/src/static/icons/duotone/trumpet.svg diff --git a/src/static/icons/duotone/tshirt.svg b/apps/client/src/static/icons/duotone/tshirt.svg similarity index 100% rename from src/static/icons/duotone/tshirt.svg rename to apps/client/src/static/icons/duotone/tshirt.svg diff --git a/src/static/icons/duotone/tty.svg b/apps/client/src/static/icons/duotone/tty.svg similarity index 100% rename from src/static/icons/duotone/tty.svg rename to apps/client/src/static/icons/duotone/tty.svg diff --git a/src/static/icons/duotone/turkey.svg b/apps/client/src/static/icons/duotone/turkey.svg similarity index 100% rename from src/static/icons/duotone/turkey.svg rename to apps/client/src/static/icons/duotone/turkey.svg diff --git a/src/static/icons/duotone/turntable.svg b/apps/client/src/static/icons/duotone/turntable.svg similarity index 100% rename from src/static/icons/duotone/turntable.svg rename to apps/client/src/static/icons/duotone/turntable.svg diff --git a/src/static/icons/duotone/turtle.svg b/apps/client/src/static/icons/duotone/turtle.svg similarity index 100% rename from src/static/icons/duotone/turtle.svg rename to apps/client/src/static/icons/duotone/turtle.svg diff --git a/src/static/icons/duotone/tv-alt.svg b/apps/client/src/static/icons/duotone/tv-alt.svg similarity index 100% rename from src/static/icons/duotone/tv-alt.svg rename to apps/client/src/static/icons/duotone/tv-alt.svg diff --git a/src/static/icons/duotone/tv-music.svg b/apps/client/src/static/icons/duotone/tv-music.svg similarity index 100% rename from src/static/icons/duotone/tv-music.svg rename to apps/client/src/static/icons/duotone/tv-music.svg diff --git a/src/static/icons/duotone/tv-retro.svg b/apps/client/src/static/icons/duotone/tv-retro.svg similarity index 100% rename from src/static/icons/duotone/tv-retro.svg rename to apps/client/src/static/icons/duotone/tv-retro.svg diff --git a/src/static/icons/duotone/tv.svg b/apps/client/src/static/icons/duotone/tv.svg similarity index 100% rename from src/static/icons/duotone/tv.svg rename to apps/client/src/static/icons/duotone/tv.svg diff --git a/src/static/icons/duotone/typewriter.svg b/apps/client/src/static/icons/duotone/typewriter.svg similarity index 100% rename from src/static/icons/duotone/typewriter.svg rename to apps/client/src/static/icons/duotone/typewriter.svg diff --git a/src/static/icons/duotone/ufo-beam.svg b/apps/client/src/static/icons/duotone/ufo-beam.svg similarity index 100% rename from src/static/icons/duotone/ufo-beam.svg rename to apps/client/src/static/icons/duotone/ufo-beam.svg diff --git a/src/static/icons/duotone/ufo.svg b/apps/client/src/static/icons/duotone/ufo.svg similarity index 100% rename from src/static/icons/duotone/ufo.svg rename to apps/client/src/static/icons/duotone/ufo.svg diff --git a/src/static/icons/duotone/umbrella-beach.svg b/apps/client/src/static/icons/duotone/umbrella-beach.svg similarity index 100% rename from src/static/icons/duotone/umbrella-beach.svg rename to apps/client/src/static/icons/duotone/umbrella-beach.svg diff --git a/src/static/icons/duotone/umbrella.svg b/apps/client/src/static/icons/duotone/umbrella.svg similarity index 100% rename from src/static/icons/duotone/umbrella.svg rename to apps/client/src/static/icons/duotone/umbrella.svg diff --git a/src/static/icons/duotone/underline.svg b/apps/client/src/static/icons/duotone/underline.svg similarity index 100% rename from src/static/icons/duotone/underline.svg rename to apps/client/src/static/icons/duotone/underline.svg diff --git a/src/static/icons/duotone/undo-alt.svg b/apps/client/src/static/icons/duotone/undo-alt.svg similarity index 100% rename from src/static/icons/duotone/undo-alt.svg rename to apps/client/src/static/icons/duotone/undo-alt.svg diff --git a/src/static/icons/duotone/undo.svg b/apps/client/src/static/icons/duotone/undo.svg similarity index 100% rename from src/static/icons/duotone/undo.svg rename to apps/client/src/static/icons/duotone/undo.svg diff --git a/src/static/icons/duotone/unicorn.svg b/apps/client/src/static/icons/duotone/unicorn.svg similarity index 100% rename from src/static/icons/duotone/unicorn.svg rename to apps/client/src/static/icons/duotone/unicorn.svg diff --git a/src/static/icons/duotone/union.svg b/apps/client/src/static/icons/duotone/union.svg similarity index 100% rename from src/static/icons/duotone/union.svg rename to apps/client/src/static/icons/duotone/union.svg diff --git a/src/static/icons/duotone/universal-access.svg b/apps/client/src/static/icons/duotone/universal-access.svg similarity index 100% rename from src/static/icons/duotone/universal-access.svg rename to apps/client/src/static/icons/duotone/universal-access.svg diff --git a/src/static/icons/duotone/university.svg b/apps/client/src/static/icons/duotone/university.svg similarity index 100% rename from src/static/icons/duotone/university.svg rename to apps/client/src/static/icons/duotone/university.svg diff --git a/src/static/icons/duotone/unlink.svg b/apps/client/src/static/icons/duotone/unlink.svg similarity index 100% rename from src/static/icons/duotone/unlink.svg rename to apps/client/src/static/icons/duotone/unlink.svg diff --git a/src/static/icons/duotone/unlock-alt.svg b/apps/client/src/static/icons/duotone/unlock-alt.svg similarity index 100% rename from src/static/icons/duotone/unlock-alt.svg rename to apps/client/src/static/icons/duotone/unlock-alt.svg diff --git a/src/static/icons/duotone/unlock.svg b/apps/client/src/static/icons/duotone/unlock.svg similarity index 100% rename from src/static/icons/duotone/unlock.svg rename to apps/client/src/static/icons/duotone/unlock.svg diff --git a/src/static/icons/duotone/upload.svg b/apps/client/src/static/icons/duotone/upload.svg similarity index 100% rename from src/static/icons/duotone/upload.svg rename to apps/client/src/static/icons/duotone/upload.svg diff --git a/src/static/icons/duotone/usb-drive.svg b/apps/client/src/static/icons/duotone/usb-drive.svg similarity index 100% rename from src/static/icons/duotone/usb-drive.svg rename to apps/client/src/static/icons/duotone/usb-drive.svg diff --git a/src/static/icons/duotone/usd-circle.svg b/apps/client/src/static/icons/duotone/usd-circle.svg similarity index 100% rename from src/static/icons/duotone/usd-circle.svg rename to apps/client/src/static/icons/duotone/usd-circle.svg diff --git a/src/static/icons/duotone/usd-square.svg b/apps/client/src/static/icons/duotone/usd-square.svg similarity index 100% rename from src/static/icons/duotone/usd-square.svg rename to apps/client/src/static/icons/duotone/usd-square.svg diff --git a/src/static/icons/duotone/user-alien.svg b/apps/client/src/static/icons/duotone/user-alien.svg similarity index 100% rename from src/static/icons/duotone/user-alien.svg rename to apps/client/src/static/icons/duotone/user-alien.svg diff --git a/src/static/icons/duotone/user-alt-slash.svg b/apps/client/src/static/icons/duotone/user-alt-slash.svg similarity index 100% rename from src/static/icons/duotone/user-alt-slash.svg rename to apps/client/src/static/icons/duotone/user-alt-slash.svg diff --git a/src/static/icons/duotone/user-alt.svg b/apps/client/src/static/icons/duotone/user-alt.svg similarity index 100% rename from src/static/icons/duotone/user-alt.svg rename to apps/client/src/static/icons/duotone/user-alt.svg diff --git a/src/static/icons/duotone/user-astronaut.svg b/apps/client/src/static/icons/duotone/user-astronaut.svg similarity index 100% rename from src/static/icons/duotone/user-astronaut.svg rename to apps/client/src/static/icons/duotone/user-astronaut.svg diff --git a/src/static/icons/duotone/user-chart.svg b/apps/client/src/static/icons/duotone/user-chart.svg similarity index 100% rename from src/static/icons/duotone/user-chart.svg rename to apps/client/src/static/icons/duotone/user-chart.svg diff --git a/src/static/icons/duotone/user-check.svg b/apps/client/src/static/icons/duotone/user-check.svg similarity index 100% rename from src/static/icons/duotone/user-check.svg rename to apps/client/src/static/icons/duotone/user-check.svg diff --git a/src/static/icons/duotone/user-circle.svg b/apps/client/src/static/icons/duotone/user-circle.svg similarity index 100% rename from src/static/icons/duotone/user-circle.svg rename to apps/client/src/static/icons/duotone/user-circle.svg diff --git a/src/static/icons/duotone/user-clock.svg b/apps/client/src/static/icons/duotone/user-clock.svg similarity index 100% rename from src/static/icons/duotone/user-clock.svg rename to apps/client/src/static/icons/duotone/user-clock.svg diff --git a/src/static/icons/duotone/user-cog.svg b/apps/client/src/static/icons/duotone/user-cog.svg similarity index 100% rename from src/static/icons/duotone/user-cog.svg rename to apps/client/src/static/icons/duotone/user-cog.svg diff --git a/src/static/icons/duotone/user-cowboy.svg b/apps/client/src/static/icons/duotone/user-cowboy.svg similarity index 100% rename from src/static/icons/duotone/user-cowboy.svg rename to apps/client/src/static/icons/duotone/user-cowboy.svg diff --git a/src/static/icons/duotone/user-crown.svg b/apps/client/src/static/icons/duotone/user-crown.svg similarity index 100% rename from src/static/icons/duotone/user-crown.svg rename to apps/client/src/static/icons/duotone/user-crown.svg diff --git a/src/static/icons/duotone/user-edit.svg b/apps/client/src/static/icons/duotone/user-edit.svg similarity index 100% rename from src/static/icons/duotone/user-edit.svg rename to apps/client/src/static/icons/duotone/user-edit.svg diff --git a/src/static/icons/duotone/user-friends.svg b/apps/client/src/static/icons/duotone/user-friends.svg similarity index 100% rename from src/static/icons/duotone/user-friends.svg rename to apps/client/src/static/icons/duotone/user-friends.svg diff --git a/src/static/icons/duotone/user-graduate.svg b/apps/client/src/static/icons/duotone/user-graduate.svg similarity index 100% rename from src/static/icons/duotone/user-graduate.svg rename to apps/client/src/static/icons/duotone/user-graduate.svg diff --git a/src/static/icons/duotone/user-hard-hat.svg b/apps/client/src/static/icons/duotone/user-hard-hat.svg similarity index 100% rename from src/static/icons/duotone/user-hard-hat.svg rename to apps/client/src/static/icons/duotone/user-hard-hat.svg diff --git a/src/static/icons/duotone/user-headset.svg b/apps/client/src/static/icons/duotone/user-headset.svg similarity index 100% rename from src/static/icons/duotone/user-headset.svg rename to apps/client/src/static/icons/duotone/user-headset.svg diff --git a/src/static/icons/duotone/user-injured.svg b/apps/client/src/static/icons/duotone/user-injured.svg similarity index 100% rename from src/static/icons/duotone/user-injured.svg rename to apps/client/src/static/icons/duotone/user-injured.svg diff --git a/src/static/icons/duotone/user-lock.svg b/apps/client/src/static/icons/duotone/user-lock.svg similarity index 100% rename from src/static/icons/duotone/user-lock.svg rename to apps/client/src/static/icons/duotone/user-lock.svg diff --git a/src/static/icons/duotone/user-md-chat.svg b/apps/client/src/static/icons/duotone/user-md-chat.svg similarity index 100% rename from src/static/icons/duotone/user-md-chat.svg rename to apps/client/src/static/icons/duotone/user-md-chat.svg diff --git a/src/static/icons/duotone/user-md.svg b/apps/client/src/static/icons/duotone/user-md.svg similarity index 100% rename from src/static/icons/duotone/user-md.svg rename to apps/client/src/static/icons/duotone/user-md.svg diff --git a/src/static/icons/duotone/user-minus.svg b/apps/client/src/static/icons/duotone/user-minus.svg similarity index 100% rename from src/static/icons/duotone/user-minus.svg rename to apps/client/src/static/icons/duotone/user-minus.svg diff --git a/src/static/icons/duotone/user-music.svg b/apps/client/src/static/icons/duotone/user-music.svg similarity index 100% rename from src/static/icons/duotone/user-music.svg rename to apps/client/src/static/icons/duotone/user-music.svg diff --git a/src/static/icons/duotone/user-ninja.svg b/apps/client/src/static/icons/duotone/user-ninja.svg similarity index 100% rename from src/static/icons/duotone/user-ninja.svg rename to apps/client/src/static/icons/duotone/user-ninja.svg diff --git a/src/static/icons/duotone/user-nurse.svg b/apps/client/src/static/icons/duotone/user-nurse.svg similarity index 100% rename from src/static/icons/duotone/user-nurse.svg rename to apps/client/src/static/icons/duotone/user-nurse.svg diff --git a/src/static/icons/duotone/user-plus.svg b/apps/client/src/static/icons/duotone/user-plus.svg similarity index 100% rename from src/static/icons/duotone/user-plus.svg rename to apps/client/src/static/icons/duotone/user-plus.svg diff --git a/src/static/icons/duotone/user-robot.svg b/apps/client/src/static/icons/duotone/user-robot.svg similarity index 100% rename from src/static/icons/duotone/user-robot.svg rename to apps/client/src/static/icons/duotone/user-robot.svg diff --git a/src/static/icons/duotone/user-secret.svg b/apps/client/src/static/icons/duotone/user-secret.svg similarity index 100% rename from src/static/icons/duotone/user-secret.svg rename to apps/client/src/static/icons/duotone/user-secret.svg diff --git a/src/static/icons/duotone/user-shield.svg b/apps/client/src/static/icons/duotone/user-shield.svg similarity index 100% rename from src/static/icons/duotone/user-shield.svg rename to apps/client/src/static/icons/duotone/user-shield.svg diff --git a/src/static/icons/duotone/user-slash.svg b/apps/client/src/static/icons/duotone/user-slash.svg similarity index 100% rename from src/static/icons/duotone/user-slash.svg rename to apps/client/src/static/icons/duotone/user-slash.svg diff --git a/src/static/icons/duotone/user-tag.svg b/apps/client/src/static/icons/duotone/user-tag.svg similarity index 100% rename from src/static/icons/duotone/user-tag.svg rename to apps/client/src/static/icons/duotone/user-tag.svg diff --git a/src/static/icons/duotone/user-tie.svg b/apps/client/src/static/icons/duotone/user-tie.svg similarity index 100% rename from src/static/icons/duotone/user-tie.svg rename to apps/client/src/static/icons/duotone/user-tie.svg diff --git a/src/static/icons/duotone/user-times.svg b/apps/client/src/static/icons/duotone/user-times.svg similarity index 100% rename from src/static/icons/duotone/user-times.svg rename to apps/client/src/static/icons/duotone/user-times.svg diff --git a/src/static/icons/duotone/user-visor.svg b/apps/client/src/static/icons/duotone/user-visor.svg similarity index 100% rename from src/static/icons/duotone/user-visor.svg rename to apps/client/src/static/icons/duotone/user-visor.svg diff --git a/src/static/icons/duotone/user.svg b/apps/client/src/static/icons/duotone/user.svg similarity index 100% rename from src/static/icons/duotone/user.svg rename to apps/client/src/static/icons/duotone/user.svg diff --git a/src/static/icons/duotone/users-class.svg b/apps/client/src/static/icons/duotone/users-class.svg similarity index 100% rename from src/static/icons/duotone/users-class.svg rename to apps/client/src/static/icons/duotone/users-class.svg diff --git a/src/static/icons/duotone/users-cog.svg b/apps/client/src/static/icons/duotone/users-cog.svg similarity index 100% rename from src/static/icons/duotone/users-cog.svg rename to apps/client/src/static/icons/duotone/users-cog.svg diff --git a/src/static/icons/duotone/users-crown.svg b/apps/client/src/static/icons/duotone/users-crown.svg similarity index 100% rename from src/static/icons/duotone/users-crown.svg rename to apps/client/src/static/icons/duotone/users-crown.svg diff --git a/src/static/icons/duotone/users-medical.svg b/apps/client/src/static/icons/duotone/users-medical.svg similarity index 100% rename from src/static/icons/duotone/users-medical.svg rename to apps/client/src/static/icons/duotone/users-medical.svg diff --git a/src/static/icons/duotone/users.svg b/apps/client/src/static/icons/duotone/users.svg similarity index 100% rename from src/static/icons/duotone/users.svg rename to apps/client/src/static/icons/duotone/users.svg diff --git a/src/static/icons/duotone/utensil-fork.svg b/apps/client/src/static/icons/duotone/utensil-fork.svg similarity index 100% rename from src/static/icons/duotone/utensil-fork.svg rename to apps/client/src/static/icons/duotone/utensil-fork.svg diff --git a/src/static/icons/duotone/utensil-knife.svg b/apps/client/src/static/icons/duotone/utensil-knife.svg similarity index 100% rename from src/static/icons/duotone/utensil-knife.svg rename to apps/client/src/static/icons/duotone/utensil-knife.svg diff --git a/src/static/icons/duotone/utensil-spoon.svg b/apps/client/src/static/icons/duotone/utensil-spoon.svg similarity index 100% rename from src/static/icons/duotone/utensil-spoon.svg rename to apps/client/src/static/icons/duotone/utensil-spoon.svg diff --git a/src/static/icons/duotone/utensils-alt.svg b/apps/client/src/static/icons/duotone/utensils-alt.svg similarity index 100% rename from src/static/icons/duotone/utensils-alt.svg rename to apps/client/src/static/icons/duotone/utensils-alt.svg diff --git a/src/static/icons/duotone/utensils.svg b/apps/client/src/static/icons/duotone/utensils.svg similarity index 100% rename from src/static/icons/duotone/utensils.svg rename to apps/client/src/static/icons/duotone/utensils.svg diff --git a/src/static/icons/duotone/vacuum-robot.svg b/apps/client/src/static/icons/duotone/vacuum-robot.svg similarity index 100% rename from src/static/icons/duotone/vacuum-robot.svg rename to apps/client/src/static/icons/duotone/vacuum-robot.svg diff --git a/src/static/icons/duotone/vacuum.svg b/apps/client/src/static/icons/duotone/vacuum.svg similarity index 100% rename from src/static/icons/duotone/vacuum.svg rename to apps/client/src/static/icons/duotone/vacuum.svg diff --git a/src/static/icons/duotone/value-absolute.svg b/apps/client/src/static/icons/duotone/value-absolute.svg similarity index 100% rename from src/static/icons/duotone/value-absolute.svg rename to apps/client/src/static/icons/duotone/value-absolute.svg diff --git a/src/static/icons/duotone/vector-square.svg b/apps/client/src/static/icons/duotone/vector-square.svg similarity index 100% rename from src/static/icons/duotone/vector-square.svg rename to apps/client/src/static/icons/duotone/vector-square.svg diff --git a/src/static/icons/duotone/venus-double.svg b/apps/client/src/static/icons/duotone/venus-double.svg similarity index 100% rename from src/static/icons/duotone/venus-double.svg rename to apps/client/src/static/icons/duotone/venus-double.svg diff --git a/src/static/icons/duotone/venus-mars.svg b/apps/client/src/static/icons/duotone/venus-mars.svg similarity index 100% rename from src/static/icons/duotone/venus-mars.svg rename to apps/client/src/static/icons/duotone/venus-mars.svg diff --git a/src/static/icons/duotone/venus.svg b/apps/client/src/static/icons/duotone/venus.svg similarity index 100% rename from src/static/icons/duotone/venus.svg rename to apps/client/src/static/icons/duotone/venus.svg diff --git a/src/static/icons/duotone/vhs.svg b/apps/client/src/static/icons/duotone/vhs.svg similarity index 100% rename from src/static/icons/duotone/vhs.svg rename to apps/client/src/static/icons/duotone/vhs.svg diff --git a/src/static/icons/duotone/vial.svg b/apps/client/src/static/icons/duotone/vial.svg similarity index 100% rename from src/static/icons/duotone/vial.svg rename to apps/client/src/static/icons/duotone/vial.svg diff --git a/src/static/icons/duotone/vials.svg b/apps/client/src/static/icons/duotone/vials.svg similarity index 100% rename from src/static/icons/duotone/vials.svg rename to apps/client/src/static/icons/duotone/vials.svg diff --git a/src/static/icons/duotone/video-plus.svg b/apps/client/src/static/icons/duotone/video-plus.svg similarity index 100% rename from src/static/icons/duotone/video-plus.svg rename to apps/client/src/static/icons/duotone/video-plus.svg diff --git a/src/static/icons/duotone/video-slash.svg b/apps/client/src/static/icons/duotone/video-slash.svg similarity index 100% rename from src/static/icons/duotone/video-slash.svg rename to apps/client/src/static/icons/duotone/video-slash.svg diff --git a/src/static/icons/duotone/video.svg b/apps/client/src/static/icons/duotone/video.svg similarity index 100% rename from src/static/icons/duotone/video.svg rename to apps/client/src/static/icons/duotone/video.svg diff --git a/src/static/icons/duotone/vihara.svg b/apps/client/src/static/icons/duotone/vihara.svg similarity index 100% rename from src/static/icons/duotone/vihara.svg rename to apps/client/src/static/icons/duotone/vihara.svg diff --git a/src/static/icons/duotone/violin.svg b/apps/client/src/static/icons/duotone/violin.svg similarity index 100% rename from src/static/icons/duotone/violin.svg rename to apps/client/src/static/icons/duotone/violin.svg diff --git a/src/static/icons/duotone/voicemail.svg b/apps/client/src/static/icons/duotone/voicemail.svg similarity index 100% rename from src/static/icons/duotone/voicemail.svg rename to apps/client/src/static/icons/duotone/voicemail.svg diff --git a/src/static/icons/duotone/volcano.svg b/apps/client/src/static/icons/duotone/volcano.svg similarity index 100% rename from src/static/icons/duotone/volcano.svg rename to apps/client/src/static/icons/duotone/volcano.svg diff --git a/src/static/icons/duotone/volleyball-ball.svg b/apps/client/src/static/icons/duotone/volleyball-ball.svg similarity index 100% rename from src/static/icons/duotone/volleyball-ball.svg rename to apps/client/src/static/icons/duotone/volleyball-ball.svg diff --git a/src/static/icons/duotone/volume-down.svg b/apps/client/src/static/icons/duotone/volume-down.svg similarity index 100% rename from src/static/icons/duotone/volume-down.svg rename to apps/client/src/static/icons/duotone/volume-down.svg diff --git a/src/static/icons/duotone/volume-mute.svg b/apps/client/src/static/icons/duotone/volume-mute.svg similarity index 100% rename from src/static/icons/duotone/volume-mute.svg rename to apps/client/src/static/icons/duotone/volume-mute.svg diff --git a/src/static/icons/duotone/volume-off.svg b/apps/client/src/static/icons/duotone/volume-off.svg similarity index 100% rename from src/static/icons/duotone/volume-off.svg rename to apps/client/src/static/icons/duotone/volume-off.svg diff --git a/src/static/icons/duotone/volume-slash.svg b/apps/client/src/static/icons/duotone/volume-slash.svg similarity index 100% rename from src/static/icons/duotone/volume-slash.svg rename to apps/client/src/static/icons/duotone/volume-slash.svg diff --git a/src/static/icons/duotone/volume-up.svg b/apps/client/src/static/icons/duotone/volume-up.svg similarity index 100% rename from src/static/icons/duotone/volume-up.svg rename to apps/client/src/static/icons/duotone/volume-up.svg diff --git a/src/static/icons/duotone/volume.svg b/apps/client/src/static/icons/duotone/volume.svg similarity index 100% rename from src/static/icons/duotone/volume.svg rename to apps/client/src/static/icons/duotone/volume.svg diff --git a/src/static/icons/duotone/vote-nay.svg b/apps/client/src/static/icons/duotone/vote-nay.svg similarity index 100% rename from src/static/icons/duotone/vote-nay.svg rename to apps/client/src/static/icons/duotone/vote-nay.svg diff --git a/src/static/icons/duotone/vote-yea.svg b/apps/client/src/static/icons/duotone/vote-yea.svg similarity index 100% rename from src/static/icons/duotone/vote-yea.svg rename to apps/client/src/static/icons/duotone/vote-yea.svg diff --git a/src/static/icons/duotone/vr-cardboard.svg b/apps/client/src/static/icons/duotone/vr-cardboard.svg similarity index 100% rename from src/static/icons/duotone/vr-cardboard.svg rename to apps/client/src/static/icons/duotone/vr-cardboard.svg diff --git a/src/static/icons/duotone/wagon-covered.svg b/apps/client/src/static/icons/duotone/wagon-covered.svg similarity index 100% rename from src/static/icons/duotone/wagon-covered.svg rename to apps/client/src/static/icons/duotone/wagon-covered.svg diff --git a/src/static/icons/duotone/walker.svg b/apps/client/src/static/icons/duotone/walker.svg similarity index 100% rename from src/static/icons/duotone/walker.svg rename to apps/client/src/static/icons/duotone/walker.svg diff --git a/src/static/icons/duotone/walkie-talkie.svg b/apps/client/src/static/icons/duotone/walkie-talkie.svg similarity index 100% rename from src/static/icons/duotone/walkie-talkie.svg rename to apps/client/src/static/icons/duotone/walkie-talkie.svg diff --git a/src/static/icons/duotone/walking.svg b/apps/client/src/static/icons/duotone/walking.svg similarity index 100% rename from src/static/icons/duotone/walking.svg rename to apps/client/src/static/icons/duotone/walking.svg diff --git a/src/static/icons/duotone/wallet.svg b/apps/client/src/static/icons/duotone/wallet.svg similarity index 100% rename from src/static/icons/duotone/wallet.svg rename to apps/client/src/static/icons/duotone/wallet.svg diff --git a/src/static/icons/duotone/wand-magic.svg b/apps/client/src/static/icons/duotone/wand-magic.svg similarity index 100% rename from src/static/icons/duotone/wand-magic.svg rename to apps/client/src/static/icons/duotone/wand-magic.svg diff --git a/src/static/icons/duotone/wand.svg b/apps/client/src/static/icons/duotone/wand.svg similarity index 100% rename from src/static/icons/duotone/wand.svg rename to apps/client/src/static/icons/duotone/wand.svg diff --git a/src/static/icons/duotone/warehouse-alt.svg b/apps/client/src/static/icons/duotone/warehouse-alt.svg similarity index 100% rename from src/static/icons/duotone/warehouse-alt.svg rename to apps/client/src/static/icons/duotone/warehouse-alt.svg diff --git a/src/static/icons/duotone/warehouse.svg b/apps/client/src/static/icons/duotone/warehouse.svg similarity index 100% rename from src/static/icons/duotone/warehouse.svg rename to apps/client/src/static/icons/duotone/warehouse.svg diff --git a/src/static/icons/duotone/washer.svg b/apps/client/src/static/icons/duotone/washer.svg similarity index 100% rename from src/static/icons/duotone/washer.svg rename to apps/client/src/static/icons/duotone/washer.svg diff --git a/src/static/icons/duotone/watch-calculator.svg b/apps/client/src/static/icons/duotone/watch-calculator.svg similarity index 100% rename from src/static/icons/duotone/watch-calculator.svg rename to apps/client/src/static/icons/duotone/watch-calculator.svg diff --git a/src/static/icons/duotone/watch-fitness.svg b/apps/client/src/static/icons/duotone/watch-fitness.svg similarity index 100% rename from src/static/icons/duotone/watch-fitness.svg rename to apps/client/src/static/icons/duotone/watch-fitness.svg diff --git a/src/static/icons/duotone/watch.svg b/apps/client/src/static/icons/duotone/watch.svg similarity index 100% rename from src/static/icons/duotone/watch.svg rename to apps/client/src/static/icons/duotone/watch.svg diff --git a/src/static/icons/duotone/water-lower.svg b/apps/client/src/static/icons/duotone/water-lower.svg similarity index 100% rename from src/static/icons/duotone/water-lower.svg rename to apps/client/src/static/icons/duotone/water-lower.svg diff --git a/src/static/icons/duotone/water-rise.svg b/apps/client/src/static/icons/duotone/water-rise.svg similarity index 100% rename from src/static/icons/duotone/water-rise.svg rename to apps/client/src/static/icons/duotone/water-rise.svg diff --git a/src/static/icons/duotone/water.svg b/apps/client/src/static/icons/duotone/water.svg similarity index 100% rename from src/static/icons/duotone/water.svg rename to apps/client/src/static/icons/duotone/water.svg diff --git a/src/static/icons/duotone/wave-sine.svg b/apps/client/src/static/icons/duotone/wave-sine.svg similarity index 100% rename from src/static/icons/duotone/wave-sine.svg rename to apps/client/src/static/icons/duotone/wave-sine.svg diff --git a/src/static/icons/duotone/wave-square.svg b/apps/client/src/static/icons/duotone/wave-square.svg similarity index 100% rename from src/static/icons/duotone/wave-square.svg rename to apps/client/src/static/icons/duotone/wave-square.svg diff --git a/src/static/icons/duotone/wave-triangle.svg b/apps/client/src/static/icons/duotone/wave-triangle.svg similarity index 100% rename from src/static/icons/duotone/wave-triangle.svg rename to apps/client/src/static/icons/duotone/wave-triangle.svg diff --git a/src/static/icons/duotone/waveform-path.svg b/apps/client/src/static/icons/duotone/waveform-path.svg similarity index 100% rename from src/static/icons/duotone/waveform-path.svg rename to apps/client/src/static/icons/duotone/waveform-path.svg diff --git a/src/static/icons/duotone/waveform.svg b/apps/client/src/static/icons/duotone/waveform.svg similarity index 100% rename from src/static/icons/duotone/waveform.svg rename to apps/client/src/static/icons/duotone/waveform.svg diff --git a/src/static/icons/duotone/webcam-slash.svg b/apps/client/src/static/icons/duotone/webcam-slash.svg similarity index 100% rename from src/static/icons/duotone/webcam-slash.svg rename to apps/client/src/static/icons/duotone/webcam-slash.svg diff --git a/src/static/icons/duotone/webcam.svg b/apps/client/src/static/icons/duotone/webcam.svg similarity index 100% rename from src/static/icons/duotone/webcam.svg rename to apps/client/src/static/icons/duotone/webcam.svg diff --git a/src/static/icons/duotone/weight-hanging.svg b/apps/client/src/static/icons/duotone/weight-hanging.svg similarity index 100% rename from src/static/icons/duotone/weight-hanging.svg rename to apps/client/src/static/icons/duotone/weight-hanging.svg diff --git a/src/static/icons/duotone/weight.svg b/apps/client/src/static/icons/duotone/weight.svg similarity index 100% rename from src/static/icons/duotone/weight.svg rename to apps/client/src/static/icons/duotone/weight.svg diff --git a/src/static/icons/duotone/whale.svg b/apps/client/src/static/icons/duotone/whale.svg similarity index 100% rename from src/static/icons/duotone/whale.svg rename to apps/client/src/static/icons/duotone/whale.svg diff --git a/src/static/icons/duotone/wheat.svg b/apps/client/src/static/icons/duotone/wheat.svg similarity index 100% rename from src/static/icons/duotone/wheat.svg rename to apps/client/src/static/icons/duotone/wheat.svg diff --git a/src/static/icons/duotone/wheelchair.svg b/apps/client/src/static/icons/duotone/wheelchair.svg similarity index 100% rename from src/static/icons/duotone/wheelchair.svg rename to apps/client/src/static/icons/duotone/wheelchair.svg diff --git a/src/static/icons/duotone/whistle.svg b/apps/client/src/static/icons/duotone/whistle.svg similarity index 100% rename from src/static/icons/duotone/whistle.svg rename to apps/client/src/static/icons/duotone/whistle.svg diff --git a/src/static/icons/duotone/wifi-1.svg b/apps/client/src/static/icons/duotone/wifi-1.svg similarity index 100% rename from src/static/icons/duotone/wifi-1.svg rename to apps/client/src/static/icons/duotone/wifi-1.svg diff --git a/src/static/icons/duotone/wifi-2.svg b/apps/client/src/static/icons/duotone/wifi-2.svg similarity index 100% rename from src/static/icons/duotone/wifi-2.svg rename to apps/client/src/static/icons/duotone/wifi-2.svg diff --git a/src/static/icons/duotone/wifi-slash.svg b/apps/client/src/static/icons/duotone/wifi-slash.svg similarity index 100% rename from src/static/icons/duotone/wifi-slash.svg rename to apps/client/src/static/icons/duotone/wifi-slash.svg diff --git a/src/static/icons/duotone/wifi.svg b/apps/client/src/static/icons/duotone/wifi.svg similarity index 100% rename from src/static/icons/duotone/wifi.svg rename to apps/client/src/static/icons/duotone/wifi.svg diff --git a/src/static/icons/duotone/wind-turbine.svg b/apps/client/src/static/icons/duotone/wind-turbine.svg similarity index 100% rename from src/static/icons/duotone/wind-turbine.svg rename to apps/client/src/static/icons/duotone/wind-turbine.svg diff --git a/src/static/icons/duotone/wind-warning.svg b/apps/client/src/static/icons/duotone/wind-warning.svg similarity index 100% rename from src/static/icons/duotone/wind-warning.svg rename to apps/client/src/static/icons/duotone/wind-warning.svg diff --git a/src/static/icons/duotone/wind.svg b/apps/client/src/static/icons/duotone/wind.svg similarity index 100% rename from src/static/icons/duotone/wind.svg rename to apps/client/src/static/icons/duotone/wind.svg diff --git a/src/static/icons/duotone/window-alt.svg b/apps/client/src/static/icons/duotone/window-alt.svg similarity index 100% rename from src/static/icons/duotone/window-alt.svg rename to apps/client/src/static/icons/duotone/window-alt.svg diff --git a/src/static/icons/duotone/window-close.svg b/apps/client/src/static/icons/duotone/window-close.svg similarity index 100% rename from src/static/icons/duotone/window-close.svg rename to apps/client/src/static/icons/duotone/window-close.svg diff --git a/src/static/icons/duotone/window-frame-open.svg b/apps/client/src/static/icons/duotone/window-frame-open.svg similarity index 100% rename from src/static/icons/duotone/window-frame-open.svg rename to apps/client/src/static/icons/duotone/window-frame-open.svg diff --git a/src/static/icons/duotone/window-frame.svg b/apps/client/src/static/icons/duotone/window-frame.svg similarity index 100% rename from src/static/icons/duotone/window-frame.svg rename to apps/client/src/static/icons/duotone/window-frame.svg diff --git a/src/static/icons/duotone/window-maximize.svg b/apps/client/src/static/icons/duotone/window-maximize.svg similarity index 100% rename from src/static/icons/duotone/window-maximize.svg rename to apps/client/src/static/icons/duotone/window-maximize.svg diff --git a/src/static/icons/duotone/window-minimize.svg b/apps/client/src/static/icons/duotone/window-minimize.svg similarity index 100% rename from src/static/icons/duotone/window-minimize.svg rename to apps/client/src/static/icons/duotone/window-minimize.svg diff --git a/src/static/icons/duotone/window-restore.svg b/apps/client/src/static/icons/duotone/window-restore.svg similarity index 100% rename from src/static/icons/duotone/window-restore.svg rename to apps/client/src/static/icons/duotone/window-restore.svg diff --git a/src/static/icons/duotone/window.svg b/apps/client/src/static/icons/duotone/window.svg similarity index 100% rename from src/static/icons/duotone/window.svg rename to apps/client/src/static/icons/duotone/window.svg diff --git a/src/static/icons/duotone/windsock.svg b/apps/client/src/static/icons/duotone/windsock.svg similarity index 100% rename from src/static/icons/duotone/windsock.svg rename to apps/client/src/static/icons/duotone/windsock.svg diff --git a/src/static/icons/duotone/wine-bottle.svg b/apps/client/src/static/icons/duotone/wine-bottle.svg similarity index 100% rename from src/static/icons/duotone/wine-bottle.svg rename to apps/client/src/static/icons/duotone/wine-bottle.svg diff --git a/src/static/icons/duotone/wine-glass-alt.svg b/apps/client/src/static/icons/duotone/wine-glass-alt.svg similarity index 100% rename from src/static/icons/duotone/wine-glass-alt.svg rename to apps/client/src/static/icons/duotone/wine-glass-alt.svg diff --git a/src/static/icons/duotone/wine-glass.svg b/apps/client/src/static/icons/duotone/wine-glass.svg similarity index 100% rename from src/static/icons/duotone/wine-glass.svg rename to apps/client/src/static/icons/duotone/wine-glass.svg diff --git a/src/static/icons/duotone/won-sign.svg b/apps/client/src/static/icons/duotone/won-sign.svg similarity index 100% rename from src/static/icons/duotone/won-sign.svg rename to apps/client/src/static/icons/duotone/won-sign.svg diff --git a/src/static/icons/duotone/wreath.svg b/apps/client/src/static/icons/duotone/wreath.svg similarity index 100% rename from src/static/icons/duotone/wreath.svg rename to apps/client/src/static/icons/duotone/wreath.svg diff --git a/src/static/icons/duotone/wrench.svg b/apps/client/src/static/icons/duotone/wrench.svg similarity index 100% rename from src/static/icons/duotone/wrench.svg rename to apps/client/src/static/icons/duotone/wrench.svg diff --git a/src/static/icons/duotone/x-ray.svg b/apps/client/src/static/icons/duotone/x-ray.svg similarity index 100% rename from src/static/icons/duotone/x-ray.svg rename to apps/client/src/static/icons/duotone/x-ray.svg diff --git a/src/static/icons/duotone/yen-sign.svg b/apps/client/src/static/icons/duotone/yen-sign.svg similarity index 100% rename from src/static/icons/duotone/yen-sign.svg rename to apps/client/src/static/icons/duotone/yen-sign.svg diff --git a/src/static/icons/duotone/yin-yang.svg b/apps/client/src/static/icons/duotone/yin-yang.svg similarity index 100% rename from src/static/icons/duotone/yin-yang.svg rename to apps/client/src/static/icons/duotone/yin-yang.svg diff --git a/src/static/icons/light/abacus.svg b/apps/client/src/static/icons/light/abacus.svg similarity index 100% rename from src/static/icons/light/abacus.svg rename to apps/client/src/static/icons/light/abacus.svg diff --git a/src/static/icons/light/acorn.svg b/apps/client/src/static/icons/light/acorn.svg similarity index 100% rename from src/static/icons/light/acorn.svg rename to apps/client/src/static/icons/light/acorn.svg diff --git a/src/static/icons/light/ad.svg b/apps/client/src/static/icons/light/ad.svg similarity index 100% rename from src/static/icons/light/ad.svg rename to apps/client/src/static/icons/light/ad.svg diff --git a/src/static/icons/light/address-book.svg b/apps/client/src/static/icons/light/address-book.svg similarity index 100% rename from src/static/icons/light/address-book.svg rename to apps/client/src/static/icons/light/address-book.svg diff --git a/src/static/icons/light/address-card.svg b/apps/client/src/static/icons/light/address-card.svg similarity index 100% rename from src/static/icons/light/address-card.svg rename to apps/client/src/static/icons/light/address-card.svg diff --git a/src/static/icons/light/adjust.svg b/apps/client/src/static/icons/light/adjust.svg similarity index 100% rename from src/static/icons/light/adjust.svg rename to apps/client/src/static/icons/light/adjust.svg diff --git a/src/static/icons/light/air-conditioner.svg b/apps/client/src/static/icons/light/air-conditioner.svg similarity index 100% rename from src/static/icons/light/air-conditioner.svg rename to apps/client/src/static/icons/light/air-conditioner.svg diff --git a/src/static/icons/light/air-freshener.svg b/apps/client/src/static/icons/light/air-freshener.svg similarity index 100% rename from src/static/icons/light/air-freshener.svg rename to apps/client/src/static/icons/light/air-freshener.svg diff --git a/src/static/icons/light/alarm-clock.svg b/apps/client/src/static/icons/light/alarm-clock.svg similarity index 100% rename from src/static/icons/light/alarm-clock.svg rename to apps/client/src/static/icons/light/alarm-clock.svg diff --git a/src/static/icons/light/alarm-exclamation.svg b/apps/client/src/static/icons/light/alarm-exclamation.svg similarity index 100% rename from src/static/icons/light/alarm-exclamation.svg rename to apps/client/src/static/icons/light/alarm-exclamation.svg diff --git a/src/static/icons/light/alarm-plus.svg b/apps/client/src/static/icons/light/alarm-plus.svg similarity index 100% rename from src/static/icons/light/alarm-plus.svg rename to apps/client/src/static/icons/light/alarm-plus.svg diff --git a/src/static/icons/light/alarm-snooze.svg b/apps/client/src/static/icons/light/alarm-snooze.svg similarity index 100% rename from src/static/icons/light/alarm-snooze.svg rename to apps/client/src/static/icons/light/alarm-snooze.svg diff --git a/src/static/icons/light/album-collection.svg b/apps/client/src/static/icons/light/album-collection.svg similarity index 100% rename from src/static/icons/light/album-collection.svg rename to apps/client/src/static/icons/light/album-collection.svg diff --git a/src/static/icons/light/album.svg b/apps/client/src/static/icons/light/album.svg similarity index 100% rename from src/static/icons/light/album.svg rename to apps/client/src/static/icons/light/album.svg diff --git a/src/static/icons/light/alicorn.svg b/apps/client/src/static/icons/light/alicorn.svg similarity index 100% rename from src/static/icons/light/alicorn.svg rename to apps/client/src/static/icons/light/alicorn.svg diff --git a/src/static/icons/light/alien-monster.svg b/apps/client/src/static/icons/light/alien-monster.svg similarity index 100% rename from src/static/icons/light/alien-monster.svg rename to apps/client/src/static/icons/light/alien-monster.svg diff --git a/src/static/icons/light/alien.svg b/apps/client/src/static/icons/light/alien.svg similarity index 100% rename from src/static/icons/light/alien.svg rename to apps/client/src/static/icons/light/alien.svg diff --git a/src/static/icons/light/align-center.svg b/apps/client/src/static/icons/light/align-center.svg similarity index 100% rename from src/static/icons/light/align-center.svg rename to apps/client/src/static/icons/light/align-center.svg diff --git a/src/static/icons/light/align-justify.svg b/apps/client/src/static/icons/light/align-justify.svg similarity index 100% rename from src/static/icons/light/align-justify.svg rename to apps/client/src/static/icons/light/align-justify.svg diff --git a/src/static/icons/light/align-left.svg b/apps/client/src/static/icons/light/align-left.svg similarity index 100% rename from src/static/icons/light/align-left.svg rename to apps/client/src/static/icons/light/align-left.svg diff --git a/src/static/icons/light/align-right.svg b/apps/client/src/static/icons/light/align-right.svg similarity index 100% rename from src/static/icons/light/align-right.svg rename to apps/client/src/static/icons/light/align-right.svg diff --git a/src/static/icons/light/align-slash.svg b/apps/client/src/static/icons/light/align-slash.svg similarity index 100% rename from src/static/icons/light/align-slash.svg rename to apps/client/src/static/icons/light/align-slash.svg diff --git a/src/static/icons/light/allergies.svg b/apps/client/src/static/icons/light/allergies.svg similarity index 100% rename from src/static/icons/light/allergies.svg rename to apps/client/src/static/icons/light/allergies.svg diff --git a/src/static/icons/light/ambulance.svg b/apps/client/src/static/icons/light/ambulance.svg similarity index 100% rename from src/static/icons/light/ambulance.svg rename to apps/client/src/static/icons/light/ambulance.svg diff --git a/src/static/icons/light/american-sign-language-interpreting.svg b/apps/client/src/static/icons/light/american-sign-language-interpreting.svg similarity index 100% rename from src/static/icons/light/american-sign-language-interpreting.svg rename to apps/client/src/static/icons/light/american-sign-language-interpreting.svg diff --git a/src/static/icons/light/amp-guitar.svg b/apps/client/src/static/icons/light/amp-guitar.svg similarity index 100% rename from src/static/icons/light/amp-guitar.svg rename to apps/client/src/static/icons/light/amp-guitar.svg diff --git a/src/static/icons/light/analytics.svg b/apps/client/src/static/icons/light/analytics.svg similarity index 100% rename from src/static/icons/light/analytics.svg rename to apps/client/src/static/icons/light/analytics.svg diff --git a/src/static/icons/light/anchor.svg b/apps/client/src/static/icons/light/anchor.svg similarity index 100% rename from src/static/icons/light/anchor.svg rename to apps/client/src/static/icons/light/anchor.svg diff --git a/src/static/icons/light/angel.svg b/apps/client/src/static/icons/light/angel.svg similarity index 100% rename from src/static/icons/light/angel.svg rename to apps/client/src/static/icons/light/angel.svg diff --git a/src/static/icons/light/angle-double-down.svg b/apps/client/src/static/icons/light/angle-double-down.svg similarity index 100% rename from src/static/icons/light/angle-double-down.svg rename to apps/client/src/static/icons/light/angle-double-down.svg diff --git a/src/static/icons/light/angle-double-left.svg b/apps/client/src/static/icons/light/angle-double-left.svg similarity index 100% rename from src/static/icons/light/angle-double-left.svg rename to apps/client/src/static/icons/light/angle-double-left.svg diff --git a/src/static/icons/light/angle-double-right.svg b/apps/client/src/static/icons/light/angle-double-right.svg similarity index 100% rename from src/static/icons/light/angle-double-right.svg rename to apps/client/src/static/icons/light/angle-double-right.svg diff --git a/src/static/icons/light/angle-double-up.svg b/apps/client/src/static/icons/light/angle-double-up.svg similarity index 100% rename from src/static/icons/light/angle-double-up.svg rename to apps/client/src/static/icons/light/angle-double-up.svg diff --git a/src/static/icons/light/angle-down.svg b/apps/client/src/static/icons/light/angle-down.svg similarity index 100% rename from src/static/icons/light/angle-down.svg rename to apps/client/src/static/icons/light/angle-down.svg diff --git a/src/static/icons/light/angle-left.svg b/apps/client/src/static/icons/light/angle-left.svg similarity index 100% rename from src/static/icons/light/angle-left.svg rename to apps/client/src/static/icons/light/angle-left.svg diff --git a/src/static/icons/light/angle-right.svg b/apps/client/src/static/icons/light/angle-right.svg similarity index 100% rename from src/static/icons/light/angle-right.svg rename to apps/client/src/static/icons/light/angle-right.svg diff --git a/src/static/icons/light/angle-up.svg b/apps/client/src/static/icons/light/angle-up.svg similarity index 100% rename from src/static/icons/light/angle-up.svg rename to apps/client/src/static/icons/light/angle-up.svg diff --git a/src/static/icons/light/angry.svg b/apps/client/src/static/icons/light/angry.svg similarity index 100% rename from src/static/icons/light/angry.svg rename to apps/client/src/static/icons/light/angry.svg diff --git a/src/static/icons/light/ankh.svg b/apps/client/src/static/icons/light/ankh.svg similarity index 100% rename from src/static/icons/light/ankh.svg rename to apps/client/src/static/icons/light/ankh.svg diff --git a/src/static/icons/light/apple-alt.svg b/apps/client/src/static/icons/light/apple-alt.svg similarity index 100% rename from src/static/icons/light/apple-alt.svg rename to apps/client/src/static/icons/light/apple-alt.svg diff --git a/src/static/icons/light/apple-crate.svg b/apps/client/src/static/icons/light/apple-crate.svg similarity index 100% rename from src/static/icons/light/apple-crate.svg rename to apps/client/src/static/icons/light/apple-crate.svg diff --git a/src/static/icons/light/archive.svg b/apps/client/src/static/icons/light/archive.svg similarity index 100% rename from src/static/icons/light/archive.svg rename to apps/client/src/static/icons/light/archive.svg diff --git a/src/static/icons/light/archway.svg b/apps/client/src/static/icons/light/archway.svg similarity index 100% rename from src/static/icons/light/archway.svg rename to apps/client/src/static/icons/light/archway.svg diff --git a/src/static/icons/light/arrow-alt-circle-down.svg b/apps/client/src/static/icons/light/arrow-alt-circle-down.svg similarity index 100% rename from src/static/icons/light/arrow-alt-circle-down.svg rename to apps/client/src/static/icons/light/arrow-alt-circle-down.svg diff --git a/src/static/icons/light/arrow-alt-circle-left.svg b/apps/client/src/static/icons/light/arrow-alt-circle-left.svg similarity index 100% rename from src/static/icons/light/arrow-alt-circle-left.svg rename to apps/client/src/static/icons/light/arrow-alt-circle-left.svg diff --git a/src/static/icons/light/arrow-alt-circle-right.svg b/apps/client/src/static/icons/light/arrow-alt-circle-right.svg similarity index 100% rename from src/static/icons/light/arrow-alt-circle-right.svg rename to apps/client/src/static/icons/light/arrow-alt-circle-right.svg diff --git a/src/static/icons/light/arrow-alt-circle-up.svg b/apps/client/src/static/icons/light/arrow-alt-circle-up.svg similarity index 100% rename from src/static/icons/light/arrow-alt-circle-up.svg rename to apps/client/src/static/icons/light/arrow-alt-circle-up.svg diff --git a/src/static/icons/light/arrow-alt-down.svg b/apps/client/src/static/icons/light/arrow-alt-down.svg similarity index 100% rename from src/static/icons/light/arrow-alt-down.svg rename to apps/client/src/static/icons/light/arrow-alt-down.svg diff --git a/src/static/icons/light/arrow-alt-from-bottom.svg b/apps/client/src/static/icons/light/arrow-alt-from-bottom.svg similarity index 100% rename from src/static/icons/light/arrow-alt-from-bottom.svg rename to apps/client/src/static/icons/light/arrow-alt-from-bottom.svg diff --git a/src/static/icons/light/arrow-alt-from-left.svg b/apps/client/src/static/icons/light/arrow-alt-from-left.svg similarity index 100% rename from src/static/icons/light/arrow-alt-from-left.svg rename to apps/client/src/static/icons/light/arrow-alt-from-left.svg diff --git a/src/static/icons/light/arrow-alt-from-right.svg b/apps/client/src/static/icons/light/arrow-alt-from-right.svg similarity index 100% rename from src/static/icons/light/arrow-alt-from-right.svg rename to apps/client/src/static/icons/light/arrow-alt-from-right.svg diff --git a/src/static/icons/light/arrow-alt-from-top.svg b/apps/client/src/static/icons/light/arrow-alt-from-top.svg similarity index 100% rename from src/static/icons/light/arrow-alt-from-top.svg rename to apps/client/src/static/icons/light/arrow-alt-from-top.svg diff --git a/src/static/icons/light/arrow-alt-left.svg b/apps/client/src/static/icons/light/arrow-alt-left.svg similarity index 100% rename from src/static/icons/light/arrow-alt-left.svg rename to apps/client/src/static/icons/light/arrow-alt-left.svg diff --git a/src/static/icons/light/arrow-alt-right.svg b/apps/client/src/static/icons/light/arrow-alt-right.svg similarity index 100% rename from src/static/icons/light/arrow-alt-right.svg rename to apps/client/src/static/icons/light/arrow-alt-right.svg diff --git a/src/static/icons/light/arrow-alt-square-down.svg b/apps/client/src/static/icons/light/arrow-alt-square-down.svg similarity index 100% rename from src/static/icons/light/arrow-alt-square-down.svg rename to apps/client/src/static/icons/light/arrow-alt-square-down.svg diff --git a/src/static/icons/light/arrow-alt-square-left.svg b/apps/client/src/static/icons/light/arrow-alt-square-left.svg similarity index 100% rename from src/static/icons/light/arrow-alt-square-left.svg rename to apps/client/src/static/icons/light/arrow-alt-square-left.svg diff --git a/src/static/icons/light/arrow-alt-square-right.svg b/apps/client/src/static/icons/light/arrow-alt-square-right.svg similarity index 100% rename from src/static/icons/light/arrow-alt-square-right.svg rename to apps/client/src/static/icons/light/arrow-alt-square-right.svg diff --git a/src/static/icons/light/arrow-alt-square-up.svg b/apps/client/src/static/icons/light/arrow-alt-square-up.svg similarity index 100% rename from src/static/icons/light/arrow-alt-square-up.svg rename to apps/client/src/static/icons/light/arrow-alt-square-up.svg diff --git a/src/static/icons/light/arrow-alt-to-bottom.svg b/apps/client/src/static/icons/light/arrow-alt-to-bottom.svg similarity index 100% rename from src/static/icons/light/arrow-alt-to-bottom.svg rename to apps/client/src/static/icons/light/arrow-alt-to-bottom.svg diff --git a/src/static/icons/light/arrow-alt-to-left.svg b/apps/client/src/static/icons/light/arrow-alt-to-left.svg similarity index 100% rename from src/static/icons/light/arrow-alt-to-left.svg rename to apps/client/src/static/icons/light/arrow-alt-to-left.svg diff --git a/src/static/icons/light/arrow-alt-to-right.svg b/apps/client/src/static/icons/light/arrow-alt-to-right.svg similarity index 100% rename from src/static/icons/light/arrow-alt-to-right.svg rename to apps/client/src/static/icons/light/arrow-alt-to-right.svg diff --git a/src/static/icons/light/arrow-alt-to-top.svg b/apps/client/src/static/icons/light/arrow-alt-to-top.svg similarity index 100% rename from src/static/icons/light/arrow-alt-to-top.svg rename to apps/client/src/static/icons/light/arrow-alt-to-top.svg diff --git a/src/static/icons/light/arrow-alt-up.svg b/apps/client/src/static/icons/light/arrow-alt-up.svg similarity index 100% rename from src/static/icons/light/arrow-alt-up.svg rename to apps/client/src/static/icons/light/arrow-alt-up.svg diff --git a/src/static/icons/light/arrow-circle-down.svg b/apps/client/src/static/icons/light/arrow-circle-down.svg similarity index 100% rename from src/static/icons/light/arrow-circle-down.svg rename to apps/client/src/static/icons/light/arrow-circle-down.svg diff --git a/src/static/icons/light/arrow-circle-left.svg b/apps/client/src/static/icons/light/arrow-circle-left.svg similarity index 100% rename from src/static/icons/light/arrow-circle-left.svg rename to apps/client/src/static/icons/light/arrow-circle-left.svg diff --git a/src/static/icons/light/arrow-circle-right.svg b/apps/client/src/static/icons/light/arrow-circle-right.svg similarity index 100% rename from src/static/icons/light/arrow-circle-right.svg rename to apps/client/src/static/icons/light/arrow-circle-right.svg diff --git a/src/static/icons/light/arrow-circle-up.svg b/apps/client/src/static/icons/light/arrow-circle-up.svg similarity index 100% rename from src/static/icons/light/arrow-circle-up.svg rename to apps/client/src/static/icons/light/arrow-circle-up.svg diff --git a/src/static/icons/light/arrow-down.svg b/apps/client/src/static/icons/light/arrow-down.svg similarity index 100% rename from src/static/icons/light/arrow-down.svg rename to apps/client/src/static/icons/light/arrow-down.svg diff --git a/src/static/icons/light/arrow-from-bottom.svg b/apps/client/src/static/icons/light/arrow-from-bottom.svg similarity index 100% rename from src/static/icons/light/arrow-from-bottom.svg rename to apps/client/src/static/icons/light/arrow-from-bottom.svg diff --git a/src/static/icons/light/arrow-from-left.svg b/apps/client/src/static/icons/light/arrow-from-left.svg similarity index 100% rename from src/static/icons/light/arrow-from-left.svg rename to apps/client/src/static/icons/light/arrow-from-left.svg diff --git a/src/static/icons/light/arrow-from-right.svg b/apps/client/src/static/icons/light/arrow-from-right.svg similarity index 100% rename from src/static/icons/light/arrow-from-right.svg rename to apps/client/src/static/icons/light/arrow-from-right.svg diff --git a/src/static/icons/light/arrow-from-top.svg b/apps/client/src/static/icons/light/arrow-from-top.svg similarity index 100% rename from src/static/icons/light/arrow-from-top.svg rename to apps/client/src/static/icons/light/arrow-from-top.svg diff --git a/src/static/icons/light/arrow-left.svg b/apps/client/src/static/icons/light/arrow-left.svg similarity index 100% rename from src/static/icons/light/arrow-left.svg rename to apps/client/src/static/icons/light/arrow-left.svg diff --git a/src/static/icons/light/arrow-right.svg b/apps/client/src/static/icons/light/arrow-right.svg similarity index 100% rename from src/static/icons/light/arrow-right.svg rename to apps/client/src/static/icons/light/arrow-right.svg diff --git a/src/static/icons/light/arrow-square-down.svg b/apps/client/src/static/icons/light/arrow-square-down.svg similarity index 100% rename from src/static/icons/light/arrow-square-down.svg rename to apps/client/src/static/icons/light/arrow-square-down.svg diff --git a/src/static/icons/light/arrow-square-left.svg b/apps/client/src/static/icons/light/arrow-square-left.svg similarity index 100% rename from src/static/icons/light/arrow-square-left.svg rename to apps/client/src/static/icons/light/arrow-square-left.svg diff --git a/src/static/icons/light/arrow-square-right.svg b/apps/client/src/static/icons/light/arrow-square-right.svg similarity index 100% rename from src/static/icons/light/arrow-square-right.svg rename to apps/client/src/static/icons/light/arrow-square-right.svg diff --git a/src/static/icons/light/arrow-square-up.svg b/apps/client/src/static/icons/light/arrow-square-up.svg similarity index 100% rename from src/static/icons/light/arrow-square-up.svg rename to apps/client/src/static/icons/light/arrow-square-up.svg diff --git a/src/static/icons/light/arrow-to-bottom.svg b/apps/client/src/static/icons/light/arrow-to-bottom.svg similarity index 100% rename from src/static/icons/light/arrow-to-bottom.svg rename to apps/client/src/static/icons/light/arrow-to-bottom.svg diff --git a/src/static/icons/light/arrow-to-left.svg b/apps/client/src/static/icons/light/arrow-to-left.svg similarity index 100% rename from src/static/icons/light/arrow-to-left.svg rename to apps/client/src/static/icons/light/arrow-to-left.svg diff --git a/src/static/icons/light/arrow-to-right.svg b/apps/client/src/static/icons/light/arrow-to-right.svg similarity index 100% rename from src/static/icons/light/arrow-to-right.svg rename to apps/client/src/static/icons/light/arrow-to-right.svg diff --git a/src/static/icons/light/arrow-to-top.svg b/apps/client/src/static/icons/light/arrow-to-top.svg similarity index 100% rename from src/static/icons/light/arrow-to-top.svg rename to apps/client/src/static/icons/light/arrow-to-top.svg diff --git a/src/static/icons/light/arrow-up.svg b/apps/client/src/static/icons/light/arrow-up.svg similarity index 100% rename from src/static/icons/light/arrow-up.svg rename to apps/client/src/static/icons/light/arrow-up.svg diff --git a/src/static/icons/light/arrows-alt-h.svg b/apps/client/src/static/icons/light/arrows-alt-h.svg similarity index 100% rename from src/static/icons/light/arrows-alt-h.svg rename to apps/client/src/static/icons/light/arrows-alt-h.svg diff --git a/src/static/icons/light/arrows-alt-v.svg b/apps/client/src/static/icons/light/arrows-alt-v.svg similarity index 100% rename from src/static/icons/light/arrows-alt-v.svg rename to apps/client/src/static/icons/light/arrows-alt-v.svg diff --git a/src/static/icons/light/arrows-alt.svg b/apps/client/src/static/icons/light/arrows-alt.svg similarity index 100% rename from src/static/icons/light/arrows-alt.svg rename to apps/client/src/static/icons/light/arrows-alt.svg diff --git a/src/static/icons/light/arrows-h.svg b/apps/client/src/static/icons/light/arrows-h.svg similarity index 100% rename from src/static/icons/light/arrows-h.svg rename to apps/client/src/static/icons/light/arrows-h.svg diff --git a/src/static/icons/light/arrows-v.svg b/apps/client/src/static/icons/light/arrows-v.svg similarity index 100% rename from src/static/icons/light/arrows-v.svg rename to apps/client/src/static/icons/light/arrows-v.svg diff --git a/src/static/icons/light/arrows.svg b/apps/client/src/static/icons/light/arrows.svg similarity index 100% rename from src/static/icons/light/arrows.svg rename to apps/client/src/static/icons/light/arrows.svg diff --git a/src/static/icons/light/assistive-listening-systems.svg b/apps/client/src/static/icons/light/assistive-listening-systems.svg similarity index 100% rename from src/static/icons/light/assistive-listening-systems.svg rename to apps/client/src/static/icons/light/assistive-listening-systems.svg diff --git a/src/static/icons/light/asterisk.svg b/apps/client/src/static/icons/light/asterisk.svg similarity index 100% rename from src/static/icons/light/asterisk.svg rename to apps/client/src/static/icons/light/asterisk.svg diff --git a/src/static/icons/light/at.svg b/apps/client/src/static/icons/light/at.svg similarity index 100% rename from src/static/icons/light/at.svg rename to apps/client/src/static/icons/light/at.svg diff --git a/src/static/icons/light/atlas.svg b/apps/client/src/static/icons/light/atlas.svg similarity index 100% rename from src/static/icons/light/atlas.svg rename to apps/client/src/static/icons/light/atlas.svg diff --git a/src/static/icons/light/atom-alt.svg b/apps/client/src/static/icons/light/atom-alt.svg similarity index 100% rename from src/static/icons/light/atom-alt.svg rename to apps/client/src/static/icons/light/atom-alt.svg diff --git a/src/static/icons/light/atom.svg b/apps/client/src/static/icons/light/atom.svg similarity index 100% rename from src/static/icons/light/atom.svg rename to apps/client/src/static/icons/light/atom.svg diff --git a/src/static/icons/light/audio-description.svg b/apps/client/src/static/icons/light/audio-description.svg similarity index 100% rename from src/static/icons/light/audio-description.svg rename to apps/client/src/static/icons/light/audio-description.svg diff --git a/src/static/icons/light/award.svg b/apps/client/src/static/icons/light/award.svg similarity index 100% rename from src/static/icons/light/award.svg rename to apps/client/src/static/icons/light/award.svg diff --git a/src/static/icons/light/axe-battle.svg b/apps/client/src/static/icons/light/axe-battle.svg similarity index 100% rename from src/static/icons/light/axe-battle.svg rename to apps/client/src/static/icons/light/axe-battle.svg diff --git a/src/static/icons/light/axe.svg b/apps/client/src/static/icons/light/axe.svg similarity index 100% rename from src/static/icons/light/axe.svg rename to apps/client/src/static/icons/light/axe.svg diff --git a/src/static/icons/light/baby-carriage.svg b/apps/client/src/static/icons/light/baby-carriage.svg similarity index 100% rename from src/static/icons/light/baby-carriage.svg rename to apps/client/src/static/icons/light/baby-carriage.svg diff --git a/src/static/icons/light/baby.svg b/apps/client/src/static/icons/light/baby.svg similarity index 100% rename from src/static/icons/light/baby.svg rename to apps/client/src/static/icons/light/baby.svg diff --git a/src/static/icons/light/backpack.svg b/apps/client/src/static/icons/light/backpack.svg similarity index 100% rename from src/static/icons/light/backpack.svg rename to apps/client/src/static/icons/light/backpack.svg diff --git a/src/static/icons/light/backspace.svg b/apps/client/src/static/icons/light/backspace.svg similarity index 100% rename from src/static/icons/light/backspace.svg rename to apps/client/src/static/icons/light/backspace.svg diff --git a/src/static/icons/light/backward.svg b/apps/client/src/static/icons/light/backward.svg similarity index 100% rename from src/static/icons/light/backward.svg rename to apps/client/src/static/icons/light/backward.svg diff --git a/src/static/icons/light/bacon.svg b/apps/client/src/static/icons/light/bacon.svg similarity index 100% rename from src/static/icons/light/bacon.svg rename to apps/client/src/static/icons/light/bacon.svg diff --git a/src/static/icons/light/badge-check.svg b/apps/client/src/static/icons/light/badge-check.svg similarity index 100% rename from src/static/icons/light/badge-check.svg rename to apps/client/src/static/icons/light/badge-check.svg diff --git a/src/static/icons/light/badge-dollar.svg b/apps/client/src/static/icons/light/badge-dollar.svg similarity index 100% rename from src/static/icons/light/badge-dollar.svg rename to apps/client/src/static/icons/light/badge-dollar.svg diff --git a/src/static/icons/light/badge-percent.svg b/apps/client/src/static/icons/light/badge-percent.svg similarity index 100% rename from src/static/icons/light/badge-percent.svg rename to apps/client/src/static/icons/light/badge-percent.svg diff --git a/src/static/icons/light/badge-sheriff.svg b/apps/client/src/static/icons/light/badge-sheriff.svg similarity index 100% rename from src/static/icons/light/badge-sheriff.svg rename to apps/client/src/static/icons/light/badge-sheriff.svg diff --git a/src/static/icons/light/badge.svg b/apps/client/src/static/icons/light/badge.svg similarity index 100% rename from src/static/icons/light/badge.svg rename to apps/client/src/static/icons/light/badge.svg diff --git a/src/static/icons/light/badger-honey.svg b/apps/client/src/static/icons/light/badger-honey.svg similarity index 100% rename from src/static/icons/light/badger-honey.svg rename to apps/client/src/static/icons/light/badger-honey.svg diff --git a/src/static/icons/light/bags-shopping.svg b/apps/client/src/static/icons/light/bags-shopping.svg similarity index 100% rename from src/static/icons/light/bags-shopping.svg rename to apps/client/src/static/icons/light/bags-shopping.svg diff --git a/src/static/icons/light/bahai.svg b/apps/client/src/static/icons/light/bahai.svg similarity index 100% rename from src/static/icons/light/bahai.svg rename to apps/client/src/static/icons/light/bahai.svg diff --git a/src/static/icons/light/balance-scale-left.svg b/apps/client/src/static/icons/light/balance-scale-left.svg similarity index 100% rename from src/static/icons/light/balance-scale-left.svg rename to apps/client/src/static/icons/light/balance-scale-left.svg diff --git a/src/static/icons/light/balance-scale-right.svg b/apps/client/src/static/icons/light/balance-scale-right.svg similarity index 100% rename from src/static/icons/light/balance-scale-right.svg rename to apps/client/src/static/icons/light/balance-scale-right.svg diff --git a/src/static/icons/light/balance-scale.svg b/apps/client/src/static/icons/light/balance-scale.svg similarity index 100% rename from src/static/icons/light/balance-scale.svg rename to apps/client/src/static/icons/light/balance-scale.svg diff --git a/src/static/icons/light/ball-pile.svg b/apps/client/src/static/icons/light/ball-pile.svg similarity index 100% rename from src/static/icons/light/ball-pile.svg rename to apps/client/src/static/icons/light/ball-pile.svg diff --git a/src/static/icons/light/ballot-check.svg b/apps/client/src/static/icons/light/ballot-check.svg similarity index 100% rename from src/static/icons/light/ballot-check.svg rename to apps/client/src/static/icons/light/ballot-check.svg diff --git a/src/static/icons/light/ballot.svg b/apps/client/src/static/icons/light/ballot.svg similarity index 100% rename from src/static/icons/light/ballot.svg rename to apps/client/src/static/icons/light/ballot.svg diff --git a/src/static/icons/light/ban.svg b/apps/client/src/static/icons/light/ban.svg similarity index 100% rename from src/static/icons/light/ban.svg rename to apps/client/src/static/icons/light/ban.svg diff --git a/src/static/icons/light/band-aid.svg b/apps/client/src/static/icons/light/band-aid.svg similarity index 100% rename from src/static/icons/light/band-aid.svg rename to apps/client/src/static/icons/light/band-aid.svg diff --git a/src/static/icons/light/banjo.svg b/apps/client/src/static/icons/light/banjo.svg similarity index 100% rename from src/static/icons/light/banjo.svg rename to apps/client/src/static/icons/light/banjo.svg diff --git a/src/static/icons/light/barcode-alt.svg b/apps/client/src/static/icons/light/barcode-alt.svg similarity index 100% rename from src/static/icons/light/barcode-alt.svg rename to apps/client/src/static/icons/light/barcode-alt.svg diff --git a/src/static/icons/light/barcode-read.svg b/apps/client/src/static/icons/light/barcode-read.svg similarity index 100% rename from src/static/icons/light/barcode-read.svg rename to apps/client/src/static/icons/light/barcode-read.svg diff --git a/src/static/icons/light/barcode-scan.svg b/apps/client/src/static/icons/light/barcode-scan.svg similarity index 100% rename from src/static/icons/light/barcode-scan.svg rename to apps/client/src/static/icons/light/barcode-scan.svg diff --git a/src/static/icons/light/barcode.svg b/apps/client/src/static/icons/light/barcode.svg similarity index 100% rename from src/static/icons/light/barcode.svg rename to apps/client/src/static/icons/light/barcode.svg diff --git a/src/static/icons/light/bars.svg b/apps/client/src/static/icons/light/bars.svg similarity index 100% rename from src/static/icons/light/bars.svg rename to apps/client/src/static/icons/light/bars.svg diff --git a/src/static/icons/light/baseball-ball.svg b/apps/client/src/static/icons/light/baseball-ball.svg similarity index 100% rename from src/static/icons/light/baseball-ball.svg rename to apps/client/src/static/icons/light/baseball-ball.svg diff --git a/src/static/icons/light/baseball.svg b/apps/client/src/static/icons/light/baseball.svg similarity index 100% rename from src/static/icons/light/baseball.svg rename to apps/client/src/static/icons/light/baseball.svg diff --git a/src/static/icons/light/basketball-ball.svg b/apps/client/src/static/icons/light/basketball-ball.svg similarity index 100% rename from src/static/icons/light/basketball-ball.svg rename to apps/client/src/static/icons/light/basketball-ball.svg diff --git a/src/static/icons/light/basketball-hoop.svg b/apps/client/src/static/icons/light/basketball-hoop.svg similarity index 100% rename from src/static/icons/light/basketball-hoop.svg rename to apps/client/src/static/icons/light/basketball-hoop.svg diff --git a/src/static/icons/light/bat.svg b/apps/client/src/static/icons/light/bat.svg similarity index 100% rename from src/static/icons/light/bat.svg rename to apps/client/src/static/icons/light/bat.svg diff --git a/src/static/icons/light/bath.svg b/apps/client/src/static/icons/light/bath.svg similarity index 100% rename from src/static/icons/light/bath.svg rename to apps/client/src/static/icons/light/bath.svg diff --git a/src/static/icons/light/battery-bolt.svg b/apps/client/src/static/icons/light/battery-bolt.svg similarity index 100% rename from src/static/icons/light/battery-bolt.svg rename to apps/client/src/static/icons/light/battery-bolt.svg diff --git a/src/static/icons/light/battery-empty.svg b/apps/client/src/static/icons/light/battery-empty.svg similarity index 100% rename from src/static/icons/light/battery-empty.svg rename to apps/client/src/static/icons/light/battery-empty.svg diff --git a/src/static/icons/light/battery-full.svg b/apps/client/src/static/icons/light/battery-full.svg similarity index 100% rename from src/static/icons/light/battery-full.svg rename to apps/client/src/static/icons/light/battery-full.svg diff --git a/src/static/icons/light/battery-half.svg b/apps/client/src/static/icons/light/battery-half.svg similarity index 100% rename from src/static/icons/light/battery-half.svg rename to apps/client/src/static/icons/light/battery-half.svg diff --git a/src/static/icons/light/battery-quarter.svg b/apps/client/src/static/icons/light/battery-quarter.svg similarity index 100% rename from src/static/icons/light/battery-quarter.svg rename to apps/client/src/static/icons/light/battery-quarter.svg diff --git a/src/static/icons/light/battery-slash.svg b/apps/client/src/static/icons/light/battery-slash.svg similarity index 100% rename from src/static/icons/light/battery-slash.svg rename to apps/client/src/static/icons/light/battery-slash.svg diff --git a/src/static/icons/light/battery-three-quarters.svg b/apps/client/src/static/icons/light/battery-three-quarters.svg similarity index 100% rename from src/static/icons/light/battery-three-quarters.svg rename to apps/client/src/static/icons/light/battery-three-quarters.svg diff --git a/src/static/icons/light/bed-alt.svg b/apps/client/src/static/icons/light/bed-alt.svg similarity index 100% rename from src/static/icons/light/bed-alt.svg rename to apps/client/src/static/icons/light/bed-alt.svg diff --git a/src/static/icons/light/bed-bunk.svg b/apps/client/src/static/icons/light/bed-bunk.svg similarity index 100% rename from src/static/icons/light/bed-bunk.svg rename to apps/client/src/static/icons/light/bed-bunk.svg diff --git a/src/static/icons/light/bed-empty.svg b/apps/client/src/static/icons/light/bed-empty.svg similarity index 100% rename from src/static/icons/light/bed-empty.svg rename to apps/client/src/static/icons/light/bed-empty.svg diff --git a/src/static/icons/light/bed.svg b/apps/client/src/static/icons/light/bed.svg similarity index 100% rename from src/static/icons/light/bed.svg rename to apps/client/src/static/icons/light/bed.svg diff --git a/src/static/icons/light/beer.svg b/apps/client/src/static/icons/light/beer.svg similarity index 100% rename from src/static/icons/light/beer.svg rename to apps/client/src/static/icons/light/beer.svg diff --git a/src/static/icons/light/bell-exclamation.svg b/apps/client/src/static/icons/light/bell-exclamation.svg similarity index 100% rename from src/static/icons/light/bell-exclamation.svg rename to apps/client/src/static/icons/light/bell-exclamation.svg diff --git a/src/static/icons/light/bell-on.svg b/apps/client/src/static/icons/light/bell-on.svg similarity index 100% rename from src/static/icons/light/bell-on.svg rename to apps/client/src/static/icons/light/bell-on.svg diff --git a/src/static/icons/light/bell-plus.svg b/apps/client/src/static/icons/light/bell-plus.svg similarity index 100% rename from src/static/icons/light/bell-plus.svg rename to apps/client/src/static/icons/light/bell-plus.svg diff --git a/src/static/icons/light/bell-school-slash.svg b/apps/client/src/static/icons/light/bell-school-slash.svg similarity index 100% rename from src/static/icons/light/bell-school-slash.svg rename to apps/client/src/static/icons/light/bell-school-slash.svg diff --git a/src/static/icons/light/bell-school.svg b/apps/client/src/static/icons/light/bell-school.svg similarity index 100% rename from src/static/icons/light/bell-school.svg rename to apps/client/src/static/icons/light/bell-school.svg diff --git a/src/static/icons/light/bell-slash.svg b/apps/client/src/static/icons/light/bell-slash.svg similarity index 100% rename from src/static/icons/light/bell-slash.svg rename to apps/client/src/static/icons/light/bell-slash.svg diff --git a/src/static/icons/light/bell.svg b/apps/client/src/static/icons/light/bell.svg similarity index 100% rename from src/static/icons/light/bell.svg rename to apps/client/src/static/icons/light/bell.svg diff --git a/src/static/icons/light/bells.svg b/apps/client/src/static/icons/light/bells.svg similarity index 100% rename from src/static/icons/light/bells.svg rename to apps/client/src/static/icons/light/bells.svg diff --git a/src/static/icons/light/betamax.svg b/apps/client/src/static/icons/light/betamax.svg similarity index 100% rename from src/static/icons/light/betamax.svg rename to apps/client/src/static/icons/light/betamax.svg diff --git a/src/static/icons/light/bezier-curve.svg b/apps/client/src/static/icons/light/bezier-curve.svg similarity index 100% rename from src/static/icons/light/bezier-curve.svg rename to apps/client/src/static/icons/light/bezier-curve.svg diff --git a/src/static/icons/light/bible.svg b/apps/client/src/static/icons/light/bible.svg similarity index 100% rename from src/static/icons/light/bible.svg rename to apps/client/src/static/icons/light/bible.svg diff --git a/src/static/icons/light/bicycle.svg b/apps/client/src/static/icons/light/bicycle.svg similarity index 100% rename from src/static/icons/light/bicycle.svg rename to apps/client/src/static/icons/light/bicycle.svg diff --git a/src/static/icons/light/biking-mountain.svg b/apps/client/src/static/icons/light/biking-mountain.svg similarity index 100% rename from src/static/icons/light/biking-mountain.svg rename to apps/client/src/static/icons/light/biking-mountain.svg diff --git a/src/static/icons/light/biking.svg b/apps/client/src/static/icons/light/biking.svg similarity index 100% rename from src/static/icons/light/biking.svg rename to apps/client/src/static/icons/light/biking.svg diff --git a/src/static/icons/light/binoculars.svg b/apps/client/src/static/icons/light/binoculars.svg similarity index 100% rename from src/static/icons/light/binoculars.svg rename to apps/client/src/static/icons/light/binoculars.svg diff --git a/src/static/icons/light/biohazard.svg b/apps/client/src/static/icons/light/biohazard.svg similarity index 100% rename from src/static/icons/light/biohazard.svg rename to apps/client/src/static/icons/light/biohazard.svg diff --git a/src/static/icons/light/birthday-cake.svg b/apps/client/src/static/icons/light/birthday-cake.svg similarity index 100% rename from src/static/icons/light/birthday-cake.svg rename to apps/client/src/static/icons/light/birthday-cake.svg diff --git a/src/static/icons/light/blanket.svg b/apps/client/src/static/icons/light/blanket.svg similarity index 100% rename from src/static/icons/light/blanket.svg rename to apps/client/src/static/icons/light/blanket.svg diff --git a/src/static/icons/light/blender-phone.svg b/apps/client/src/static/icons/light/blender-phone.svg similarity index 100% rename from src/static/icons/light/blender-phone.svg rename to apps/client/src/static/icons/light/blender-phone.svg diff --git a/src/static/icons/light/blender.svg b/apps/client/src/static/icons/light/blender.svg similarity index 100% rename from src/static/icons/light/blender.svg rename to apps/client/src/static/icons/light/blender.svg diff --git a/src/static/icons/light/blind.svg b/apps/client/src/static/icons/light/blind.svg similarity index 100% rename from src/static/icons/light/blind.svg rename to apps/client/src/static/icons/light/blind.svg diff --git a/src/static/icons/light/blinds-open.svg b/apps/client/src/static/icons/light/blinds-open.svg similarity index 100% rename from src/static/icons/light/blinds-open.svg rename to apps/client/src/static/icons/light/blinds-open.svg diff --git a/src/static/icons/light/blinds-raised.svg b/apps/client/src/static/icons/light/blinds-raised.svg similarity index 100% rename from src/static/icons/light/blinds-raised.svg rename to apps/client/src/static/icons/light/blinds-raised.svg diff --git a/src/static/icons/light/blinds.svg b/apps/client/src/static/icons/light/blinds.svg similarity index 100% rename from src/static/icons/light/blinds.svg rename to apps/client/src/static/icons/light/blinds.svg diff --git a/src/static/icons/light/blog.svg b/apps/client/src/static/icons/light/blog.svg similarity index 100% rename from src/static/icons/light/blog.svg rename to apps/client/src/static/icons/light/blog.svg diff --git a/src/static/icons/light/bold.svg b/apps/client/src/static/icons/light/bold.svg similarity index 100% rename from src/static/icons/light/bold.svg rename to apps/client/src/static/icons/light/bold.svg diff --git a/src/static/icons/light/bolt.svg b/apps/client/src/static/icons/light/bolt.svg similarity index 100% rename from src/static/icons/light/bolt.svg rename to apps/client/src/static/icons/light/bolt.svg diff --git a/src/static/icons/light/bomb.svg b/apps/client/src/static/icons/light/bomb.svg similarity index 100% rename from src/static/icons/light/bomb.svg rename to apps/client/src/static/icons/light/bomb.svg diff --git a/src/static/icons/light/bone-break.svg b/apps/client/src/static/icons/light/bone-break.svg similarity index 100% rename from src/static/icons/light/bone-break.svg rename to apps/client/src/static/icons/light/bone-break.svg diff --git a/src/static/icons/light/bone.svg b/apps/client/src/static/icons/light/bone.svg similarity index 100% rename from src/static/icons/light/bone.svg rename to apps/client/src/static/icons/light/bone.svg diff --git a/src/static/icons/light/bong.svg b/apps/client/src/static/icons/light/bong.svg similarity index 100% rename from src/static/icons/light/bong.svg rename to apps/client/src/static/icons/light/bong.svg diff --git a/src/static/icons/light/book-alt.svg b/apps/client/src/static/icons/light/book-alt.svg similarity index 100% rename from src/static/icons/light/book-alt.svg rename to apps/client/src/static/icons/light/book-alt.svg diff --git a/src/static/icons/light/book-dead.svg b/apps/client/src/static/icons/light/book-dead.svg similarity index 100% rename from src/static/icons/light/book-dead.svg rename to apps/client/src/static/icons/light/book-dead.svg diff --git a/src/static/icons/light/book-heart.svg b/apps/client/src/static/icons/light/book-heart.svg similarity index 100% rename from src/static/icons/light/book-heart.svg rename to apps/client/src/static/icons/light/book-heart.svg diff --git a/src/static/icons/light/book-medical.svg b/apps/client/src/static/icons/light/book-medical.svg similarity index 100% rename from src/static/icons/light/book-medical.svg rename to apps/client/src/static/icons/light/book-medical.svg diff --git a/src/static/icons/light/book-open.svg b/apps/client/src/static/icons/light/book-open.svg similarity index 100% rename from src/static/icons/light/book-open.svg rename to apps/client/src/static/icons/light/book-open.svg diff --git a/src/static/icons/light/book-reader.svg b/apps/client/src/static/icons/light/book-reader.svg similarity index 100% rename from src/static/icons/light/book-reader.svg rename to apps/client/src/static/icons/light/book-reader.svg diff --git a/src/static/icons/light/book-spells.svg b/apps/client/src/static/icons/light/book-spells.svg similarity index 100% rename from src/static/icons/light/book-spells.svg rename to apps/client/src/static/icons/light/book-spells.svg diff --git a/src/static/icons/light/book-user.svg b/apps/client/src/static/icons/light/book-user.svg similarity index 100% rename from src/static/icons/light/book-user.svg rename to apps/client/src/static/icons/light/book-user.svg diff --git a/src/static/icons/light/book.svg b/apps/client/src/static/icons/light/book.svg similarity index 100% rename from src/static/icons/light/book.svg rename to apps/client/src/static/icons/light/book.svg diff --git a/src/static/icons/light/bookmark.svg b/apps/client/src/static/icons/light/bookmark.svg similarity index 100% rename from src/static/icons/light/bookmark.svg rename to apps/client/src/static/icons/light/bookmark.svg diff --git a/src/static/icons/light/books-medical.svg b/apps/client/src/static/icons/light/books-medical.svg similarity index 100% rename from src/static/icons/light/books-medical.svg rename to apps/client/src/static/icons/light/books-medical.svg diff --git a/src/static/icons/light/books.svg b/apps/client/src/static/icons/light/books.svg similarity index 100% rename from src/static/icons/light/books.svg rename to apps/client/src/static/icons/light/books.svg diff --git a/src/static/icons/light/boombox.svg b/apps/client/src/static/icons/light/boombox.svg similarity index 100% rename from src/static/icons/light/boombox.svg rename to apps/client/src/static/icons/light/boombox.svg diff --git a/src/static/icons/light/boot.svg b/apps/client/src/static/icons/light/boot.svg similarity index 100% rename from src/static/icons/light/boot.svg rename to apps/client/src/static/icons/light/boot.svg diff --git a/src/static/icons/light/booth-curtain.svg b/apps/client/src/static/icons/light/booth-curtain.svg similarity index 100% rename from src/static/icons/light/booth-curtain.svg rename to apps/client/src/static/icons/light/booth-curtain.svg diff --git a/src/static/icons/light/border-all.svg b/apps/client/src/static/icons/light/border-all.svg similarity index 100% rename from src/static/icons/light/border-all.svg rename to apps/client/src/static/icons/light/border-all.svg diff --git a/src/static/icons/light/border-bottom.svg b/apps/client/src/static/icons/light/border-bottom.svg similarity index 100% rename from src/static/icons/light/border-bottom.svg rename to apps/client/src/static/icons/light/border-bottom.svg diff --git a/src/static/icons/light/border-center-h.svg b/apps/client/src/static/icons/light/border-center-h.svg similarity index 100% rename from src/static/icons/light/border-center-h.svg rename to apps/client/src/static/icons/light/border-center-h.svg diff --git a/src/static/icons/light/border-center-v.svg b/apps/client/src/static/icons/light/border-center-v.svg similarity index 100% rename from src/static/icons/light/border-center-v.svg rename to apps/client/src/static/icons/light/border-center-v.svg diff --git a/src/static/icons/light/border-inner.svg b/apps/client/src/static/icons/light/border-inner.svg similarity index 100% rename from src/static/icons/light/border-inner.svg rename to apps/client/src/static/icons/light/border-inner.svg diff --git a/src/static/icons/light/border-left.svg b/apps/client/src/static/icons/light/border-left.svg similarity index 100% rename from src/static/icons/light/border-left.svg rename to apps/client/src/static/icons/light/border-left.svg diff --git a/src/static/icons/light/border-none.svg b/apps/client/src/static/icons/light/border-none.svg similarity index 100% rename from src/static/icons/light/border-none.svg rename to apps/client/src/static/icons/light/border-none.svg diff --git a/src/static/icons/light/border-outer.svg b/apps/client/src/static/icons/light/border-outer.svg similarity index 100% rename from src/static/icons/light/border-outer.svg rename to apps/client/src/static/icons/light/border-outer.svg diff --git a/src/static/icons/light/border-right.svg b/apps/client/src/static/icons/light/border-right.svg similarity index 100% rename from src/static/icons/light/border-right.svg rename to apps/client/src/static/icons/light/border-right.svg diff --git a/src/static/icons/light/border-style-alt.svg b/apps/client/src/static/icons/light/border-style-alt.svg similarity index 100% rename from src/static/icons/light/border-style-alt.svg rename to apps/client/src/static/icons/light/border-style-alt.svg diff --git a/src/static/icons/light/border-style.svg b/apps/client/src/static/icons/light/border-style.svg similarity index 100% rename from src/static/icons/light/border-style.svg rename to apps/client/src/static/icons/light/border-style.svg diff --git a/src/static/icons/light/border-top.svg b/apps/client/src/static/icons/light/border-top.svg similarity index 100% rename from src/static/icons/light/border-top.svg rename to apps/client/src/static/icons/light/border-top.svg diff --git a/src/static/icons/light/bow-arrow.svg b/apps/client/src/static/icons/light/bow-arrow.svg similarity index 100% rename from src/static/icons/light/bow-arrow.svg rename to apps/client/src/static/icons/light/bow-arrow.svg diff --git a/src/static/icons/light/bowling-ball.svg b/apps/client/src/static/icons/light/bowling-ball.svg similarity index 100% rename from src/static/icons/light/bowling-ball.svg rename to apps/client/src/static/icons/light/bowling-ball.svg diff --git a/src/static/icons/light/bowling-pins.svg b/apps/client/src/static/icons/light/bowling-pins.svg similarity index 100% rename from src/static/icons/light/bowling-pins.svg rename to apps/client/src/static/icons/light/bowling-pins.svg diff --git a/src/static/icons/light/box-alt.svg b/apps/client/src/static/icons/light/box-alt.svg similarity index 100% rename from src/static/icons/light/box-alt.svg rename to apps/client/src/static/icons/light/box-alt.svg diff --git a/src/static/icons/light/box-ballot.svg b/apps/client/src/static/icons/light/box-ballot.svg similarity index 100% rename from src/static/icons/light/box-ballot.svg rename to apps/client/src/static/icons/light/box-ballot.svg diff --git a/src/static/icons/light/box-check.svg b/apps/client/src/static/icons/light/box-check.svg similarity index 100% rename from src/static/icons/light/box-check.svg rename to apps/client/src/static/icons/light/box-check.svg diff --git a/src/static/icons/light/box-fragile.svg b/apps/client/src/static/icons/light/box-fragile.svg similarity index 100% rename from src/static/icons/light/box-fragile.svg rename to apps/client/src/static/icons/light/box-fragile.svg diff --git a/src/static/icons/light/box-full.svg b/apps/client/src/static/icons/light/box-full.svg similarity index 100% rename from src/static/icons/light/box-full.svg rename to apps/client/src/static/icons/light/box-full.svg diff --git a/src/static/icons/light/box-heart.svg b/apps/client/src/static/icons/light/box-heart.svg similarity index 100% rename from src/static/icons/light/box-heart.svg rename to apps/client/src/static/icons/light/box-heart.svg diff --git a/src/static/icons/light/box-open.svg b/apps/client/src/static/icons/light/box-open.svg similarity index 100% rename from src/static/icons/light/box-open.svg rename to apps/client/src/static/icons/light/box-open.svg diff --git a/src/static/icons/light/box-up.svg b/apps/client/src/static/icons/light/box-up.svg similarity index 100% rename from src/static/icons/light/box-up.svg rename to apps/client/src/static/icons/light/box-up.svg diff --git a/src/static/icons/light/box-usd.svg b/apps/client/src/static/icons/light/box-usd.svg similarity index 100% rename from src/static/icons/light/box-usd.svg rename to apps/client/src/static/icons/light/box-usd.svg diff --git a/src/static/icons/light/box.svg b/apps/client/src/static/icons/light/box.svg similarity index 100% rename from src/static/icons/light/box.svg rename to apps/client/src/static/icons/light/box.svg diff --git a/src/static/icons/light/boxes-alt.svg b/apps/client/src/static/icons/light/boxes-alt.svg similarity index 100% rename from src/static/icons/light/boxes-alt.svg rename to apps/client/src/static/icons/light/boxes-alt.svg diff --git a/src/static/icons/light/boxes.svg b/apps/client/src/static/icons/light/boxes.svg similarity index 100% rename from src/static/icons/light/boxes.svg rename to apps/client/src/static/icons/light/boxes.svg diff --git a/src/static/icons/light/boxing-glove.svg b/apps/client/src/static/icons/light/boxing-glove.svg similarity index 100% rename from src/static/icons/light/boxing-glove.svg rename to apps/client/src/static/icons/light/boxing-glove.svg diff --git a/src/static/icons/light/brackets-curly.svg b/apps/client/src/static/icons/light/brackets-curly.svg similarity index 100% rename from src/static/icons/light/brackets-curly.svg rename to apps/client/src/static/icons/light/brackets-curly.svg diff --git a/src/static/icons/light/brackets.svg b/apps/client/src/static/icons/light/brackets.svg similarity index 100% rename from src/static/icons/light/brackets.svg rename to apps/client/src/static/icons/light/brackets.svg diff --git a/src/static/icons/light/braille.svg b/apps/client/src/static/icons/light/braille.svg similarity index 100% rename from src/static/icons/light/braille.svg rename to apps/client/src/static/icons/light/braille.svg diff --git a/src/static/icons/light/brain.svg b/apps/client/src/static/icons/light/brain.svg similarity index 100% rename from src/static/icons/light/brain.svg rename to apps/client/src/static/icons/light/brain.svg diff --git a/src/static/icons/light/bread-loaf.svg b/apps/client/src/static/icons/light/bread-loaf.svg similarity index 100% rename from src/static/icons/light/bread-loaf.svg rename to apps/client/src/static/icons/light/bread-loaf.svg diff --git a/src/static/icons/light/bread-slice.svg b/apps/client/src/static/icons/light/bread-slice.svg similarity index 100% rename from src/static/icons/light/bread-slice.svg rename to apps/client/src/static/icons/light/bread-slice.svg diff --git a/src/static/icons/light/briefcase-medical.svg b/apps/client/src/static/icons/light/briefcase-medical.svg similarity index 100% rename from src/static/icons/light/briefcase-medical.svg rename to apps/client/src/static/icons/light/briefcase-medical.svg diff --git a/src/static/icons/light/briefcase.svg b/apps/client/src/static/icons/light/briefcase.svg similarity index 100% rename from src/static/icons/light/briefcase.svg rename to apps/client/src/static/icons/light/briefcase.svg diff --git a/src/static/icons/light/bring-forward.svg b/apps/client/src/static/icons/light/bring-forward.svg similarity index 100% rename from src/static/icons/light/bring-forward.svg rename to apps/client/src/static/icons/light/bring-forward.svg diff --git a/src/static/icons/light/bring-front.svg b/apps/client/src/static/icons/light/bring-front.svg similarity index 100% rename from src/static/icons/light/bring-front.svg rename to apps/client/src/static/icons/light/bring-front.svg diff --git a/src/static/icons/light/broadcast-tower.svg b/apps/client/src/static/icons/light/broadcast-tower.svg similarity index 100% rename from src/static/icons/light/broadcast-tower.svg rename to apps/client/src/static/icons/light/broadcast-tower.svg diff --git a/src/static/icons/light/broom.svg b/apps/client/src/static/icons/light/broom.svg similarity index 100% rename from src/static/icons/light/broom.svg rename to apps/client/src/static/icons/light/broom.svg diff --git a/src/static/icons/light/browser.svg b/apps/client/src/static/icons/light/browser.svg similarity index 100% rename from src/static/icons/light/browser.svg rename to apps/client/src/static/icons/light/browser.svg diff --git a/src/static/icons/light/brush.svg b/apps/client/src/static/icons/light/brush.svg similarity index 100% rename from src/static/icons/light/brush.svg rename to apps/client/src/static/icons/light/brush.svg diff --git a/src/static/icons/light/bug.svg b/apps/client/src/static/icons/light/bug.svg similarity index 100% rename from src/static/icons/light/bug.svg rename to apps/client/src/static/icons/light/bug.svg diff --git a/src/static/icons/light/building.svg b/apps/client/src/static/icons/light/building.svg similarity index 100% rename from src/static/icons/light/building.svg rename to apps/client/src/static/icons/light/building.svg diff --git a/src/static/icons/light/bullhorn.svg b/apps/client/src/static/icons/light/bullhorn.svg similarity index 100% rename from src/static/icons/light/bullhorn.svg rename to apps/client/src/static/icons/light/bullhorn.svg diff --git a/src/static/icons/light/bullseye-arrow.svg b/apps/client/src/static/icons/light/bullseye-arrow.svg similarity index 100% rename from src/static/icons/light/bullseye-arrow.svg rename to apps/client/src/static/icons/light/bullseye-arrow.svg diff --git a/src/static/icons/light/bullseye-pointer.svg b/apps/client/src/static/icons/light/bullseye-pointer.svg similarity index 100% rename from src/static/icons/light/bullseye-pointer.svg rename to apps/client/src/static/icons/light/bullseye-pointer.svg diff --git a/src/static/icons/light/bullseye.svg b/apps/client/src/static/icons/light/bullseye.svg similarity index 100% rename from src/static/icons/light/bullseye.svg rename to apps/client/src/static/icons/light/bullseye.svg diff --git a/src/static/icons/light/burger-soda.svg b/apps/client/src/static/icons/light/burger-soda.svg similarity index 100% rename from src/static/icons/light/burger-soda.svg rename to apps/client/src/static/icons/light/burger-soda.svg diff --git a/src/static/icons/light/burn.svg b/apps/client/src/static/icons/light/burn.svg similarity index 100% rename from src/static/icons/light/burn.svg rename to apps/client/src/static/icons/light/burn.svg diff --git a/src/static/icons/light/burrito.svg b/apps/client/src/static/icons/light/burrito.svg similarity index 100% rename from src/static/icons/light/burrito.svg rename to apps/client/src/static/icons/light/burrito.svg diff --git a/src/static/icons/light/bus-alt.svg b/apps/client/src/static/icons/light/bus-alt.svg similarity index 100% rename from src/static/icons/light/bus-alt.svg rename to apps/client/src/static/icons/light/bus-alt.svg diff --git a/src/static/icons/light/bus-school.svg b/apps/client/src/static/icons/light/bus-school.svg similarity index 100% rename from src/static/icons/light/bus-school.svg rename to apps/client/src/static/icons/light/bus-school.svg diff --git a/src/static/icons/light/bus.svg b/apps/client/src/static/icons/light/bus.svg similarity index 100% rename from src/static/icons/light/bus.svg rename to apps/client/src/static/icons/light/bus.svg diff --git a/src/static/icons/light/business-time.svg b/apps/client/src/static/icons/light/business-time.svg similarity index 100% rename from src/static/icons/light/business-time.svg rename to apps/client/src/static/icons/light/business-time.svg diff --git a/src/static/icons/light/cabinet-filing.svg b/apps/client/src/static/icons/light/cabinet-filing.svg similarity index 100% rename from src/static/icons/light/cabinet-filing.svg rename to apps/client/src/static/icons/light/cabinet-filing.svg diff --git a/src/static/icons/light/cactus.svg b/apps/client/src/static/icons/light/cactus.svg similarity index 100% rename from src/static/icons/light/cactus.svg rename to apps/client/src/static/icons/light/cactus.svg diff --git a/src/static/icons/light/calculator-alt.svg b/apps/client/src/static/icons/light/calculator-alt.svg similarity index 100% rename from src/static/icons/light/calculator-alt.svg rename to apps/client/src/static/icons/light/calculator-alt.svg diff --git a/src/static/icons/light/calculator.svg b/apps/client/src/static/icons/light/calculator.svg similarity index 100% rename from src/static/icons/light/calculator.svg rename to apps/client/src/static/icons/light/calculator.svg diff --git a/src/static/icons/light/calendar-alt.svg b/apps/client/src/static/icons/light/calendar-alt.svg similarity index 100% rename from src/static/icons/light/calendar-alt.svg rename to apps/client/src/static/icons/light/calendar-alt.svg diff --git a/src/static/icons/light/calendar-check.svg b/apps/client/src/static/icons/light/calendar-check.svg similarity index 100% rename from src/static/icons/light/calendar-check.svg rename to apps/client/src/static/icons/light/calendar-check.svg diff --git a/src/static/icons/light/calendar-day.svg b/apps/client/src/static/icons/light/calendar-day.svg similarity index 100% rename from src/static/icons/light/calendar-day.svg rename to apps/client/src/static/icons/light/calendar-day.svg diff --git a/src/static/icons/light/calendar-edit.svg b/apps/client/src/static/icons/light/calendar-edit.svg similarity index 100% rename from src/static/icons/light/calendar-edit.svg rename to apps/client/src/static/icons/light/calendar-edit.svg diff --git a/src/static/icons/light/calendar-exclamation.svg b/apps/client/src/static/icons/light/calendar-exclamation.svg similarity index 100% rename from src/static/icons/light/calendar-exclamation.svg rename to apps/client/src/static/icons/light/calendar-exclamation.svg diff --git a/src/static/icons/light/calendar-minus.svg b/apps/client/src/static/icons/light/calendar-minus.svg similarity index 100% rename from src/static/icons/light/calendar-minus.svg rename to apps/client/src/static/icons/light/calendar-minus.svg diff --git a/src/static/icons/light/calendar-plus.svg b/apps/client/src/static/icons/light/calendar-plus.svg similarity index 100% rename from src/static/icons/light/calendar-plus.svg rename to apps/client/src/static/icons/light/calendar-plus.svg diff --git a/src/static/icons/light/calendar-star.svg b/apps/client/src/static/icons/light/calendar-star.svg similarity index 100% rename from src/static/icons/light/calendar-star.svg rename to apps/client/src/static/icons/light/calendar-star.svg diff --git a/src/static/icons/light/calendar-times.svg b/apps/client/src/static/icons/light/calendar-times.svg similarity index 100% rename from src/static/icons/light/calendar-times.svg rename to apps/client/src/static/icons/light/calendar-times.svg diff --git a/src/static/icons/light/calendar-week.svg b/apps/client/src/static/icons/light/calendar-week.svg similarity index 100% rename from src/static/icons/light/calendar-week.svg rename to apps/client/src/static/icons/light/calendar-week.svg diff --git a/src/static/icons/light/calendar.svg b/apps/client/src/static/icons/light/calendar.svg similarity index 100% rename from src/static/icons/light/calendar.svg rename to apps/client/src/static/icons/light/calendar.svg diff --git a/src/static/icons/light/camcorder.svg b/apps/client/src/static/icons/light/camcorder.svg similarity index 100% rename from src/static/icons/light/camcorder.svg rename to apps/client/src/static/icons/light/camcorder.svg diff --git a/src/static/icons/light/camera-alt.svg b/apps/client/src/static/icons/light/camera-alt.svg similarity index 100% rename from src/static/icons/light/camera-alt.svg rename to apps/client/src/static/icons/light/camera-alt.svg diff --git a/src/static/icons/light/camera-home.svg b/apps/client/src/static/icons/light/camera-home.svg similarity index 100% rename from src/static/icons/light/camera-home.svg rename to apps/client/src/static/icons/light/camera-home.svg diff --git a/src/static/icons/light/camera-movie.svg b/apps/client/src/static/icons/light/camera-movie.svg similarity index 100% rename from src/static/icons/light/camera-movie.svg rename to apps/client/src/static/icons/light/camera-movie.svg diff --git a/src/static/icons/light/camera-polaroid.svg b/apps/client/src/static/icons/light/camera-polaroid.svg similarity index 100% rename from src/static/icons/light/camera-polaroid.svg rename to apps/client/src/static/icons/light/camera-polaroid.svg diff --git a/src/static/icons/light/camera-retro.svg b/apps/client/src/static/icons/light/camera-retro.svg similarity index 100% rename from src/static/icons/light/camera-retro.svg rename to apps/client/src/static/icons/light/camera-retro.svg diff --git a/src/static/icons/light/camera.svg b/apps/client/src/static/icons/light/camera.svg similarity index 100% rename from src/static/icons/light/camera.svg rename to apps/client/src/static/icons/light/camera.svg diff --git a/src/static/icons/light/campfire.svg b/apps/client/src/static/icons/light/campfire.svg similarity index 100% rename from src/static/icons/light/campfire.svg rename to apps/client/src/static/icons/light/campfire.svg diff --git a/src/static/icons/light/campground.svg b/apps/client/src/static/icons/light/campground.svg similarity index 100% rename from src/static/icons/light/campground.svg rename to apps/client/src/static/icons/light/campground.svg diff --git a/src/static/icons/light/candle-holder.svg b/apps/client/src/static/icons/light/candle-holder.svg similarity index 100% rename from src/static/icons/light/candle-holder.svg rename to apps/client/src/static/icons/light/candle-holder.svg diff --git a/src/static/icons/light/candy-cane.svg b/apps/client/src/static/icons/light/candy-cane.svg similarity index 100% rename from src/static/icons/light/candy-cane.svg rename to apps/client/src/static/icons/light/candy-cane.svg diff --git a/src/static/icons/light/candy-corn.svg b/apps/client/src/static/icons/light/candy-corn.svg similarity index 100% rename from src/static/icons/light/candy-corn.svg rename to apps/client/src/static/icons/light/candy-corn.svg diff --git a/src/static/icons/light/cannabis.svg b/apps/client/src/static/icons/light/cannabis.svg similarity index 100% rename from src/static/icons/light/cannabis.svg rename to apps/client/src/static/icons/light/cannabis.svg diff --git a/src/static/icons/light/capsules.svg b/apps/client/src/static/icons/light/capsules.svg similarity index 100% rename from src/static/icons/light/capsules.svg rename to apps/client/src/static/icons/light/capsules.svg diff --git a/src/static/icons/light/car-alt.svg b/apps/client/src/static/icons/light/car-alt.svg similarity index 100% rename from src/static/icons/light/car-alt.svg rename to apps/client/src/static/icons/light/car-alt.svg diff --git a/src/static/icons/light/car-battery.svg b/apps/client/src/static/icons/light/car-battery.svg similarity index 100% rename from src/static/icons/light/car-battery.svg rename to apps/client/src/static/icons/light/car-battery.svg diff --git a/src/static/icons/light/car-building.svg b/apps/client/src/static/icons/light/car-building.svg similarity index 100% rename from src/static/icons/light/car-building.svg rename to apps/client/src/static/icons/light/car-building.svg diff --git a/src/static/icons/light/car-bump.svg b/apps/client/src/static/icons/light/car-bump.svg similarity index 100% rename from src/static/icons/light/car-bump.svg rename to apps/client/src/static/icons/light/car-bump.svg diff --git a/src/static/icons/light/car-bus.svg b/apps/client/src/static/icons/light/car-bus.svg similarity index 100% rename from src/static/icons/light/car-bus.svg rename to apps/client/src/static/icons/light/car-bus.svg diff --git a/src/static/icons/light/car-crash.svg b/apps/client/src/static/icons/light/car-crash.svg similarity index 100% rename from src/static/icons/light/car-crash.svg rename to apps/client/src/static/icons/light/car-crash.svg diff --git a/src/static/icons/light/car-garage.svg b/apps/client/src/static/icons/light/car-garage.svg similarity index 100% rename from src/static/icons/light/car-garage.svg rename to apps/client/src/static/icons/light/car-garage.svg diff --git a/src/static/icons/light/car-mechanic.svg b/apps/client/src/static/icons/light/car-mechanic.svg similarity index 100% rename from src/static/icons/light/car-mechanic.svg rename to apps/client/src/static/icons/light/car-mechanic.svg diff --git a/src/static/icons/light/car-side.svg b/apps/client/src/static/icons/light/car-side.svg similarity index 100% rename from src/static/icons/light/car-side.svg rename to apps/client/src/static/icons/light/car-side.svg diff --git a/src/static/icons/light/car-tilt.svg b/apps/client/src/static/icons/light/car-tilt.svg similarity index 100% rename from src/static/icons/light/car-tilt.svg rename to apps/client/src/static/icons/light/car-tilt.svg diff --git a/src/static/icons/light/car-wash.svg b/apps/client/src/static/icons/light/car-wash.svg similarity index 100% rename from src/static/icons/light/car-wash.svg rename to apps/client/src/static/icons/light/car-wash.svg diff --git a/src/static/icons/light/car.svg b/apps/client/src/static/icons/light/car.svg similarity index 100% rename from src/static/icons/light/car.svg rename to apps/client/src/static/icons/light/car.svg diff --git a/src/static/icons/light/caravan-alt.svg b/apps/client/src/static/icons/light/caravan-alt.svg similarity index 100% rename from src/static/icons/light/caravan-alt.svg rename to apps/client/src/static/icons/light/caravan-alt.svg diff --git a/src/static/icons/light/caravan.svg b/apps/client/src/static/icons/light/caravan.svg similarity index 100% rename from src/static/icons/light/caravan.svg rename to apps/client/src/static/icons/light/caravan.svg diff --git a/src/static/icons/light/caret-circle-down.svg b/apps/client/src/static/icons/light/caret-circle-down.svg similarity index 100% rename from src/static/icons/light/caret-circle-down.svg rename to apps/client/src/static/icons/light/caret-circle-down.svg diff --git a/src/static/icons/light/caret-circle-left.svg b/apps/client/src/static/icons/light/caret-circle-left.svg similarity index 100% rename from src/static/icons/light/caret-circle-left.svg rename to apps/client/src/static/icons/light/caret-circle-left.svg diff --git a/src/static/icons/light/caret-circle-right.svg b/apps/client/src/static/icons/light/caret-circle-right.svg similarity index 100% rename from src/static/icons/light/caret-circle-right.svg rename to apps/client/src/static/icons/light/caret-circle-right.svg diff --git a/src/static/icons/light/caret-circle-up.svg b/apps/client/src/static/icons/light/caret-circle-up.svg similarity index 100% rename from src/static/icons/light/caret-circle-up.svg rename to apps/client/src/static/icons/light/caret-circle-up.svg diff --git a/src/static/icons/light/caret-down.svg b/apps/client/src/static/icons/light/caret-down.svg similarity index 100% rename from src/static/icons/light/caret-down.svg rename to apps/client/src/static/icons/light/caret-down.svg diff --git a/src/static/icons/light/caret-left.svg b/apps/client/src/static/icons/light/caret-left.svg similarity index 100% rename from src/static/icons/light/caret-left.svg rename to apps/client/src/static/icons/light/caret-left.svg diff --git a/src/static/icons/light/caret-right.svg b/apps/client/src/static/icons/light/caret-right.svg similarity index 100% rename from src/static/icons/light/caret-right.svg rename to apps/client/src/static/icons/light/caret-right.svg diff --git a/src/static/icons/light/caret-square-down.svg b/apps/client/src/static/icons/light/caret-square-down.svg similarity index 100% rename from src/static/icons/light/caret-square-down.svg rename to apps/client/src/static/icons/light/caret-square-down.svg diff --git a/src/static/icons/light/caret-square-left.svg b/apps/client/src/static/icons/light/caret-square-left.svg similarity index 100% rename from src/static/icons/light/caret-square-left.svg rename to apps/client/src/static/icons/light/caret-square-left.svg diff --git a/src/static/icons/light/caret-square-right.svg b/apps/client/src/static/icons/light/caret-square-right.svg similarity index 100% rename from src/static/icons/light/caret-square-right.svg rename to apps/client/src/static/icons/light/caret-square-right.svg diff --git a/src/static/icons/light/caret-square-up.svg b/apps/client/src/static/icons/light/caret-square-up.svg similarity index 100% rename from src/static/icons/light/caret-square-up.svg rename to apps/client/src/static/icons/light/caret-square-up.svg diff --git a/src/static/icons/light/caret-up.svg b/apps/client/src/static/icons/light/caret-up.svg similarity index 100% rename from src/static/icons/light/caret-up.svg rename to apps/client/src/static/icons/light/caret-up.svg diff --git a/src/static/icons/light/carrot.svg b/apps/client/src/static/icons/light/carrot.svg similarity index 100% rename from src/static/icons/light/carrot.svg rename to apps/client/src/static/icons/light/carrot.svg diff --git a/src/static/icons/light/cars.svg b/apps/client/src/static/icons/light/cars.svg similarity index 100% rename from src/static/icons/light/cars.svg rename to apps/client/src/static/icons/light/cars.svg diff --git a/src/static/icons/light/cart-arrow-down.svg b/apps/client/src/static/icons/light/cart-arrow-down.svg similarity index 100% rename from src/static/icons/light/cart-arrow-down.svg rename to apps/client/src/static/icons/light/cart-arrow-down.svg diff --git a/src/static/icons/light/cart-plus.svg b/apps/client/src/static/icons/light/cart-plus.svg similarity index 100% rename from src/static/icons/light/cart-plus.svg rename to apps/client/src/static/icons/light/cart-plus.svg diff --git a/src/static/icons/light/cash-register.svg b/apps/client/src/static/icons/light/cash-register.svg similarity index 100% rename from src/static/icons/light/cash-register.svg rename to apps/client/src/static/icons/light/cash-register.svg diff --git a/src/static/icons/light/cassette-tape.svg b/apps/client/src/static/icons/light/cassette-tape.svg similarity index 100% rename from src/static/icons/light/cassette-tape.svg rename to apps/client/src/static/icons/light/cassette-tape.svg diff --git a/src/static/icons/light/cat-space.svg b/apps/client/src/static/icons/light/cat-space.svg similarity index 100% rename from src/static/icons/light/cat-space.svg rename to apps/client/src/static/icons/light/cat-space.svg diff --git a/src/static/icons/light/cat.svg b/apps/client/src/static/icons/light/cat.svg similarity index 100% rename from src/static/icons/light/cat.svg rename to apps/client/src/static/icons/light/cat.svg diff --git a/src/static/icons/light/cauldron.svg b/apps/client/src/static/icons/light/cauldron.svg similarity index 100% rename from src/static/icons/light/cauldron.svg rename to apps/client/src/static/icons/light/cauldron.svg diff --git a/src/static/icons/light/cctv.svg b/apps/client/src/static/icons/light/cctv.svg similarity index 100% rename from src/static/icons/light/cctv.svg rename to apps/client/src/static/icons/light/cctv.svg diff --git a/src/static/icons/light/certificate.svg b/apps/client/src/static/icons/light/certificate.svg similarity index 100% rename from src/static/icons/light/certificate.svg rename to apps/client/src/static/icons/light/certificate.svg diff --git a/src/static/icons/light/chair-office.svg b/apps/client/src/static/icons/light/chair-office.svg similarity index 100% rename from src/static/icons/light/chair-office.svg rename to apps/client/src/static/icons/light/chair-office.svg diff --git a/src/static/icons/light/chair.svg b/apps/client/src/static/icons/light/chair.svg similarity index 100% rename from src/static/icons/light/chair.svg rename to apps/client/src/static/icons/light/chair.svg diff --git a/src/static/icons/light/chalkboard-teacher.svg b/apps/client/src/static/icons/light/chalkboard-teacher.svg similarity index 100% rename from src/static/icons/light/chalkboard-teacher.svg rename to apps/client/src/static/icons/light/chalkboard-teacher.svg diff --git a/src/static/icons/light/chalkboard.svg b/apps/client/src/static/icons/light/chalkboard.svg similarity index 100% rename from src/static/icons/light/chalkboard.svg rename to apps/client/src/static/icons/light/chalkboard.svg diff --git a/src/static/icons/light/charging-station.svg b/apps/client/src/static/icons/light/charging-station.svg similarity index 100% rename from src/static/icons/light/charging-station.svg rename to apps/client/src/static/icons/light/charging-station.svg diff --git a/src/static/icons/light/chart-area.svg b/apps/client/src/static/icons/light/chart-area.svg similarity index 100% rename from src/static/icons/light/chart-area.svg rename to apps/client/src/static/icons/light/chart-area.svg diff --git a/src/static/icons/light/chart-bar.svg b/apps/client/src/static/icons/light/chart-bar.svg similarity index 100% rename from src/static/icons/light/chart-bar.svg rename to apps/client/src/static/icons/light/chart-bar.svg diff --git a/src/static/icons/light/chart-line-down.svg b/apps/client/src/static/icons/light/chart-line-down.svg similarity index 100% rename from src/static/icons/light/chart-line-down.svg rename to apps/client/src/static/icons/light/chart-line-down.svg diff --git a/src/static/icons/light/chart-line.svg b/apps/client/src/static/icons/light/chart-line.svg similarity index 100% rename from src/static/icons/light/chart-line.svg rename to apps/client/src/static/icons/light/chart-line.svg diff --git a/src/static/icons/light/chart-network.svg b/apps/client/src/static/icons/light/chart-network.svg similarity index 100% rename from src/static/icons/light/chart-network.svg rename to apps/client/src/static/icons/light/chart-network.svg diff --git a/src/static/icons/light/chart-pie-alt.svg b/apps/client/src/static/icons/light/chart-pie-alt.svg similarity index 100% rename from src/static/icons/light/chart-pie-alt.svg rename to apps/client/src/static/icons/light/chart-pie-alt.svg diff --git a/src/static/icons/light/chart-pie.svg b/apps/client/src/static/icons/light/chart-pie.svg similarity index 100% rename from src/static/icons/light/chart-pie.svg rename to apps/client/src/static/icons/light/chart-pie.svg diff --git a/src/static/icons/light/chart-scatter.svg b/apps/client/src/static/icons/light/chart-scatter.svg similarity index 100% rename from src/static/icons/light/chart-scatter.svg rename to apps/client/src/static/icons/light/chart-scatter.svg diff --git a/src/static/icons/light/check-circle.svg b/apps/client/src/static/icons/light/check-circle.svg similarity index 100% rename from src/static/icons/light/check-circle.svg rename to apps/client/src/static/icons/light/check-circle.svg diff --git a/src/static/icons/light/check-double.svg b/apps/client/src/static/icons/light/check-double.svg similarity index 100% rename from src/static/icons/light/check-double.svg rename to apps/client/src/static/icons/light/check-double.svg diff --git a/src/static/icons/light/check-square.svg b/apps/client/src/static/icons/light/check-square.svg similarity index 100% rename from src/static/icons/light/check-square.svg rename to apps/client/src/static/icons/light/check-square.svg diff --git a/src/static/icons/light/check.svg b/apps/client/src/static/icons/light/check.svg similarity index 100% rename from src/static/icons/light/check.svg rename to apps/client/src/static/icons/light/check.svg diff --git a/src/static/icons/light/cheese-swiss.svg b/apps/client/src/static/icons/light/cheese-swiss.svg similarity index 100% rename from src/static/icons/light/cheese-swiss.svg rename to apps/client/src/static/icons/light/cheese-swiss.svg diff --git a/src/static/icons/light/cheese.svg b/apps/client/src/static/icons/light/cheese.svg similarity index 100% rename from src/static/icons/light/cheese.svg rename to apps/client/src/static/icons/light/cheese.svg diff --git a/src/static/icons/light/cheeseburger.svg b/apps/client/src/static/icons/light/cheeseburger.svg similarity index 100% rename from src/static/icons/light/cheeseburger.svg rename to apps/client/src/static/icons/light/cheeseburger.svg diff --git a/src/static/icons/light/chess-bishop-alt.svg b/apps/client/src/static/icons/light/chess-bishop-alt.svg similarity index 100% rename from src/static/icons/light/chess-bishop-alt.svg rename to apps/client/src/static/icons/light/chess-bishop-alt.svg diff --git a/src/static/icons/light/chess-bishop.svg b/apps/client/src/static/icons/light/chess-bishop.svg similarity index 100% rename from src/static/icons/light/chess-bishop.svg rename to apps/client/src/static/icons/light/chess-bishop.svg diff --git a/src/static/icons/light/chess-board.svg b/apps/client/src/static/icons/light/chess-board.svg similarity index 100% rename from src/static/icons/light/chess-board.svg rename to apps/client/src/static/icons/light/chess-board.svg diff --git a/src/static/icons/light/chess-clock-alt.svg b/apps/client/src/static/icons/light/chess-clock-alt.svg similarity index 100% rename from src/static/icons/light/chess-clock-alt.svg rename to apps/client/src/static/icons/light/chess-clock-alt.svg diff --git a/src/static/icons/light/chess-clock.svg b/apps/client/src/static/icons/light/chess-clock.svg similarity index 100% rename from src/static/icons/light/chess-clock.svg rename to apps/client/src/static/icons/light/chess-clock.svg diff --git a/src/static/icons/light/chess-king-alt.svg b/apps/client/src/static/icons/light/chess-king-alt.svg similarity index 100% rename from src/static/icons/light/chess-king-alt.svg rename to apps/client/src/static/icons/light/chess-king-alt.svg diff --git a/src/static/icons/light/chess-king.svg b/apps/client/src/static/icons/light/chess-king.svg similarity index 100% rename from src/static/icons/light/chess-king.svg rename to apps/client/src/static/icons/light/chess-king.svg diff --git a/src/static/icons/light/chess-knight-alt.svg b/apps/client/src/static/icons/light/chess-knight-alt.svg similarity index 100% rename from src/static/icons/light/chess-knight-alt.svg rename to apps/client/src/static/icons/light/chess-knight-alt.svg diff --git a/src/static/icons/light/chess-knight.svg b/apps/client/src/static/icons/light/chess-knight.svg similarity index 100% rename from src/static/icons/light/chess-knight.svg rename to apps/client/src/static/icons/light/chess-knight.svg diff --git a/src/static/icons/light/chess-pawn-alt.svg b/apps/client/src/static/icons/light/chess-pawn-alt.svg similarity index 100% rename from src/static/icons/light/chess-pawn-alt.svg rename to apps/client/src/static/icons/light/chess-pawn-alt.svg diff --git a/src/static/icons/light/chess-pawn.svg b/apps/client/src/static/icons/light/chess-pawn.svg similarity index 100% rename from src/static/icons/light/chess-pawn.svg rename to apps/client/src/static/icons/light/chess-pawn.svg diff --git a/src/static/icons/light/chess-queen-alt.svg b/apps/client/src/static/icons/light/chess-queen-alt.svg similarity index 100% rename from src/static/icons/light/chess-queen-alt.svg rename to apps/client/src/static/icons/light/chess-queen-alt.svg diff --git a/src/static/icons/light/chess-queen.svg b/apps/client/src/static/icons/light/chess-queen.svg similarity index 100% rename from src/static/icons/light/chess-queen.svg rename to apps/client/src/static/icons/light/chess-queen.svg diff --git a/src/static/icons/light/chess-rook-alt.svg b/apps/client/src/static/icons/light/chess-rook-alt.svg similarity index 100% rename from src/static/icons/light/chess-rook-alt.svg rename to apps/client/src/static/icons/light/chess-rook-alt.svg diff --git a/src/static/icons/light/chess-rook.svg b/apps/client/src/static/icons/light/chess-rook.svg similarity index 100% rename from src/static/icons/light/chess-rook.svg rename to apps/client/src/static/icons/light/chess-rook.svg diff --git a/src/static/icons/light/chess.svg b/apps/client/src/static/icons/light/chess.svg similarity index 100% rename from src/static/icons/light/chess.svg rename to apps/client/src/static/icons/light/chess.svg diff --git a/src/static/icons/light/chevron-circle-down.svg b/apps/client/src/static/icons/light/chevron-circle-down.svg similarity index 100% rename from src/static/icons/light/chevron-circle-down.svg rename to apps/client/src/static/icons/light/chevron-circle-down.svg diff --git a/src/static/icons/light/chevron-circle-left.svg b/apps/client/src/static/icons/light/chevron-circle-left.svg similarity index 100% rename from src/static/icons/light/chevron-circle-left.svg rename to apps/client/src/static/icons/light/chevron-circle-left.svg diff --git a/src/static/icons/light/chevron-circle-right.svg b/apps/client/src/static/icons/light/chevron-circle-right.svg similarity index 100% rename from src/static/icons/light/chevron-circle-right.svg rename to apps/client/src/static/icons/light/chevron-circle-right.svg diff --git a/src/static/icons/light/chevron-circle-up.svg b/apps/client/src/static/icons/light/chevron-circle-up.svg similarity index 100% rename from src/static/icons/light/chevron-circle-up.svg rename to apps/client/src/static/icons/light/chevron-circle-up.svg diff --git a/src/static/icons/light/chevron-double-down.svg b/apps/client/src/static/icons/light/chevron-double-down.svg similarity index 100% rename from src/static/icons/light/chevron-double-down.svg rename to apps/client/src/static/icons/light/chevron-double-down.svg diff --git a/src/static/icons/light/chevron-double-left.svg b/apps/client/src/static/icons/light/chevron-double-left.svg similarity index 100% rename from src/static/icons/light/chevron-double-left.svg rename to apps/client/src/static/icons/light/chevron-double-left.svg diff --git a/src/static/icons/light/chevron-double-right.svg b/apps/client/src/static/icons/light/chevron-double-right.svg similarity index 100% rename from src/static/icons/light/chevron-double-right.svg rename to apps/client/src/static/icons/light/chevron-double-right.svg diff --git a/src/static/icons/light/chevron-double-up.svg b/apps/client/src/static/icons/light/chevron-double-up.svg similarity index 100% rename from src/static/icons/light/chevron-double-up.svg rename to apps/client/src/static/icons/light/chevron-double-up.svg diff --git a/src/static/icons/light/chevron-down.svg b/apps/client/src/static/icons/light/chevron-down.svg similarity index 100% rename from src/static/icons/light/chevron-down.svg rename to apps/client/src/static/icons/light/chevron-down.svg diff --git a/src/static/icons/light/chevron-left.svg b/apps/client/src/static/icons/light/chevron-left.svg similarity index 100% rename from src/static/icons/light/chevron-left.svg rename to apps/client/src/static/icons/light/chevron-left.svg diff --git a/src/static/icons/light/chevron-right.svg b/apps/client/src/static/icons/light/chevron-right.svg similarity index 100% rename from src/static/icons/light/chevron-right.svg rename to apps/client/src/static/icons/light/chevron-right.svg diff --git a/src/static/icons/light/chevron-square-down.svg b/apps/client/src/static/icons/light/chevron-square-down.svg similarity index 100% rename from src/static/icons/light/chevron-square-down.svg rename to apps/client/src/static/icons/light/chevron-square-down.svg diff --git a/src/static/icons/light/chevron-square-left.svg b/apps/client/src/static/icons/light/chevron-square-left.svg similarity index 100% rename from src/static/icons/light/chevron-square-left.svg rename to apps/client/src/static/icons/light/chevron-square-left.svg diff --git a/src/static/icons/light/chevron-square-right.svg b/apps/client/src/static/icons/light/chevron-square-right.svg similarity index 100% rename from src/static/icons/light/chevron-square-right.svg rename to apps/client/src/static/icons/light/chevron-square-right.svg diff --git a/src/static/icons/light/chevron-square-up.svg b/apps/client/src/static/icons/light/chevron-square-up.svg similarity index 100% rename from src/static/icons/light/chevron-square-up.svg rename to apps/client/src/static/icons/light/chevron-square-up.svg diff --git a/src/static/icons/light/chevron-up.svg b/apps/client/src/static/icons/light/chevron-up.svg similarity index 100% rename from src/static/icons/light/chevron-up.svg rename to apps/client/src/static/icons/light/chevron-up.svg diff --git a/src/static/icons/light/child.svg b/apps/client/src/static/icons/light/child.svg similarity index 100% rename from src/static/icons/light/child.svg rename to apps/client/src/static/icons/light/child.svg diff --git a/src/static/icons/light/chimney.svg b/apps/client/src/static/icons/light/chimney.svg similarity index 100% rename from src/static/icons/light/chimney.svg rename to apps/client/src/static/icons/light/chimney.svg diff --git a/src/static/icons/light/church.svg b/apps/client/src/static/icons/light/church.svg similarity index 100% rename from src/static/icons/light/church.svg rename to apps/client/src/static/icons/light/church.svg diff --git a/src/static/icons/light/circle-notch.svg b/apps/client/src/static/icons/light/circle-notch.svg similarity index 100% rename from src/static/icons/light/circle-notch.svg rename to apps/client/src/static/icons/light/circle-notch.svg diff --git a/src/static/icons/light/circle.svg b/apps/client/src/static/icons/light/circle.svg similarity index 100% rename from src/static/icons/light/circle.svg rename to apps/client/src/static/icons/light/circle.svg diff --git a/src/static/icons/light/city.svg b/apps/client/src/static/icons/light/city.svg similarity index 100% rename from src/static/icons/light/city.svg rename to apps/client/src/static/icons/light/city.svg diff --git a/src/static/icons/light/clarinet.svg b/apps/client/src/static/icons/light/clarinet.svg similarity index 100% rename from src/static/icons/light/clarinet.svg rename to apps/client/src/static/icons/light/clarinet.svg diff --git a/src/static/icons/light/claw-marks.svg b/apps/client/src/static/icons/light/claw-marks.svg similarity index 100% rename from src/static/icons/light/claw-marks.svg rename to apps/client/src/static/icons/light/claw-marks.svg diff --git a/src/static/icons/light/clinic-medical.svg b/apps/client/src/static/icons/light/clinic-medical.svg similarity index 100% rename from src/static/icons/light/clinic-medical.svg rename to apps/client/src/static/icons/light/clinic-medical.svg diff --git a/src/static/icons/light/clipboard-check.svg b/apps/client/src/static/icons/light/clipboard-check.svg similarity index 100% rename from src/static/icons/light/clipboard-check.svg rename to apps/client/src/static/icons/light/clipboard-check.svg diff --git a/src/static/icons/light/clipboard-list-check.svg b/apps/client/src/static/icons/light/clipboard-list-check.svg similarity index 100% rename from src/static/icons/light/clipboard-list-check.svg rename to apps/client/src/static/icons/light/clipboard-list-check.svg diff --git a/src/static/icons/light/clipboard-list.svg b/apps/client/src/static/icons/light/clipboard-list.svg similarity index 100% rename from src/static/icons/light/clipboard-list.svg rename to apps/client/src/static/icons/light/clipboard-list.svg diff --git a/src/static/icons/light/clipboard-prescription.svg b/apps/client/src/static/icons/light/clipboard-prescription.svg similarity index 100% rename from src/static/icons/light/clipboard-prescription.svg rename to apps/client/src/static/icons/light/clipboard-prescription.svg diff --git a/src/static/icons/light/clipboard-user.svg b/apps/client/src/static/icons/light/clipboard-user.svg similarity index 100% rename from src/static/icons/light/clipboard-user.svg rename to apps/client/src/static/icons/light/clipboard-user.svg diff --git a/src/static/icons/light/clipboard.svg b/apps/client/src/static/icons/light/clipboard.svg similarity index 100% rename from src/static/icons/light/clipboard.svg rename to apps/client/src/static/icons/light/clipboard.svg diff --git a/src/static/icons/light/clock.svg b/apps/client/src/static/icons/light/clock.svg similarity index 100% rename from src/static/icons/light/clock.svg rename to apps/client/src/static/icons/light/clock.svg diff --git a/src/static/icons/light/clone.svg b/apps/client/src/static/icons/light/clone.svg similarity index 100% rename from src/static/icons/light/clone.svg rename to apps/client/src/static/icons/light/clone.svg diff --git a/src/static/icons/light/closed-captioning.svg b/apps/client/src/static/icons/light/closed-captioning.svg similarity index 100% rename from src/static/icons/light/closed-captioning.svg rename to apps/client/src/static/icons/light/closed-captioning.svg diff --git a/src/static/icons/light/cloud-download-alt.svg b/apps/client/src/static/icons/light/cloud-download-alt.svg similarity index 100% rename from src/static/icons/light/cloud-download-alt.svg rename to apps/client/src/static/icons/light/cloud-download-alt.svg diff --git a/src/static/icons/light/cloud-download.svg b/apps/client/src/static/icons/light/cloud-download.svg similarity index 100% rename from src/static/icons/light/cloud-download.svg rename to apps/client/src/static/icons/light/cloud-download.svg diff --git a/src/static/icons/light/cloud-drizzle.svg b/apps/client/src/static/icons/light/cloud-drizzle.svg similarity index 100% rename from src/static/icons/light/cloud-drizzle.svg rename to apps/client/src/static/icons/light/cloud-drizzle.svg diff --git a/src/static/icons/light/cloud-hail-mixed.svg b/apps/client/src/static/icons/light/cloud-hail-mixed.svg similarity index 100% rename from src/static/icons/light/cloud-hail-mixed.svg rename to apps/client/src/static/icons/light/cloud-hail-mixed.svg diff --git a/src/static/icons/light/cloud-hail.svg b/apps/client/src/static/icons/light/cloud-hail.svg similarity index 100% rename from src/static/icons/light/cloud-hail.svg rename to apps/client/src/static/icons/light/cloud-hail.svg diff --git a/src/static/icons/light/cloud-meatball.svg b/apps/client/src/static/icons/light/cloud-meatball.svg similarity index 100% rename from src/static/icons/light/cloud-meatball.svg rename to apps/client/src/static/icons/light/cloud-meatball.svg diff --git a/src/static/icons/light/cloud-moon-rain.svg b/apps/client/src/static/icons/light/cloud-moon-rain.svg similarity index 100% rename from src/static/icons/light/cloud-moon-rain.svg rename to apps/client/src/static/icons/light/cloud-moon-rain.svg diff --git a/src/static/icons/light/cloud-moon.svg b/apps/client/src/static/icons/light/cloud-moon.svg similarity index 100% rename from src/static/icons/light/cloud-moon.svg rename to apps/client/src/static/icons/light/cloud-moon.svg diff --git a/src/static/icons/light/cloud-music.svg b/apps/client/src/static/icons/light/cloud-music.svg similarity index 100% rename from src/static/icons/light/cloud-music.svg rename to apps/client/src/static/icons/light/cloud-music.svg diff --git a/src/static/icons/light/cloud-rain.svg b/apps/client/src/static/icons/light/cloud-rain.svg similarity index 100% rename from src/static/icons/light/cloud-rain.svg rename to apps/client/src/static/icons/light/cloud-rain.svg diff --git a/src/static/icons/light/cloud-rainbow.svg b/apps/client/src/static/icons/light/cloud-rainbow.svg similarity index 100% rename from src/static/icons/light/cloud-rainbow.svg rename to apps/client/src/static/icons/light/cloud-rainbow.svg diff --git a/src/static/icons/light/cloud-showers-heavy.svg b/apps/client/src/static/icons/light/cloud-showers-heavy.svg similarity index 100% rename from src/static/icons/light/cloud-showers-heavy.svg rename to apps/client/src/static/icons/light/cloud-showers-heavy.svg diff --git a/src/static/icons/light/cloud-showers.svg b/apps/client/src/static/icons/light/cloud-showers.svg similarity index 100% rename from src/static/icons/light/cloud-showers.svg rename to apps/client/src/static/icons/light/cloud-showers.svg diff --git a/src/static/icons/light/cloud-sleet.svg b/apps/client/src/static/icons/light/cloud-sleet.svg similarity index 100% rename from src/static/icons/light/cloud-sleet.svg rename to apps/client/src/static/icons/light/cloud-sleet.svg diff --git a/src/static/icons/light/cloud-snow.svg b/apps/client/src/static/icons/light/cloud-snow.svg similarity index 100% rename from src/static/icons/light/cloud-snow.svg rename to apps/client/src/static/icons/light/cloud-snow.svg diff --git a/src/static/icons/light/cloud-sun-rain.svg b/apps/client/src/static/icons/light/cloud-sun-rain.svg similarity index 100% rename from src/static/icons/light/cloud-sun-rain.svg rename to apps/client/src/static/icons/light/cloud-sun-rain.svg diff --git a/src/static/icons/light/cloud-sun.svg b/apps/client/src/static/icons/light/cloud-sun.svg similarity index 100% rename from src/static/icons/light/cloud-sun.svg rename to apps/client/src/static/icons/light/cloud-sun.svg diff --git a/src/static/icons/light/cloud-upload-alt.svg b/apps/client/src/static/icons/light/cloud-upload-alt.svg similarity index 100% rename from src/static/icons/light/cloud-upload-alt.svg rename to apps/client/src/static/icons/light/cloud-upload-alt.svg diff --git a/src/static/icons/light/cloud-upload.svg b/apps/client/src/static/icons/light/cloud-upload.svg similarity index 100% rename from src/static/icons/light/cloud-upload.svg rename to apps/client/src/static/icons/light/cloud-upload.svg diff --git a/src/static/icons/light/cloud.svg b/apps/client/src/static/icons/light/cloud.svg similarity index 100% rename from src/static/icons/light/cloud.svg rename to apps/client/src/static/icons/light/cloud.svg diff --git a/src/static/icons/light/clouds-moon.svg b/apps/client/src/static/icons/light/clouds-moon.svg similarity index 100% rename from src/static/icons/light/clouds-moon.svg rename to apps/client/src/static/icons/light/clouds-moon.svg diff --git a/src/static/icons/light/clouds-sun.svg b/apps/client/src/static/icons/light/clouds-sun.svg similarity index 100% rename from src/static/icons/light/clouds-sun.svg rename to apps/client/src/static/icons/light/clouds-sun.svg diff --git a/src/static/icons/light/clouds.svg b/apps/client/src/static/icons/light/clouds.svg similarity index 100% rename from src/static/icons/light/clouds.svg rename to apps/client/src/static/icons/light/clouds.svg diff --git a/src/static/icons/light/club.svg b/apps/client/src/static/icons/light/club.svg similarity index 100% rename from src/static/icons/light/club.svg rename to apps/client/src/static/icons/light/club.svg diff --git a/src/static/icons/light/cocktail.svg b/apps/client/src/static/icons/light/cocktail.svg similarity index 100% rename from src/static/icons/light/cocktail.svg rename to apps/client/src/static/icons/light/cocktail.svg diff --git a/src/static/icons/light/code-branch.svg b/apps/client/src/static/icons/light/code-branch.svg similarity index 100% rename from src/static/icons/light/code-branch.svg rename to apps/client/src/static/icons/light/code-branch.svg diff --git a/src/static/icons/light/code-commit.svg b/apps/client/src/static/icons/light/code-commit.svg similarity index 100% rename from src/static/icons/light/code-commit.svg rename to apps/client/src/static/icons/light/code-commit.svg diff --git a/src/static/icons/light/code-merge.svg b/apps/client/src/static/icons/light/code-merge.svg similarity index 100% rename from src/static/icons/light/code-merge.svg rename to apps/client/src/static/icons/light/code-merge.svg diff --git a/src/static/icons/light/code.svg b/apps/client/src/static/icons/light/code.svg similarity index 100% rename from src/static/icons/light/code.svg rename to apps/client/src/static/icons/light/code.svg diff --git a/src/static/icons/light/coffee-pot.svg b/apps/client/src/static/icons/light/coffee-pot.svg similarity index 100% rename from src/static/icons/light/coffee-pot.svg rename to apps/client/src/static/icons/light/coffee-pot.svg diff --git a/src/static/icons/light/coffee-togo.svg b/apps/client/src/static/icons/light/coffee-togo.svg similarity index 100% rename from src/static/icons/light/coffee-togo.svg rename to apps/client/src/static/icons/light/coffee-togo.svg diff --git a/src/static/icons/light/coffee.svg b/apps/client/src/static/icons/light/coffee.svg similarity index 100% rename from src/static/icons/light/coffee.svg rename to apps/client/src/static/icons/light/coffee.svg diff --git a/src/static/icons/light/coffin.svg b/apps/client/src/static/icons/light/coffin.svg similarity index 100% rename from src/static/icons/light/coffin.svg rename to apps/client/src/static/icons/light/coffin.svg diff --git a/src/static/icons/light/cog.svg b/apps/client/src/static/icons/light/cog.svg similarity index 100% rename from src/static/icons/light/cog.svg rename to apps/client/src/static/icons/light/cog.svg diff --git a/src/static/icons/light/cogs.svg b/apps/client/src/static/icons/light/cogs.svg similarity index 100% rename from src/static/icons/light/cogs.svg rename to apps/client/src/static/icons/light/cogs.svg diff --git a/src/static/icons/light/coin.svg b/apps/client/src/static/icons/light/coin.svg similarity index 100% rename from src/static/icons/light/coin.svg rename to apps/client/src/static/icons/light/coin.svg diff --git a/src/static/icons/light/coins.svg b/apps/client/src/static/icons/light/coins.svg similarity index 100% rename from src/static/icons/light/coins.svg rename to apps/client/src/static/icons/light/coins.svg diff --git a/src/static/icons/light/columns.svg b/apps/client/src/static/icons/light/columns.svg similarity index 100% rename from src/static/icons/light/columns.svg rename to apps/client/src/static/icons/light/columns.svg diff --git a/src/static/icons/light/comet.svg b/apps/client/src/static/icons/light/comet.svg similarity index 100% rename from src/static/icons/light/comet.svg rename to apps/client/src/static/icons/light/comet.svg diff --git a/src/static/icons/light/comment-alt-check.svg b/apps/client/src/static/icons/light/comment-alt-check.svg similarity index 100% rename from src/static/icons/light/comment-alt-check.svg rename to apps/client/src/static/icons/light/comment-alt-check.svg diff --git a/src/static/icons/light/comment-alt-dollar.svg b/apps/client/src/static/icons/light/comment-alt-dollar.svg similarity index 100% rename from src/static/icons/light/comment-alt-dollar.svg rename to apps/client/src/static/icons/light/comment-alt-dollar.svg diff --git a/src/static/icons/light/comment-alt-dots.svg b/apps/client/src/static/icons/light/comment-alt-dots.svg similarity index 100% rename from src/static/icons/light/comment-alt-dots.svg rename to apps/client/src/static/icons/light/comment-alt-dots.svg diff --git a/src/static/icons/light/comment-alt-edit.svg b/apps/client/src/static/icons/light/comment-alt-edit.svg similarity index 100% rename from src/static/icons/light/comment-alt-edit.svg rename to apps/client/src/static/icons/light/comment-alt-edit.svg diff --git a/src/static/icons/light/comment-alt-exclamation.svg b/apps/client/src/static/icons/light/comment-alt-exclamation.svg similarity index 100% rename from src/static/icons/light/comment-alt-exclamation.svg rename to apps/client/src/static/icons/light/comment-alt-exclamation.svg diff --git a/src/static/icons/light/comment-alt-lines.svg b/apps/client/src/static/icons/light/comment-alt-lines.svg similarity index 100% rename from src/static/icons/light/comment-alt-lines.svg rename to apps/client/src/static/icons/light/comment-alt-lines.svg diff --git a/src/static/icons/light/comment-alt-medical.svg b/apps/client/src/static/icons/light/comment-alt-medical.svg similarity index 100% rename from src/static/icons/light/comment-alt-medical.svg rename to apps/client/src/static/icons/light/comment-alt-medical.svg diff --git a/src/static/icons/light/comment-alt-minus.svg b/apps/client/src/static/icons/light/comment-alt-minus.svg similarity index 100% rename from src/static/icons/light/comment-alt-minus.svg rename to apps/client/src/static/icons/light/comment-alt-minus.svg diff --git a/src/static/icons/light/comment-alt-music.svg b/apps/client/src/static/icons/light/comment-alt-music.svg similarity index 100% rename from src/static/icons/light/comment-alt-music.svg rename to apps/client/src/static/icons/light/comment-alt-music.svg diff --git a/src/static/icons/light/comment-alt-plus.svg b/apps/client/src/static/icons/light/comment-alt-plus.svg similarity index 100% rename from src/static/icons/light/comment-alt-plus.svg rename to apps/client/src/static/icons/light/comment-alt-plus.svg diff --git a/src/static/icons/light/comment-alt-slash.svg b/apps/client/src/static/icons/light/comment-alt-slash.svg similarity index 100% rename from src/static/icons/light/comment-alt-slash.svg rename to apps/client/src/static/icons/light/comment-alt-slash.svg diff --git a/src/static/icons/light/comment-alt-smile.svg b/apps/client/src/static/icons/light/comment-alt-smile.svg similarity index 100% rename from src/static/icons/light/comment-alt-smile.svg rename to apps/client/src/static/icons/light/comment-alt-smile.svg diff --git a/src/static/icons/light/comment-alt-times.svg b/apps/client/src/static/icons/light/comment-alt-times.svg similarity index 100% rename from src/static/icons/light/comment-alt-times.svg rename to apps/client/src/static/icons/light/comment-alt-times.svg diff --git a/src/static/icons/light/comment-alt.svg b/apps/client/src/static/icons/light/comment-alt.svg similarity index 100% rename from src/static/icons/light/comment-alt.svg rename to apps/client/src/static/icons/light/comment-alt.svg diff --git a/src/static/icons/light/comment-check.svg b/apps/client/src/static/icons/light/comment-check.svg similarity index 100% rename from src/static/icons/light/comment-check.svg rename to apps/client/src/static/icons/light/comment-check.svg diff --git a/src/static/icons/light/comment-dollar.svg b/apps/client/src/static/icons/light/comment-dollar.svg similarity index 100% rename from src/static/icons/light/comment-dollar.svg rename to apps/client/src/static/icons/light/comment-dollar.svg diff --git a/src/static/icons/light/comment-dots.svg b/apps/client/src/static/icons/light/comment-dots.svg similarity index 100% rename from src/static/icons/light/comment-dots.svg rename to apps/client/src/static/icons/light/comment-dots.svg diff --git a/src/static/icons/light/comment-edit.svg b/apps/client/src/static/icons/light/comment-edit.svg similarity index 100% rename from src/static/icons/light/comment-edit.svg rename to apps/client/src/static/icons/light/comment-edit.svg diff --git a/src/static/icons/light/comment-exclamation.svg b/apps/client/src/static/icons/light/comment-exclamation.svg similarity index 100% rename from src/static/icons/light/comment-exclamation.svg rename to apps/client/src/static/icons/light/comment-exclamation.svg diff --git a/src/static/icons/light/comment-lines.svg b/apps/client/src/static/icons/light/comment-lines.svg similarity index 100% rename from src/static/icons/light/comment-lines.svg rename to apps/client/src/static/icons/light/comment-lines.svg diff --git a/src/static/icons/light/comment-medical.svg b/apps/client/src/static/icons/light/comment-medical.svg similarity index 100% rename from src/static/icons/light/comment-medical.svg rename to apps/client/src/static/icons/light/comment-medical.svg diff --git a/src/static/icons/light/comment-minus.svg b/apps/client/src/static/icons/light/comment-minus.svg similarity index 100% rename from src/static/icons/light/comment-minus.svg rename to apps/client/src/static/icons/light/comment-minus.svg diff --git a/src/static/icons/light/comment-music.svg b/apps/client/src/static/icons/light/comment-music.svg similarity index 100% rename from src/static/icons/light/comment-music.svg rename to apps/client/src/static/icons/light/comment-music.svg diff --git a/src/static/icons/light/comment-plus.svg b/apps/client/src/static/icons/light/comment-plus.svg similarity index 100% rename from src/static/icons/light/comment-plus.svg rename to apps/client/src/static/icons/light/comment-plus.svg diff --git a/src/static/icons/light/comment-slash.svg b/apps/client/src/static/icons/light/comment-slash.svg similarity index 100% rename from src/static/icons/light/comment-slash.svg rename to apps/client/src/static/icons/light/comment-slash.svg diff --git a/src/static/icons/light/comment-smile.svg b/apps/client/src/static/icons/light/comment-smile.svg similarity index 100% rename from src/static/icons/light/comment-smile.svg rename to apps/client/src/static/icons/light/comment-smile.svg diff --git a/src/static/icons/light/comment-times.svg b/apps/client/src/static/icons/light/comment-times.svg similarity index 100% rename from src/static/icons/light/comment-times.svg rename to apps/client/src/static/icons/light/comment-times.svg diff --git a/src/static/icons/light/comment.svg b/apps/client/src/static/icons/light/comment.svg similarity index 100% rename from src/static/icons/light/comment.svg rename to apps/client/src/static/icons/light/comment.svg diff --git a/src/static/icons/light/comments-alt-dollar.svg b/apps/client/src/static/icons/light/comments-alt-dollar.svg similarity index 100% rename from src/static/icons/light/comments-alt-dollar.svg rename to apps/client/src/static/icons/light/comments-alt-dollar.svg diff --git a/src/static/icons/light/comments-alt.svg b/apps/client/src/static/icons/light/comments-alt.svg similarity index 100% rename from src/static/icons/light/comments-alt.svg rename to apps/client/src/static/icons/light/comments-alt.svg diff --git a/src/static/icons/light/comments-dollar.svg b/apps/client/src/static/icons/light/comments-dollar.svg similarity index 100% rename from src/static/icons/light/comments-dollar.svg rename to apps/client/src/static/icons/light/comments-dollar.svg diff --git a/src/static/icons/light/comments.svg b/apps/client/src/static/icons/light/comments.svg similarity index 100% rename from src/static/icons/light/comments.svg rename to apps/client/src/static/icons/light/comments.svg diff --git a/src/static/icons/light/compact-disc.svg b/apps/client/src/static/icons/light/compact-disc.svg similarity index 100% rename from src/static/icons/light/compact-disc.svg rename to apps/client/src/static/icons/light/compact-disc.svg diff --git a/src/static/icons/light/compass-slash.svg b/apps/client/src/static/icons/light/compass-slash.svg similarity index 100% rename from src/static/icons/light/compass-slash.svg rename to apps/client/src/static/icons/light/compass-slash.svg diff --git a/src/static/icons/light/compass.svg b/apps/client/src/static/icons/light/compass.svg similarity index 100% rename from src/static/icons/light/compass.svg rename to apps/client/src/static/icons/light/compass.svg diff --git a/src/static/icons/light/compress-alt.svg b/apps/client/src/static/icons/light/compress-alt.svg similarity index 100% rename from src/static/icons/light/compress-alt.svg rename to apps/client/src/static/icons/light/compress-alt.svg diff --git a/src/static/icons/light/compress-arrows-alt.svg b/apps/client/src/static/icons/light/compress-arrows-alt.svg similarity index 100% rename from src/static/icons/light/compress-arrows-alt.svg rename to apps/client/src/static/icons/light/compress-arrows-alt.svg diff --git a/src/static/icons/light/compress-wide.svg b/apps/client/src/static/icons/light/compress-wide.svg similarity index 100% rename from src/static/icons/light/compress-wide.svg rename to apps/client/src/static/icons/light/compress-wide.svg diff --git a/src/static/icons/light/compress.svg b/apps/client/src/static/icons/light/compress.svg similarity index 100% rename from src/static/icons/light/compress.svg rename to apps/client/src/static/icons/light/compress.svg diff --git a/src/static/icons/light/computer-classic.svg b/apps/client/src/static/icons/light/computer-classic.svg similarity index 100% rename from src/static/icons/light/computer-classic.svg rename to apps/client/src/static/icons/light/computer-classic.svg diff --git a/src/static/icons/light/computer-speaker.svg b/apps/client/src/static/icons/light/computer-speaker.svg similarity index 100% rename from src/static/icons/light/computer-speaker.svg rename to apps/client/src/static/icons/light/computer-speaker.svg diff --git a/src/static/icons/light/concierge-bell.svg b/apps/client/src/static/icons/light/concierge-bell.svg similarity index 100% rename from src/static/icons/light/concierge-bell.svg rename to apps/client/src/static/icons/light/concierge-bell.svg diff --git a/src/static/icons/light/construction.svg b/apps/client/src/static/icons/light/construction.svg similarity index 100% rename from src/static/icons/light/construction.svg rename to apps/client/src/static/icons/light/construction.svg diff --git a/src/static/icons/light/container-storage.svg b/apps/client/src/static/icons/light/container-storage.svg similarity index 100% rename from src/static/icons/light/container-storage.svg rename to apps/client/src/static/icons/light/container-storage.svg diff --git a/src/static/icons/light/conveyor-belt-alt.svg b/apps/client/src/static/icons/light/conveyor-belt-alt.svg similarity index 100% rename from src/static/icons/light/conveyor-belt-alt.svg rename to apps/client/src/static/icons/light/conveyor-belt-alt.svg diff --git a/src/static/icons/light/conveyor-belt.svg b/apps/client/src/static/icons/light/conveyor-belt.svg similarity index 100% rename from src/static/icons/light/conveyor-belt.svg rename to apps/client/src/static/icons/light/conveyor-belt.svg diff --git a/src/static/icons/light/cookie-bite.svg b/apps/client/src/static/icons/light/cookie-bite.svg similarity index 100% rename from src/static/icons/light/cookie-bite.svg rename to apps/client/src/static/icons/light/cookie-bite.svg diff --git a/src/static/icons/light/cookie.svg b/apps/client/src/static/icons/light/cookie.svg similarity index 100% rename from src/static/icons/light/cookie.svg rename to apps/client/src/static/icons/light/cookie.svg diff --git a/src/static/icons/light/copy.svg b/apps/client/src/static/icons/light/copy.svg similarity index 100% rename from src/static/icons/light/copy.svg rename to apps/client/src/static/icons/light/copy.svg diff --git a/src/static/icons/light/copyright.svg b/apps/client/src/static/icons/light/copyright.svg similarity index 100% rename from src/static/icons/light/copyright.svg rename to apps/client/src/static/icons/light/copyright.svg diff --git a/src/static/icons/light/corn.svg b/apps/client/src/static/icons/light/corn.svg similarity index 100% rename from src/static/icons/light/corn.svg rename to apps/client/src/static/icons/light/corn.svg diff --git a/src/static/icons/light/couch.svg b/apps/client/src/static/icons/light/couch.svg similarity index 100% rename from src/static/icons/light/couch.svg rename to apps/client/src/static/icons/light/couch.svg diff --git a/src/static/icons/light/cow.svg b/apps/client/src/static/icons/light/cow.svg similarity index 100% rename from src/static/icons/light/cow.svg rename to apps/client/src/static/icons/light/cow.svg diff --git a/src/static/icons/light/cowbell-more.svg b/apps/client/src/static/icons/light/cowbell-more.svg similarity index 100% rename from src/static/icons/light/cowbell-more.svg rename to apps/client/src/static/icons/light/cowbell-more.svg diff --git a/src/static/icons/light/cowbell.svg b/apps/client/src/static/icons/light/cowbell.svg similarity index 100% rename from src/static/icons/light/cowbell.svg rename to apps/client/src/static/icons/light/cowbell.svg diff --git a/src/static/icons/light/credit-card-blank.svg b/apps/client/src/static/icons/light/credit-card-blank.svg similarity index 100% rename from src/static/icons/light/credit-card-blank.svg rename to apps/client/src/static/icons/light/credit-card-blank.svg diff --git a/src/static/icons/light/credit-card-front.svg b/apps/client/src/static/icons/light/credit-card-front.svg similarity index 100% rename from src/static/icons/light/credit-card-front.svg rename to apps/client/src/static/icons/light/credit-card-front.svg diff --git a/src/static/icons/light/credit-card.svg b/apps/client/src/static/icons/light/credit-card.svg similarity index 100% rename from src/static/icons/light/credit-card.svg rename to apps/client/src/static/icons/light/credit-card.svg diff --git a/src/static/icons/light/cricket.svg b/apps/client/src/static/icons/light/cricket.svg similarity index 100% rename from src/static/icons/light/cricket.svg rename to apps/client/src/static/icons/light/cricket.svg diff --git a/src/static/icons/light/croissant.svg b/apps/client/src/static/icons/light/croissant.svg similarity index 100% rename from src/static/icons/light/croissant.svg rename to apps/client/src/static/icons/light/croissant.svg diff --git a/src/static/icons/light/crop-alt.svg b/apps/client/src/static/icons/light/crop-alt.svg similarity index 100% rename from src/static/icons/light/crop-alt.svg rename to apps/client/src/static/icons/light/crop-alt.svg diff --git a/src/static/icons/light/crop.svg b/apps/client/src/static/icons/light/crop.svg similarity index 100% rename from src/static/icons/light/crop.svg rename to apps/client/src/static/icons/light/crop.svg diff --git a/src/static/icons/light/cross.svg b/apps/client/src/static/icons/light/cross.svg similarity index 100% rename from src/static/icons/light/cross.svg rename to apps/client/src/static/icons/light/cross.svg diff --git a/src/static/icons/light/crosshairs.svg b/apps/client/src/static/icons/light/crosshairs.svg similarity index 100% rename from src/static/icons/light/crosshairs.svg rename to apps/client/src/static/icons/light/crosshairs.svg diff --git a/src/static/icons/light/crow.svg b/apps/client/src/static/icons/light/crow.svg similarity index 100% rename from src/static/icons/light/crow.svg rename to apps/client/src/static/icons/light/crow.svg diff --git a/src/static/icons/light/crown.svg b/apps/client/src/static/icons/light/crown.svg similarity index 100% rename from src/static/icons/light/crown.svg rename to apps/client/src/static/icons/light/crown.svg diff --git a/src/static/icons/light/crutch.svg b/apps/client/src/static/icons/light/crutch.svg similarity index 100% rename from src/static/icons/light/crutch.svg rename to apps/client/src/static/icons/light/crutch.svg diff --git a/src/static/icons/light/crutches.svg b/apps/client/src/static/icons/light/crutches.svg similarity index 100% rename from src/static/icons/light/crutches.svg rename to apps/client/src/static/icons/light/crutches.svg diff --git a/src/static/icons/light/cube.svg b/apps/client/src/static/icons/light/cube.svg similarity index 100% rename from src/static/icons/light/cube.svg rename to apps/client/src/static/icons/light/cube.svg diff --git a/src/static/icons/light/cubes.svg b/apps/client/src/static/icons/light/cubes.svg similarity index 100% rename from src/static/icons/light/cubes.svg rename to apps/client/src/static/icons/light/cubes.svg diff --git a/src/static/icons/light/curling.svg b/apps/client/src/static/icons/light/curling.svg similarity index 100% rename from src/static/icons/light/curling.svg rename to apps/client/src/static/icons/light/curling.svg diff --git a/src/static/icons/light/cut.svg b/apps/client/src/static/icons/light/cut.svg similarity index 100% rename from src/static/icons/light/cut.svg rename to apps/client/src/static/icons/light/cut.svg diff --git a/src/static/icons/light/dagger.svg b/apps/client/src/static/icons/light/dagger.svg similarity index 100% rename from src/static/icons/light/dagger.svg rename to apps/client/src/static/icons/light/dagger.svg diff --git a/src/static/icons/light/database.svg b/apps/client/src/static/icons/light/database.svg similarity index 100% rename from src/static/icons/light/database.svg rename to apps/client/src/static/icons/light/database.svg diff --git a/src/static/icons/light/deaf.svg b/apps/client/src/static/icons/light/deaf.svg similarity index 100% rename from src/static/icons/light/deaf.svg rename to apps/client/src/static/icons/light/deaf.svg diff --git a/src/static/icons/light/debug.svg b/apps/client/src/static/icons/light/debug.svg similarity index 100% rename from src/static/icons/light/debug.svg rename to apps/client/src/static/icons/light/debug.svg diff --git a/src/static/icons/light/deer-rudolph.svg b/apps/client/src/static/icons/light/deer-rudolph.svg similarity index 100% rename from src/static/icons/light/deer-rudolph.svg rename to apps/client/src/static/icons/light/deer-rudolph.svg diff --git a/src/static/icons/light/deer.svg b/apps/client/src/static/icons/light/deer.svg similarity index 100% rename from src/static/icons/light/deer.svg rename to apps/client/src/static/icons/light/deer.svg diff --git a/src/static/icons/light/democrat.svg b/apps/client/src/static/icons/light/democrat.svg similarity index 100% rename from src/static/icons/light/democrat.svg rename to apps/client/src/static/icons/light/democrat.svg diff --git a/src/static/icons/light/desktop-alt.svg b/apps/client/src/static/icons/light/desktop-alt.svg similarity index 100% rename from src/static/icons/light/desktop-alt.svg rename to apps/client/src/static/icons/light/desktop-alt.svg diff --git a/src/static/icons/light/desktop.svg b/apps/client/src/static/icons/light/desktop.svg similarity index 100% rename from src/static/icons/light/desktop.svg rename to apps/client/src/static/icons/light/desktop.svg diff --git a/src/static/icons/light/dewpoint.svg b/apps/client/src/static/icons/light/dewpoint.svg similarity index 100% rename from src/static/icons/light/dewpoint.svg rename to apps/client/src/static/icons/light/dewpoint.svg diff --git a/src/static/icons/light/dharmachakra.svg b/apps/client/src/static/icons/light/dharmachakra.svg similarity index 100% rename from src/static/icons/light/dharmachakra.svg rename to apps/client/src/static/icons/light/dharmachakra.svg diff --git a/src/static/icons/light/diagnoses.svg b/apps/client/src/static/icons/light/diagnoses.svg similarity index 100% rename from src/static/icons/light/diagnoses.svg rename to apps/client/src/static/icons/light/diagnoses.svg diff --git a/src/static/icons/light/diamond.svg b/apps/client/src/static/icons/light/diamond.svg similarity index 100% rename from src/static/icons/light/diamond.svg rename to apps/client/src/static/icons/light/diamond.svg diff --git a/src/static/icons/light/dice-d10.svg b/apps/client/src/static/icons/light/dice-d10.svg similarity index 100% rename from src/static/icons/light/dice-d10.svg rename to apps/client/src/static/icons/light/dice-d10.svg diff --git a/src/static/icons/light/dice-d12.svg b/apps/client/src/static/icons/light/dice-d12.svg similarity index 100% rename from src/static/icons/light/dice-d12.svg rename to apps/client/src/static/icons/light/dice-d12.svg diff --git a/src/static/icons/light/dice-d20.svg b/apps/client/src/static/icons/light/dice-d20.svg similarity index 100% rename from src/static/icons/light/dice-d20.svg rename to apps/client/src/static/icons/light/dice-d20.svg diff --git a/src/static/icons/light/dice-d4.svg b/apps/client/src/static/icons/light/dice-d4.svg similarity index 100% rename from src/static/icons/light/dice-d4.svg rename to apps/client/src/static/icons/light/dice-d4.svg diff --git a/src/static/icons/light/dice-d6.svg b/apps/client/src/static/icons/light/dice-d6.svg similarity index 100% rename from src/static/icons/light/dice-d6.svg rename to apps/client/src/static/icons/light/dice-d6.svg diff --git a/src/static/icons/light/dice-d8.svg b/apps/client/src/static/icons/light/dice-d8.svg similarity index 100% rename from src/static/icons/light/dice-d8.svg rename to apps/client/src/static/icons/light/dice-d8.svg diff --git a/src/static/icons/light/dice-five.svg b/apps/client/src/static/icons/light/dice-five.svg similarity index 100% rename from src/static/icons/light/dice-five.svg rename to apps/client/src/static/icons/light/dice-five.svg diff --git a/src/static/icons/light/dice-four.svg b/apps/client/src/static/icons/light/dice-four.svg similarity index 100% rename from src/static/icons/light/dice-four.svg rename to apps/client/src/static/icons/light/dice-four.svg diff --git a/src/static/icons/light/dice-one.svg b/apps/client/src/static/icons/light/dice-one.svg similarity index 100% rename from src/static/icons/light/dice-one.svg rename to apps/client/src/static/icons/light/dice-one.svg diff --git a/src/static/icons/light/dice-six.svg b/apps/client/src/static/icons/light/dice-six.svg similarity index 100% rename from src/static/icons/light/dice-six.svg rename to apps/client/src/static/icons/light/dice-six.svg diff --git a/src/static/icons/light/dice-three.svg b/apps/client/src/static/icons/light/dice-three.svg similarity index 100% rename from src/static/icons/light/dice-three.svg rename to apps/client/src/static/icons/light/dice-three.svg diff --git a/src/static/icons/light/dice-two.svg b/apps/client/src/static/icons/light/dice-two.svg similarity index 100% rename from src/static/icons/light/dice-two.svg rename to apps/client/src/static/icons/light/dice-two.svg diff --git a/src/static/icons/light/dice.svg b/apps/client/src/static/icons/light/dice.svg similarity index 100% rename from src/static/icons/light/dice.svg rename to apps/client/src/static/icons/light/dice.svg diff --git a/src/static/icons/light/digging.svg b/apps/client/src/static/icons/light/digging.svg similarity index 100% rename from src/static/icons/light/digging.svg rename to apps/client/src/static/icons/light/digging.svg diff --git a/src/static/icons/light/digital-tachograph.svg b/apps/client/src/static/icons/light/digital-tachograph.svg similarity index 100% rename from src/static/icons/light/digital-tachograph.svg rename to apps/client/src/static/icons/light/digital-tachograph.svg diff --git a/src/static/icons/light/diploma.svg b/apps/client/src/static/icons/light/diploma.svg similarity index 100% rename from src/static/icons/light/diploma.svg rename to apps/client/src/static/icons/light/diploma.svg diff --git a/src/static/icons/light/directions.svg b/apps/client/src/static/icons/light/directions.svg similarity index 100% rename from src/static/icons/light/directions.svg rename to apps/client/src/static/icons/light/directions.svg diff --git a/src/static/icons/light/disc-drive.svg b/apps/client/src/static/icons/light/disc-drive.svg similarity index 100% rename from src/static/icons/light/disc-drive.svg rename to apps/client/src/static/icons/light/disc-drive.svg diff --git a/src/static/icons/light/disease.svg b/apps/client/src/static/icons/light/disease.svg similarity index 100% rename from src/static/icons/light/disease.svg rename to apps/client/src/static/icons/light/disease.svg diff --git a/src/static/icons/light/divide.svg b/apps/client/src/static/icons/light/divide.svg similarity index 100% rename from src/static/icons/light/divide.svg rename to apps/client/src/static/icons/light/divide.svg diff --git a/src/static/icons/light/dizzy.svg b/apps/client/src/static/icons/light/dizzy.svg similarity index 100% rename from src/static/icons/light/dizzy.svg rename to apps/client/src/static/icons/light/dizzy.svg diff --git a/src/static/icons/light/dna.svg b/apps/client/src/static/icons/light/dna.svg similarity index 100% rename from src/static/icons/light/dna.svg rename to apps/client/src/static/icons/light/dna.svg diff --git a/src/static/icons/light/do-not-enter.svg b/apps/client/src/static/icons/light/do-not-enter.svg similarity index 100% rename from src/static/icons/light/do-not-enter.svg rename to apps/client/src/static/icons/light/do-not-enter.svg diff --git a/src/static/icons/light/dog-leashed.svg b/apps/client/src/static/icons/light/dog-leashed.svg similarity index 100% rename from src/static/icons/light/dog-leashed.svg rename to apps/client/src/static/icons/light/dog-leashed.svg diff --git a/src/static/icons/light/dog.svg b/apps/client/src/static/icons/light/dog.svg similarity index 100% rename from src/static/icons/light/dog.svg rename to apps/client/src/static/icons/light/dog.svg diff --git a/src/static/icons/light/dollar-sign.svg b/apps/client/src/static/icons/light/dollar-sign.svg similarity index 100% rename from src/static/icons/light/dollar-sign.svg rename to apps/client/src/static/icons/light/dollar-sign.svg diff --git a/src/static/icons/light/dolly-empty.svg b/apps/client/src/static/icons/light/dolly-empty.svg similarity index 100% rename from src/static/icons/light/dolly-empty.svg rename to apps/client/src/static/icons/light/dolly-empty.svg diff --git a/src/static/icons/light/dolly-flatbed-alt.svg b/apps/client/src/static/icons/light/dolly-flatbed-alt.svg similarity index 100% rename from src/static/icons/light/dolly-flatbed-alt.svg rename to apps/client/src/static/icons/light/dolly-flatbed-alt.svg diff --git a/src/static/icons/light/dolly-flatbed-empty.svg b/apps/client/src/static/icons/light/dolly-flatbed-empty.svg similarity index 100% rename from src/static/icons/light/dolly-flatbed-empty.svg rename to apps/client/src/static/icons/light/dolly-flatbed-empty.svg diff --git a/src/static/icons/light/dolly-flatbed.svg b/apps/client/src/static/icons/light/dolly-flatbed.svg similarity index 100% rename from src/static/icons/light/dolly-flatbed.svg rename to apps/client/src/static/icons/light/dolly-flatbed.svg diff --git a/src/static/icons/light/dolly.svg b/apps/client/src/static/icons/light/dolly.svg similarity index 100% rename from src/static/icons/light/dolly.svg rename to apps/client/src/static/icons/light/dolly.svg diff --git a/src/static/icons/light/donate.svg b/apps/client/src/static/icons/light/donate.svg similarity index 100% rename from src/static/icons/light/donate.svg rename to apps/client/src/static/icons/light/donate.svg diff --git a/src/static/icons/light/door-closed.svg b/apps/client/src/static/icons/light/door-closed.svg similarity index 100% rename from src/static/icons/light/door-closed.svg rename to apps/client/src/static/icons/light/door-closed.svg diff --git a/src/static/icons/light/door-open.svg b/apps/client/src/static/icons/light/door-open.svg similarity index 100% rename from src/static/icons/light/door-open.svg rename to apps/client/src/static/icons/light/door-open.svg diff --git a/src/static/icons/light/dot-circle.svg b/apps/client/src/static/icons/light/dot-circle.svg similarity index 100% rename from src/static/icons/light/dot-circle.svg rename to apps/client/src/static/icons/light/dot-circle.svg diff --git a/src/static/icons/light/dove.svg b/apps/client/src/static/icons/light/dove.svg similarity index 100% rename from src/static/icons/light/dove.svg rename to apps/client/src/static/icons/light/dove.svg diff --git a/src/static/icons/light/download.svg b/apps/client/src/static/icons/light/download.svg similarity index 100% rename from src/static/icons/light/download.svg rename to apps/client/src/static/icons/light/download.svg diff --git a/src/static/icons/light/drafting-compass.svg b/apps/client/src/static/icons/light/drafting-compass.svg similarity index 100% rename from src/static/icons/light/drafting-compass.svg rename to apps/client/src/static/icons/light/drafting-compass.svg diff --git a/src/static/icons/light/dragon.svg b/apps/client/src/static/icons/light/dragon.svg similarity index 100% rename from src/static/icons/light/dragon.svg rename to apps/client/src/static/icons/light/dragon.svg diff --git a/src/static/icons/light/draw-circle.svg b/apps/client/src/static/icons/light/draw-circle.svg similarity index 100% rename from src/static/icons/light/draw-circle.svg rename to apps/client/src/static/icons/light/draw-circle.svg diff --git a/src/static/icons/light/draw-polygon.svg b/apps/client/src/static/icons/light/draw-polygon.svg similarity index 100% rename from src/static/icons/light/draw-polygon.svg rename to apps/client/src/static/icons/light/draw-polygon.svg diff --git a/src/static/icons/light/draw-square.svg b/apps/client/src/static/icons/light/draw-square.svg similarity index 100% rename from src/static/icons/light/draw-square.svg rename to apps/client/src/static/icons/light/draw-square.svg diff --git a/src/static/icons/light/dreidel.svg b/apps/client/src/static/icons/light/dreidel.svg similarity index 100% rename from src/static/icons/light/dreidel.svg rename to apps/client/src/static/icons/light/dreidel.svg diff --git a/src/static/icons/light/drone-alt.svg b/apps/client/src/static/icons/light/drone-alt.svg similarity index 100% rename from src/static/icons/light/drone-alt.svg rename to apps/client/src/static/icons/light/drone-alt.svg diff --git a/src/static/icons/light/drone.svg b/apps/client/src/static/icons/light/drone.svg similarity index 100% rename from src/static/icons/light/drone.svg rename to apps/client/src/static/icons/light/drone.svg diff --git a/src/static/icons/light/drum-steelpan.svg b/apps/client/src/static/icons/light/drum-steelpan.svg similarity index 100% rename from src/static/icons/light/drum-steelpan.svg rename to apps/client/src/static/icons/light/drum-steelpan.svg diff --git a/src/static/icons/light/drum.svg b/apps/client/src/static/icons/light/drum.svg similarity index 100% rename from src/static/icons/light/drum.svg rename to apps/client/src/static/icons/light/drum.svg diff --git a/src/static/icons/light/drumstick-bite.svg b/apps/client/src/static/icons/light/drumstick-bite.svg similarity index 100% rename from src/static/icons/light/drumstick-bite.svg rename to apps/client/src/static/icons/light/drumstick-bite.svg diff --git a/src/static/icons/light/drumstick.svg b/apps/client/src/static/icons/light/drumstick.svg similarity index 100% rename from src/static/icons/light/drumstick.svg rename to apps/client/src/static/icons/light/drumstick.svg diff --git a/src/static/icons/light/dryer-alt.svg b/apps/client/src/static/icons/light/dryer-alt.svg similarity index 100% rename from src/static/icons/light/dryer-alt.svg rename to apps/client/src/static/icons/light/dryer-alt.svg diff --git a/src/static/icons/light/dryer.svg b/apps/client/src/static/icons/light/dryer.svg similarity index 100% rename from src/static/icons/light/dryer.svg rename to apps/client/src/static/icons/light/dryer.svg diff --git a/src/static/icons/light/duck.svg b/apps/client/src/static/icons/light/duck.svg similarity index 100% rename from src/static/icons/light/duck.svg rename to apps/client/src/static/icons/light/duck.svg diff --git a/src/static/icons/light/dumbbell.svg b/apps/client/src/static/icons/light/dumbbell.svg similarity index 100% rename from src/static/icons/light/dumbbell.svg rename to apps/client/src/static/icons/light/dumbbell.svg diff --git a/src/static/icons/light/dumpster-fire.svg b/apps/client/src/static/icons/light/dumpster-fire.svg similarity index 100% rename from src/static/icons/light/dumpster-fire.svg rename to apps/client/src/static/icons/light/dumpster-fire.svg diff --git a/src/static/icons/light/dumpster.svg b/apps/client/src/static/icons/light/dumpster.svg similarity index 100% rename from src/static/icons/light/dumpster.svg rename to apps/client/src/static/icons/light/dumpster.svg diff --git a/src/static/icons/light/dungeon.svg b/apps/client/src/static/icons/light/dungeon.svg similarity index 100% rename from src/static/icons/light/dungeon.svg rename to apps/client/src/static/icons/light/dungeon.svg diff --git a/src/static/icons/light/ear-muffs.svg b/apps/client/src/static/icons/light/ear-muffs.svg similarity index 100% rename from src/static/icons/light/ear-muffs.svg rename to apps/client/src/static/icons/light/ear-muffs.svg diff --git a/src/static/icons/light/ear.svg b/apps/client/src/static/icons/light/ear.svg similarity index 100% rename from src/static/icons/light/ear.svg rename to apps/client/src/static/icons/light/ear.svg diff --git a/src/static/icons/light/eclipse-alt.svg b/apps/client/src/static/icons/light/eclipse-alt.svg similarity index 100% rename from src/static/icons/light/eclipse-alt.svg rename to apps/client/src/static/icons/light/eclipse-alt.svg diff --git a/src/static/icons/light/eclipse.svg b/apps/client/src/static/icons/light/eclipse.svg similarity index 100% rename from src/static/icons/light/eclipse.svg rename to apps/client/src/static/icons/light/eclipse.svg diff --git a/src/static/icons/light/edit.svg b/apps/client/src/static/icons/light/edit.svg similarity index 100% rename from src/static/icons/light/edit.svg rename to apps/client/src/static/icons/light/edit.svg diff --git a/src/static/icons/light/egg-fried.svg b/apps/client/src/static/icons/light/egg-fried.svg similarity index 100% rename from src/static/icons/light/egg-fried.svg rename to apps/client/src/static/icons/light/egg-fried.svg diff --git a/src/static/icons/light/egg.svg b/apps/client/src/static/icons/light/egg.svg similarity index 100% rename from src/static/icons/light/egg.svg rename to apps/client/src/static/icons/light/egg.svg diff --git a/src/static/icons/light/eject.svg b/apps/client/src/static/icons/light/eject.svg similarity index 100% rename from src/static/icons/light/eject.svg rename to apps/client/src/static/icons/light/eject.svg diff --git a/src/static/icons/light/elephant.svg b/apps/client/src/static/icons/light/elephant.svg similarity index 100% rename from src/static/icons/light/elephant.svg rename to apps/client/src/static/icons/light/elephant.svg diff --git a/src/static/icons/light/ellipsis-h-alt.svg b/apps/client/src/static/icons/light/ellipsis-h-alt.svg similarity index 100% rename from src/static/icons/light/ellipsis-h-alt.svg rename to apps/client/src/static/icons/light/ellipsis-h-alt.svg diff --git a/src/static/icons/light/ellipsis-h.svg b/apps/client/src/static/icons/light/ellipsis-h.svg similarity index 100% rename from src/static/icons/light/ellipsis-h.svg rename to apps/client/src/static/icons/light/ellipsis-h.svg diff --git a/src/static/icons/light/ellipsis-v-alt.svg b/apps/client/src/static/icons/light/ellipsis-v-alt.svg similarity index 100% rename from src/static/icons/light/ellipsis-v-alt.svg rename to apps/client/src/static/icons/light/ellipsis-v-alt.svg diff --git a/src/static/icons/light/ellipsis-v.svg b/apps/client/src/static/icons/light/ellipsis-v.svg similarity index 100% rename from src/static/icons/light/ellipsis-v.svg rename to apps/client/src/static/icons/light/ellipsis-v.svg diff --git a/src/static/icons/light/empty-set.svg b/apps/client/src/static/icons/light/empty-set.svg similarity index 100% rename from src/static/icons/light/empty-set.svg rename to apps/client/src/static/icons/light/empty-set.svg diff --git a/src/static/icons/light/engine-warning.svg b/apps/client/src/static/icons/light/engine-warning.svg similarity index 100% rename from src/static/icons/light/engine-warning.svg rename to apps/client/src/static/icons/light/engine-warning.svg diff --git a/src/static/icons/light/envelope-open-dollar.svg b/apps/client/src/static/icons/light/envelope-open-dollar.svg similarity index 100% rename from src/static/icons/light/envelope-open-dollar.svg rename to apps/client/src/static/icons/light/envelope-open-dollar.svg diff --git a/src/static/icons/light/envelope-open-text.svg b/apps/client/src/static/icons/light/envelope-open-text.svg similarity index 100% rename from src/static/icons/light/envelope-open-text.svg rename to apps/client/src/static/icons/light/envelope-open-text.svg diff --git a/src/static/icons/light/envelope-open.svg b/apps/client/src/static/icons/light/envelope-open.svg similarity index 100% rename from src/static/icons/light/envelope-open.svg rename to apps/client/src/static/icons/light/envelope-open.svg diff --git a/src/static/icons/light/envelope-square.svg b/apps/client/src/static/icons/light/envelope-square.svg similarity index 100% rename from src/static/icons/light/envelope-square.svg rename to apps/client/src/static/icons/light/envelope-square.svg diff --git a/src/static/icons/light/envelope.svg b/apps/client/src/static/icons/light/envelope.svg similarity index 100% rename from src/static/icons/light/envelope.svg rename to apps/client/src/static/icons/light/envelope.svg diff --git a/src/static/icons/light/equals.svg b/apps/client/src/static/icons/light/equals.svg similarity index 100% rename from src/static/icons/light/equals.svg rename to apps/client/src/static/icons/light/equals.svg diff --git a/src/static/icons/light/eraser.svg b/apps/client/src/static/icons/light/eraser.svg similarity index 100% rename from src/static/icons/light/eraser.svg rename to apps/client/src/static/icons/light/eraser.svg diff --git a/src/static/icons/light/ethernet.svg b/apps/client/src/static/icons/light/ethernet.svg similarity index 100% rename from src/static/icons/light/ethernet.svg rename to apps/client/src/static/icons/light/ethernet.svg diff --git a/src/static/icons/light/euro-sign.svg b/apps/client/src/static/icons/light/euro-sign.svg similarity index 100% rename from src/static/icons/light/euro-sign.svg rename to apps/client/src/static/icons/light/euro-sign.svg diff --git a/src/static/icons/light/exchange-alt.svg b/apps/client/src/static/icons/light/exchange-alt.svg similarity index 100% rename from src/static/icons/light/exchange-alt.svg rename to apps/client/src/static/icons/light/exchange-alt.svg diff --git a/src/static/icons/light/exchange.svg b/apps/client/src/static/icons/light/exchange.svg similarity index 100% rename from src/static/icons/light/exchange.svg rename to apps/client/src/static/icons/light/exchange.svg diff --git a/src/static/icons/light/exclamation-circle.svg b/apps/client/src/static/icons/light/exclamation-circle.svg similarity index 100% rename from src/static/icons/light/exclamation-circle.svg rename to apps/client/src/static/icons/light/exclamation-circle.svg diff --git a/src/static/icons/light/exclamation-square.svg b/apps/client/src/static/icons/light/exclamation-square.svg similarity index 100% rename from src/static/icons/light/exclamation-square.svg rename to apps/client/src/static/icons/light/exclamation-square.svg diff --git a/src/static/icons/light/exclamation-triangle.svg b/apps/client/src/static/icons/light/exclamation-triangle.svg similarity index 100% rename from src/static/icons/light/exclamation-triangle.svg rename to apps/client/src/static/icons/light/exclamation-triangle.svg diff --git a/src/static/icons/light/exclamation.svg b/apps/client/src/static/icons/light/exclamation.svg similarity index 100% rename from src/static/icons/light/exclamation.svg rename to apps/client/src/static/icons/light/exclamation.svg diff --git a/src/static/icons/light/expand-alt.svg b/apps/client/src/static/icons/light/expand-alt.svg similarity index 100% rename from src/static/icons/light/expand-alt.svg rename to apps/client/src/static/icons/light/expand-alt.svg diff --git a/src/static/icons/light/expand-arrows-alt.svg b/apps/client/src/static/icons/light/expand-arrows-alt.svg similarity index 100% rename from src/static/icons/light/expand-arrows-alt.svg rename to apps/client/src/static/icons/light/expand-arrows-alt.svg diff --git a/src/static/icons/light/expand-arrows.svg b/apps/client/src/static/icons/light/expand-arrows.svg similarity index 100% rename from src/static/icons/light/expand-arrows.svg rename to apps/client/src/static/icons/light/expand-arrows.svg diff --git a/src/static/icons/light/expand-wide.svg b/apps/client/src/static/icons/light/expand-wide.svg similarity index 100% rename from src/static/icons/light/expand-wide.svg rename to apps/client/src/static/icons/light/expand-wide.svg diff --git a/src/static/icons/light/expand.svg b/apps/client/src/static/icons/light/expand.svg similarity index 100% rename from src/static/icons/light/expand.svg rename to apps/client/src/static/icons/light/expand.svg diff --git a/src/static/icons/light/external-link-alt.svg b/apps/client/src/static/icons/light/external-link-alt.svg similarity index 100% rename from src/static/icons/light/external-link-alt.svg rename to apps/client/src/static/icons/light/external-link-alt.svg diff --git a/src/static/icons/light/external-link-square-alt.svg b/apps/client/src/static/icons/light/external-link-square-alt.svg similarity index 100% rename from src/static/icons/light/external-link-square-alt.svg rename to apps/client/src/static/icons/light/external-link-square-alt.svg diff --git a/src/static/icons/light/external-link-square.svg b/apps/client/src/static/icons/light/external-link-square.svg similarity index 100% rename from src/static/icons/light/external-link-square.svg rename to apps/client/src/static/icons/light/external-link-square.svg diff --git a/src/static/icons/light/external-link.svg b/apps/client/src/static/icons/light/external-link.svg similarity index 100% rename from src/static/icons/light/external-link.svg rename to apps/client/src/static/icons/light/external-link.svg diff --git a/src/static/icons/light/eye-dropper.svg b/apps/client/src/static/icons/light/eye-dropper.svg similarity index 100% rename from src/static/icons/light/eye-dropper.svg rename to apps/client/src/static/icons/light/eye-dropper.svg diff --git a/src/static/icons/light/eye-evil.svg b/apps/client/src/static/icons/light/eye-evil.svg similarity index 100% rename from src/static/icons/light/eye-evil.svg rename to apps/client/src/static/icons/light/eye-evil.svg diff --git a/src/static/icons/light/eye-slash.svg b/apps/client/src/static/icons/light/eye-slash.svg similarity index 100% rename from src/static/icons/light/eye-slash.svg rename to apps/client/src/static/icons/light/eye-slash.svg diff --git a/src/static/icons/light/eye.svg b/apps/client/src/static/icons/light/eye.svg similarity index 100% rename from src/static/icons/light/eye.svg rename to apps/client/src/static/icons/light/eye.svg diff --git a/src/static/icons/light/fan-table.svg b/apps/client/src/static/icons/light/fan-table.svg similarity index 100% rename from src/static/icons/light/fan-table.svg rename to apps/client/src/static/icons/light/fan-table.svg diff --git a/src/static/icons/light/fan.svg b/apps/client/src/static/icons/light/fan.svg similarity index 100% rename from src/static/icons/light/fan.svg rename to apps/client/src/static/icons/light/fan.svg diff --git a/src/static/icons/light/farm.svg b/apps/client/src/static/icons/light/farm.svg similarity index 100% rename from src/static/icons/light/farm.svg rename to apps/client/src/static/icons/light/farm.svg diff --git a/src/static/icons/light/fast-backward.svg b/apps/client/src/static/icons/light/fast-backward.svg similarity index 100% rename from src/static/icons/light/fast-backward.svg rename to apps/client/src/static/icons/light/fast-backward.svg diff --git a/src/static/icons/light/fast-forward.svg b/apps/client/src/static/icons/light/fast-forward.svg similarity index 100% rename from src/static/icons/light/fast-forward.svg rename to apps/client/src/static/icons/light/fast-forward.svg diff --git a/src/static/icons/light/faucet-drip.svg b/apps/client/src/static/icons/light/faucet-drip.svg similarity index 100% rename from src/static/icons/light/faucet-drip.svg rename to apps/client/src/static/icons/light/faucet-drip.svg diff --git a/src/static/icons/light/faucet.svg b/apps/client/src/static/icons/light/faucet.svg similarity index 100% rename from src/static/icons/light/faucet.svg rename to apps/client/src/static/icons/light/faucet.svg diff --git a/src/static/icons/light/fax.svg b/apps/client/src/static/icons/light/fax.svg similarity index 100% rename from src/static/icons/light/fax.svg rename to apps/client/src/static/icons/light/fax.svg diff --git a/src/static/icons/light/feather-alt.svg b/apps/client/src/static/icons/light/feather-alt.svg similarity index 100% rename from src/static/icons/light/feather-alt.svg rename to apps/client/src/static/icons/light/feather-alt.svg diff --git a/src/static/icons/light/feather.svg b/apps/client/src/static/icons/light/feather.svg similarity index 100% rename from src/static/icons/light/feather.svg rename to apps/client/src/static/icons/light/feather.svg diff --git a/src/static/icons/light/female.svg b/apps/client/src/static/icons/light/female.svg similarity index 100% rename from src/static/icons/light/female.svg rename to apps/client/src/static/icons/light/female.svg diff --git a/src/static/icons/light/field-hockey.svg b/apps/client/src/static/icons/light/field-hockey.svg similarity index 100% rename from src/static/icons/light/field-hockey.svg rename to apps/client/src/static/icons/light/field-hockey.svg diff --git a/src/static/icons/light/fighter-jet.svg b/apps/client/src/static/icons/light/fighter-jet.svg similarity index 100% rename from src/static/icons/light/fighter-jet.svg rename to apps/client/src/static/icons/light/fighter-jet.svg diff --git a/src/static/icons/light/file-alt.svg b/apps/client/src/static/icons/light/file-alt.svg similarity index 100% rename from src/static/icons/light/file-alt.svg rename to apps/client/src/static/icons/light/file-alt.svg diff --git a/src/static/icons/light/file-archive.svg b/apps/client/src/static/icons/light/file-archive.svg similarity index 100% rename from src/static/icons/light/file-archive.svg rename to apps/client/src/static/icons/light/file-archive.svg diff --git a/src/static/icons/light/file-audio.svg b/apps/client/src/static/icons/light/file-audio.svg similarity index 100% rename from src/static/icons/light/file-audio.svg rename to apps/client/src/static/icons/light/file-audio.svg diff --git a/src/static/icons/light/file-certificate.svg b/apps/client/src/static/icons/light/file-certificate.svg similarity index 100% rename from src/static/icons/light/file-certificate.svg rename to apps/client/src/static/icons/light/file-certificate.svg diff --git a/src/static/icons/light/file-chart-line.svg b/apps/client/src/static/icons/light/file-chart-line.svg similarity index 100% rename from src/static/icons/light/file-chart-line.svg rename to apps/client/src/static/icons/light/file-chart-line.svg diff --git a/src/static/icons/light/file-chart-pie.svg b/apps/client/src/static/icons/light/file-chart-pie.svg similarity index 100% rename from src/static/icons/light/file-chart-pie.svg rename to apps/client/src/static/icons/light/file-chart-pie.svg diff --git a/src/static/icons/light/file-check.svg b/apps/client/src/static/icons/light/file-check.svg similarity index 100% rename from src/static/icons/light/file-check.svg rename to apps/client/src/static/icons/light/file-check.svg diff --git a/src/static/icons/light/file-code.svg b/apps/client/src/static/icons/light/file-code.svg similarity index 100% rename from src/static/icons/light/file-code.svg rename to apps/client/src/static/icons/light/file-code.svg diff --git a/src/static/icons/light/file-contract.svg b/apps/client/src/static/icons/light/file-contract.svg similarity index 100% rename from src/static/icons/light/file-contract.svg rename to apps/client/src/static/icons/light/file-contract.svg diff --git a/src/static/icons/light/file-csv.svg b/apps/client/src/static/icons/light/file-csv.svg similarity index 100% rename from src/static/icons/light/file-csv.svg rename to apps/client/src/static/icons/light/file-csv.svg diff --git a/src/static/icons/light/file-download.svg b/apps/client/src/static/icons/light/file-download.svg similarity index 100% rename from src/static/icons/light/file-download.svg rename to apps/client/src/static/icons/light/file-download.svg diff --git a/src/static/icons/light/file-edit.svg b/apps/client/src/static/icons/light/file-edit.svg similarity index 100% rename from src/static/icons/light/file-edit.svg rename to apps/client/src/static/icons/light/file-edit.svg diff --git a/src/static/icons/light/file-excel.svg b/apps/client/src/static/icons/light/file-excel.svg similarity index 100% rename from src/static/icons/light/file-excel.svg rename to apps/client/src/static/icons/light/file-excel.svg diff --git a/src/static/icons/light/file-exclamation.svg b/apps/client/src/static/icons/light/file-exclamation.svg similarity index 100% rename from src/static/icons/light/file-exclamation.svg rename to apps/client/src/static/icons/light/file-exclamation.svg diff --git a/src/static/icons/light/file-export.svg b/apps/client/src/static/icons/light/file-export.svg similarity index 100% rename from src/static/icons/light/file-export.svg rename to apps/client/src/static/icons/light/file-export.svg diff --git a/src/static/icons/light/file-image.svg b/apps/client/src/static/icons/light/file-image.svg similarity index 100% rename from src/static/icons/light/file-image.svg rename to apps/client/src/static/icons/light/file-image.svg diff --git a/src/static/icons/light/file-import.svg b/apps/client/src/static/icons/light/file-import.svg similarity index 100% rename from src/static/icons/light/file-import.svg rename to apps/client/src/static/icons/light/file-import.svg diff --git a/src/static/icons/light/file-invoice-dollar.svg b/apps/client/src/static/icons/light/file-invoice-dollar.svg similarity index 100% rename from src/static/icons/light/file-invoice-dollar.svg rename to apps/client/src/static/icons/light/file-invoice-dollar.svg diff --git a/src/static/icons/light/file-invoice.svg b/apps/client/src/static/icons/light/file-invoice.svg similarity index 100% rename from src/static/icons/light/file-invoice.svg rename to apps/client/src/static/icons/light/file-invoice.svg diff --git a/src/static/icons/light/file-medical-alt.svg b/apps/client/src/static/icons/light/file-medical-alt.svg similarity index 100% rename from src/static/icons/light/file-medical-alt.svg rename to apps/client/src/static/icons/light/file-medical-alt.svg diff --git a/src/static/icons/light/file-medical.svg b/apps/client/src/static/icons/light/file-medical.svg similarity index 100% rename from src/static/icons/light/file-medical.svg rename to apps/client/src/static/icons/light/file-medical.svg diff --git a/src/static/icons/light/file-minus.svg b/apps/client/src/static/icons/light/file-minus.svg similarity index 100% rename from src/static/icons/light/file-minus.svg rename to apps/client/src/static/icons/light/file-minus.svg diff --git a/src/static/icons/light/file-music.svg b/apps/client/src/static/icons/light/file-music.svg similarity index 100% rename from src/static/icons/light/file-music.svg rename to apps/client/src/static/icons/light/file-music.svg diff --git a/src/static/icons/light/file-pdf.svg b/apps/client/src/static/icons/light/file-pdf.svg similarity index 100% rename from src/static/icons/light/file-pdf.svg rename to apps/client/src/static/icons/light/file-pdf.svg diff --git a/src/static/icons/light/file-plus.svg b/apps/client/src/static/icons/light/file-plus.svg similarity index 100% rename from src/static/icons/light/file-plus.svg rename to apps/client/src/static/icons/light/file-plus.svg diff --git a/src/static/icons/light/file-powerpoint.svg b/apps/client/src/static/icons/light/file-powerpoint.svg similarity index 100% rename from src/static/icons/light/file-powerpoint.svg rename to apps/client/src/static/icons/light/file-powerpoint.svg diff --git a/src/static/icons/light/file-prescription.svg b/apps/client/src/static/icons/light/file-prescription.svg similarity index 100% rename from src/static/icons/light/file-prescription.svg rename to apps/client/src/static/icons/light/file-prescription.svg diff --git a/src/static/icons/light/file-search.svg b/apps/client/src/static/icons/light/file-search.svg similarity index 100% rename from src/static/icons/light/file-search.svg rename to apps/client/src/static/icons/light/file-search.svg diff --git a/src/static/icons/light/file-signature.svg b/apps/client/src/static/icons/light/file-signature.svg similarity index 100% rename from src/static/icons/light/file-signature.svg rename to apps/client/src/static/icons/light/file-signature.svg diff --git a/src/static/icons/light/file-spreadsheet.svg b/apps/client/src/static/icons/light/file-spreadsheet.svg similarity index 100% rename from src/static/icons/light/file-spreadsheet.svg rename to apps/client/src/static/icons/light/file-spreadsheet.svg diff --git a/src/static/icons/light/file-times.svg b/apps/client/src/static/icons/light/file-times.svg similarity index 100% rename from src/static/icons/light/file-times.svg rename to apps/client/src/static/icons/light/file-times.svg diff --git a/src/static/icons/light/file-upload.svg b/apps/client/src/static/icons/light/file-upload.svg similarity index 100% rename from src/static/icons/light/file-upload.svg rename to apps/client/src/static/icons/light/file-upload.svg diff --git a/src/static/icons/light/file-user.svg b/apps/client/src/static/icons/light/file-user.svg similarity index 100% rename from src/static/icons/light/file-user.svg rename to apps/client/src/static/icons/light/file-user.svg diff --git a/src/static/icons/light/file-video.svg b/apps/client/src/static/icons/light/file-video.svg similarity index 100% rename from src/static/icons/light/file-video.svg rename to apps/client/src/static/icons/light/file-video.svg diff --git a/src/static/icons/light/file-word.svg b/apps/client/src/static/icons/light/file-word.svg similarity index 100% rename from src/static/icons/light/file-word.svg rename to apps/client/src/static/icons/light/file-word.svg diff --git a/src/static/icons/light/file.svg b/apps/client/src/static/icons/light/file.svg similarity index 100% rename from src/static/icons/light/file.svg rename to apps/client/src/static/icons/light/file.svg diff --git a/src/static/icons/light/files-medical.svg b/apps/client/src/static/icons/light/files-medical.svg similarity index 100% rename from src/static/icons/light/files-medical.svg rename to apps/client/src/static/icons/light/files-medical.svg diff --git a/src/static/icons/light/fill-drip.svg b/apps/client/src/static/icons/light/fill-drip.svg similarity index 100% rename from src/static/icons/light/fill-drip.svg rename to apps/client/src/static/icons/light/fill-drip.svg diff --git a/src/static/icons/light/fill.svg b/apps/client/src/static/icons/light/fill.svg similarity index 100% rename from src/static/icons/light/fill.svg rename to apps/client/src/static/icons/light/fill.svg diff --git a/src/static/icons/light/film-alt.svg b/apps/client/src/static/icons/light/film-alt.svg similarity index 100% rename from src/static/icons/light/film-alt.svg rename to apps/client/src/static/icons/light/film-alt.svg diff --git a/src/static/icons/light/film-canister.svg b/apps/client/src/static/icons/light/film-canister.svg similarity index 100% rename from src/static/icons/light/film-canister.svg rename to apps/client/src/static/icons/light/film-canister.svg diff --git a/src/static/icons/light/film.svg b/apps/client/src/static/icons/light/film.svg similarity index 100% rename from src/static/icons/light/film.svg rename to apps/client/src/static/icons/light/film.svg diff --git a/src/static/icons/light/filter.svg b/apps/client/src/static/icons/light/filter.svg similarity index 100% rename from src/static/icons/light/filter.svg rename to apps/client/src/static/icons/light/filter.svg diff --git a/src/static/icons/light/fingerprint.svg b/apps/client/src/static/icons/light/fingerprint.svg similarity index 100% rename from src/static/icons/light/fingerprint.svg rename to apps/client/src/static/icons/light/fingerprint.svg diff --git a/src/static/icons/light/fire-alt.svg b/apps/client/src/static/icons/light/fire-alt.svg similarity index 100% rename from src/static/icons/light/fire-alt.svg rename to apps/client/src/static/icons/light/fire-alt.svg diff --git a/src/static/icons/light/fire-extinguisher.svg b/apps/client/src/static/icons/light/fire-extinguisher.svg similarity index 100% rename from src/static/icons/light/fire-extinguisher.svg rename to apps/client/src/static/icons/light/fire-extinguisher.svg diff --git a/src/static/icons/light/fire-smoke.svg b/apps/client/src/static/icons/light/fire-smoke.svg similarity index 100% rename from src/static/icons/light/fire-smoke.svg rename to apps/client/src/static/icons/light/fire-smoke.svg diff --git a/src/static/icons/light/fire.svg b/apps/client/src/static/icons/light/fire.svg similarity index 100% rename from src/static/icons/light/fire.svg rename to apps/client/src/static/icons/light/fire.svg diff --git a/src/static/icons/light/fireplace.svg b/apps/client/src/static/icons/light/fireplace.svg similarity index 100% rename from src/static/icons/light/fireplace.svg rename to apps/client/src/static/icons/light/fireplace.svg diff --git a/src/static/icons/light/first-aid.svg b/apps/client/src/static/icons/light/first-aid.svg similarity index 100% rename from src/static/icons/light/first-aid.svg rename to apps/client/src/static/icons/light/first-aid.svg diff --git a/src/static/icons/light/fish-cooked.svg b/apps/client/src/static/icons/light/fish-cooked.svg similarity index 100% rename from src/static/icons/light/fish-cooked.svg rename to apps/client/src/static/icons/light/fish-cooked.svg diff --git a/src/static/icons/light/fish.svg b/apps/client/src/static/icons/light/fish.svg similarity index 100% rename from src/static/icons/light/fish.svg rename to apps/client/src/static/icons/light/fish.svg diff --git a/src/static/icons/light/fist-raised.svg b/apps/client/src/static/icons/light/fist-raised.svg similarity index 100% rename from src/static/icons/light/fist-raised.svg rename to apps/client/src/static/icons/light/fist-raised.svg diff --git a/src/static/icons/light/flag-alt.svg b/apps/client/src/static/icons/light/flag-alt.svg similarity index 100% rename from src/static/icons/light/flag-alt.svg rename to apps/client/src/static/icons/light/flag-alt.svg diff --git a/src/static/icons/light/flag-checkered.svg b/apps/client/src/static/icons/light/flag-checkered.svg similarity index 100% rename from src/static/icons/light/flag-checkered.svg rename to apps/client/src/static/icons/light/flag-checkered.svg diff --git a/src/static/icons/light/flag-usa.svg b/apps/client/src/static/icons/light/flag-usa.svg similarity index 100% rename from src/static/icons/light/flag-usa.svg rename to apps/client/src/static/icons/light/flag-usa.svg diff --git a/src/static/icons/light/flag.svg b/apps/client/src/static/icons/light/flag.svg similarity index 100% rename from src/static/icons/light/flag.svg rename to apps/client/src/static/icons/light/flag.svg diff --git a/src/static/icons/light/flame.svg b/apps/client/src/static/icons/light/flame.svg similarity index 100% rename from src/static/icons/light/flame.svg rename to apps/client/src/static/icons/light/flame.svg diff --git a/src/static/icons/light/flashlight.svg b/apps/client/src/static/icons/light/flashlight.svg similarity index 100% rename from src/static/icons/light/flashlight.svg rename to apps/client/src/static/icons/light/flashlight.svg diff --git a/src/static/icons/light/flask-poison.svg b/apps/client/src/static/icons/light/flask-poison.svg similarity index 100% rename from src/static/icons/light/flask-poison.svg rename to apps/client/src/static/icons/light/flask-poison.svg diff --git a/src/static/icons/light/flask-potion.svg b/apps/client/src/static/icons/light/flask-potion.svg similarity index 100% rename from src/static/icons/light/flask-potion.svg rename to apps/client/src/static/icons/light/flask-potion.svg diff --git a/src/static/icons/light/flask.svg b/apps/client/src/static/icons/light/flask.svg similarity index 100% rename from src/static/icons/light/flask.svg rename to apps/client/src/static/icons/light/flask.svg diff --git a/src/static/icons/light/flower-daffodil.svg b/apps/client/src/static/icons/light/flower-daffodil.svg similarity index 100% rename from src/static/icons/light/flower-daffodil.svg rename to apps/client/src/static/icons/light/flower-daffodil.svg diff --git a/src/static/icons/light/flower-tulip.svg b/apps/client/src/static/icons/light/flower-tulip.svg similarity index 100% rename from src/static/icons/light/flower-tulip.svg rename to apps/client/src/static/icons/light/flower-tulip.svg diff --git a/src/static/icons/light/flower.svg b/apps/client/src/static/icons/light/flower.svg similarity index 100% rename from src/static/icons/light/flower.svg rename to apps/client/src/static/icons/light/flower.svg diff --git a/src/static/icons/light/flushed.svg b/apps/client/src/static/icons/light/flushed.svg similarity index 100% rename from src/static/icons/light/flushed.svg rename to apps/client/src/static/icons/light/flushed.svg diff --git a/src/static/icons/light/flute.svg b/apps/client/src/static/icons/light/flute.svg similarity index 100% rename from src/static/icons/light/flute.svg rename to apps/client/src/static/icons/light/flute.svg diff --git a/src/static/icons/light/flux-capacitor.svg b/apps/client/src/static/icons/light/flux-capacitor.svg similarity index 100% rename from src/static/icons/light/flux-capacitor.svg rename to apps/client/src/static/icons/light/flux-capacitor.svg diff --git a/src/static/icons/light/fog.svg b/apps/client/src/static/icons/light/fog.svg similarity index 100% rename from src/static/icons/light/fog.svg rename to apps/client/src/static/icons/light/fog.svg diff --git a/src/static/icons/light/folder-minus.svg b/apps/client/src/static/icons/light/folder-minus.svg similarity index 100% rename from src/static/icons/light/folder-minus.svg rename to apps/client/src/static/icons/light/folder-minus.svg diff --git a/src/static/icons/light/folder-open.svg b/apps/client/src/static/icons/light/folder-open.svg similarity index 100% rename from src/static/icons/light/folder-open.svg rename to apps/client/src/static/icons/light/folder-open.svg diff --git a/src/static/icons/light/folder-plus.svg b/apps/client/src/static/icons/light/folder-plus.svg similarity index 100% rename from src/static/icons/light/folder-plus.svg rename to apps/client/src/static/icons/light/folder-plus.svg diff --git a/src/static/icons/light/folder-times.svg b/apps/client/src/static/icons/light/folder-times.svg similarity index 100% rename from src/static/icons/light/folder-times.svg rename to apps/client/src/static/icons/light/folder-times.svg diff --git a/src/static/icons/light/folder-tree.svg b/apps/client/src/static/icons/light/folder-tree.svg similarity index 100% rename from src/static/icons/light/folder-tree.svg rename to apps/client/src/static/icons/light/folder-tree.svg diff --git a/src/static/icons/light/folder.svg b/apps/client/src/static/icons/light/folder.svg similarity index 100% rename from src/static/icons/light/folder.svg rename to apps/client/src/static/icons/light/folder.svg diff --git a/src/static/icons/light/folders.svg b/apps/client/src/static/icons/light/folders.svg similarity index 100% rename from src/static/icons/light/folders.svg rename to apps/client/src/static/icons/light/folders.svg diff --git a/src/static/icons/light/font-awesome-logo-full.svg b/apps/client/src/static/icons/light/font-awesome-logo-full.svg similarity index 100% rename from src/static/icons/light/font-awesome-logo-full.svg rename to apps/client/src/static/icons/light/font-awesome-logo-full.svg diff --git a/src/static/icons/light/font-case.svg b/apps/client/src/static/icons/light/font-case.svg similarity index 100% rename from src/static/icons/light/font-case.svg rename to apps/client/src/static/icons/light/font-case.svg diff --git a/src/static/icons/light/font.svg b/apps/client/src/static/icons/light/font.svg similarity index 100% rename from src/static/icons/light/font.svg rename to apps/client/src/static/icons/light/font.svg diff --git a/src/static/icons/light/football-ball.svg b/apps/client/src/static/icons/light/football-ball.svg similarity index 100% rename from src/static/icons/light/football-ball.svg rename to apps/client/src/static/icons/light/football-ball.svg diff --git a/src/static/icons/light/football-helmet.svg b/apps/client/src/static/icons/light/football-helmet.svg similarity index 100% rename from src/static/icons/light/football-helmet.svg rename to apps/client/src/static/icons/light/football-helmet.svg diff --git a/src/static/icons/light/forklift.svg b/apps/client/src/static/icons/light/forklift.svg similarity index 100% rename from src/static/icons/light/forklift.svg rename to apps/client/src/static/icons/light/forklift.svg diff --git a/src/static/icons/light/forward.svg b/apps/client/src/static/icons/light/forward.svg similarity index 100% rename from src/static/icons/light/forward.svg rename to apps/client/src/static/icons/light/forward.svg diff --git a/src/static/icons/light/fragile.svg b/apps/client/src/static/icons/light/fragile.svg similarity index 100% rename from src/static/icons/light/fragile.svg rename to apps/client/src/static/icons/light/fragile.svg diff --git a/src/static/icons/light/french-fries.svg b/apps/client/src/static/icons/light/french-fries.svg similarity index 100% rename from src/static/icons/light/french-fries.svg rename to apps/client/src/static/icons/light/french-fries.svg diff --git a/src/static/icons/light/frog.svg b/apps/client/src/static/icons/light/frog.svg similarity index 100% rename from src/static/icons/light/frog.svg rename to apps/client/src/static/icons/light/frog.svg diff --git a/src/static/icons/light/frosty-head.svg b/apps/client/src/static/icons/light/frosty-head.svg similarity index 100% rename from src/static/icons/light/frosty-head.svg rename to apps/client/src/static/icons/light/frosty-head.svg diff --git a/src/static/icons/light/frown-open.svg b/apps/client/src/static/icons/light/frown-open.svg similarity index 100% rename from src/static/icons/light/frown-open.svg rename to apps/client/src/static/icons/light/frown-open.svg diff --git a/src/static/icons/light/frown.svg b/apps/client/src/static/icons/light/frown.svg similarity index 100% rename from src/static/icons/light/frown.svg rename to apps/client/src/static/icons/light/frown.svg diff --git a/src/static/icons/light/function.svg b/apps/client/src/static/icons/light/function.svg similarity index 100% rename from src/static/icons/light/function.svg rename to apps/client/src/static/icons/light/function.svg diff --git a/src/static/icons/light/funnel-dollar.svg b/apps/client/src/static/icons/light/funnel-dollar.svg similarity index 100% rename from src/static/icons/light/funnel-dollar.svg rename to apps/client/src/static/icons/light/funnel-dollar.svg diff --git a/src/static/icons/light/futbol.svg b/apps/client/src/static/icons/light/futbol.svg similarity index 100% rename from src/static/icons/light/futbol.svg rename to apps/client/src/static/icons/light/futbol.svg diff --git a/src/static/icons/light/galaxy.svg b/apps/client/src/static/icons/light/galaxy.svg similarity index 100% rename from src/static/icons/light/galaxy.svg rename to apps/client/src/static/icons/light/galaxy.svg diff --git a/src/static/icons/light/game-board-alt.svg b/apps/client/src/static/icons/light/game-board-alt.svg similarity index 100% rename from src/static/icons/light/game-board-alt.svg rename to apps/client/src/static/icons/light/game-board-alt.svg diff --git a/src/static/icons/light/game-board.svg b/apps/client/src/static/icons/light/game-board.svg similarity index 100% rename from src/static/icons/light/game-board.svg rename to apps/client/src/static/icons/light/game-board.svg diff --git a/src/static/icons/light/game-console-handheld.svg b/apps/client/src/static/icons/light/game-console-handheld.svg similarity index 100% rename from src/static/icons/light/game-console-handheld.svg rename to apps/client/src/static/icons/light/game-console-handheld.svg diff --git a/src/static/icons/light/gamepad-alt.svg b/apps/client/src/static/icons/light/gamepad-alt.svg similarity index 100% rename from src/static/icons/light/gamepad-alt.svg rename to apps/client/src/static/icons/light/gamepad-alt.svg diff --git a/src/static/icons/light/gamepad.svg b/apps/client/src/static/icons/light/gamepad.svg similarity index 100% rename from src/static/icons/light/gamepad.svg rename to apps/client/src/static/icons/light/gamepad.svg diff --git a/src/static/icons/light/garage-car.svg b/apps/client/src/static/icons/light/garage-car.svg similarity index 100% rename from src/static/icons/light/garage-car.svg rename to apps/client/src/static/icons/light/garage-car.svg diff --git a/src/static/icons/light/garage-open.svg b/apps/client/src/static/icons/light/garage-open.svg similarity index 100% rename from src/static/icons/light/garage-open.svg rename to apps/client/src/static/icons/light/garage-open.svg diff --git a/src/static/icons/light/garage.svg b/apps/client/src/static/icons/light/garage.svg similarity index 100% rename from src/static/icons/light/garage.svg rename to apps/client/src/static/icons/light/garage.svg diff --git a/src/static/icons/light/gas-pump-slash.svg b/apps/client/src/static/icons/light/gas-pump-slash.svg similarity index 100% rename from src/static/icons/light/gas-pump-slash.svg rename to apps/client/src/static/icons/light/gas-pump-slash.svg diff --git a/src/static/icons/light/gas-pump.svg b/apps/client/src/static/icons/light/gas-pump.svg similarity index 100% rename from src/static/icons/light/gas-pump.svg rename to apps/client/src/static/icons/light/gas-pump.svg diff --git a/src/static/icons/light/gavel.svg b/apps/client/src/static/icons/light/gavel.svg similarity index 100% rename from src/static/icons/light/gavel.svg rename to apps/client/src/static/icons/light/gavel.svg diff --git a/src/static/icons/light/gem.svg b/apps/client/src/static/icons/light/gem.svg similarity index 100% rename from src/static/icons/light/gem.svg rename to apps/client/src/static/icons/light/gem.svg diff --git a/src/static/icons/light/genderless.svg b/apps/client/src/static/icons/light/genderless.svg similarity index 100% rename from src/static/icons/light/genderless.svg rename to apps/client/src/static/icons/light/genderless.svg diff --git a/src/static/icons/light/ghost.svg b/apps/client/src/static/icons/light/ghost.svg similarity index 100% rename from src/static/icons/light/ghost.svg rename to apps/client/src/static/icons/light/ghost.svg diff --git a/src/static/icons/light/gift-card.svg b/apps/client/src/static/icons/light/gift-card.svg similarity index 100% rename from src/static/icons/light/gift-card.svg rename to apps/client/src/static/icons/light/gift-card.svg diff --git a/src/static/icons/light/gift.svg b/apps/client/src/static/icons/light/gift.svg similarity index 100% rename from src/static/icons/light/gift.svg rename to apps/client/src/static/icons/light/gift.svg diff --git a/src/static/icons/light/gifts.svg b/apps/client/src/static/icons/light/gifts.svg similarity index 100% rename from src/static/icons/light/gifts.svg rename to apps/client/src/static/icons/light/gifts.svg diff --git a/src/static/icons/light/gingerbread-man.svg b/apps/client/src/static/icons/light/gingerbread-man.svg similarity index 100% rename from src/static/icons/light/gingerbread-man.svg rename to apps/client/src/static/icons/light/gingerbread-man.svg diff --git a/src/static/icons/light/glass-champagne.svg b/apps/client/src/static/icons/light/glass-champagne.svg similarity index 100% rename from src/static/icons/light/glass-champagne.svg rename to apps/client/src/static/icons/light/glass-champagne.svg diff --git a/src/static/icons/light/glass-cheers.svg b/apps/client/src/static/icons/light/glass-cheers.svg similarity index 100% rename from src/static/icons/light/glass-cheers.svg rename to apps/client/src/static/icons/light/glass-cheers.svg diff --git a/src/static/icons/light/glass-citrus.svg b/apps/client/src/static/icons/light/glass-citrus.svg similarity index 100% rename from src/static/icons/light/glass-citrus.svg rename to apps/client/src/static/icons/light/glass-citrus.svg diff --git a/src/static/icons/light/glass-martini-alt.svg b/apps/client/src/static/icons/light/glass-martini-alt.svg similarity index 100% rename from src/static/icons/light/glass-martini-alt.svg rename to apps/client/src/static/icons/light/glass-martini-alt.svg diff --git a/src/static/icons/light/glass-martini.svg b/apps/client/src/static/icons/light/glass-martini.svg similarity index 100% rename from src/static/icons/light/glass-martini.svg rename to apps/client/src/static/icons/light/glass-martini.svg diff --git a/src/static/icons/light/glass-whiskey-rocks.svg b/apps/client/src/static/icons/light/glass-whiskey-rocks.svg similarity index 100% rename from src/static/icons/light/glass-whiskey-rocks.svg rename to apps/client/src/static/icons/light/glass-whiskey-rocks.svg diff --git a/src/static/icons/light/glass-whiskey.svg b/apps/client/src/static/icons/light/glass-whiskey.svg similarity index 100% rename from src/static/icons/light/glass-whiskey.svg rename to apps/client/src/static/icons/light/glass-whiskey.svg diff --git a/src/static/icons/light/glass.svg b/apps/client/src/static/icons/light/glass.svg similarity index 100% rename from src/static/icons/light/glass.svg rename to apps/client/src/static/icons/light/glass.svg diff --git a/src/static/icons/light/glasses-alt.svg b/apps/client/src/static/icons/light/glasses-alt.svg similarity index 100% rename from src/static/icons/light/glasses-alt.svg rename to apps/client/src/static/icons/light/glasses-alt.svg diff --git a/src/static/icons/light/glasses.svg b/apps/client/src/static/icons/light/glasses.svg similarity index 100% rename from src/static/icons/light/glasses.svg rename to apps/client/src/static/icons/light/glasses.svg diff --git a/src/static/icons/light/globe-africa.svg b/apps/client/src/static/icons/light/globe-africa.svg similarity index 100% rename from src/static/icons/light/globe-africa.svg rename to apps/client/src/static/icons/light/globe-africa.svg diff --git a/src/static/icons/light/globe-americas.svg b/apps/client/src/static/icons/light/globe-americas.svg similarity index 100% rename from src/static/icons/light/globe-americas.svg rename to apps/client/src/static/icons/light/globe-americas.svg diff --git a/src/static/icons/light/globe-asia.svg b/apps/client/src/static/icons/light/globe-asia.svg similarity index 100% rename from src/static/icons/light/globe-asia.svg rename to apps/client/src/static/icons/light/globe-asia.svg diff --git a/src/static/icons/light/globe-europe.svg b/apps/client/src/static/icons/light/globe-europe.svg similarity index 100% rename from src/static/icons/light/globe-europe.svg rename to apps/client/src/static/icons/light/globe-europe.svg diff --git a/src/static/icons/light/globe-snow.svg b/apps/client/src/static/icons/light/globe-snow.svg similarity index 100% rename from src/static/icons/light/globe-snow.svg rename to apps/client/src/static/icons/light/globe-snow.svg diff --git a/src/static/icons/light/globe-stand.svg b/apps/client/src/static/icons/light/globe-stand.svg similarity index 100% rename from src/static/icons/light/globe-stand.svg rename to apps/client/src/static/icons/light/globe-stand.svg diff --git a/src/static/icons/light/globe.svg b/apps/client/src/static/icons/light/globe.svg similarity index 100% rename from src/static/icons/light/globe.svg rename to apps/client/src/static/icons/light/globe.svg diff --git a/src/static/icons/light/golf-ball.svg b/apps/client/src/static/icons/light/golf-ball.svg similarity index 100% rename from src/static/icons/light/golf-ball.svg rename to apps/client/src/static/icons/light/golf-ball.svg diff --git a/src/static/icons/light/golf-club.svg b/apps/client/src/static/icons/light/golf-club.svg similarity index 100% rename from src/static/icons/light/golf-club.svg rename to apps/client/src/static/icons/light/golf-club.svg diff --git a/src/static/icons/light/gopuram.svg b/apps/client/src/static/icons/light/gopuram.svg similarity index 100% rename from src/static/icons/light/gopuram.svg rename to apps/client/src/static/icons/light/gopuram.svg diff --git a/src/static/icons/light/graduation-cap.svg b/apps/client/src/static/icons/light/graduation-cap.svg similarity index 100% rename from src/static/icons/light/graduation-cap.svg rename to apps/client/src/static/icons/light/graduation-cap.svg diff --git a/src/static/icons/light/gramophone.svg b/apps/client/src/static/icons/light/gramophone.svg similarity index 100% rename from src/static/icons/light/gramophone.svg rename to apps/client/src/static/icons/light/gramophone.svg diff --git a/src/static/icons/light/greater-than-equal.svg b/apps/client/src/static/icons/light/greater-than-equal.svg similarity index 100% rename from src/static/icons/light/greater-than-equal.svg rename to apps/client/src/static/icons/light/greater-than-equal.svg diff --git a/src/static/icons/light/greater-than.svg b/apps/client/src/static/icons/light/greater-than.svg similarity index 100% rename from src/static/icons/light/greater-than.svg rename to apps/client/src/static/icons/light/greater-than.svg diff --git a/src/static/icons/light/grimace.svg b/apps/client/src/static/icons/light/grimace.svg similarity index 100% rename from src/static/icons/light/grimace.svg rename to apps/client/src/static/icons/light/grimace.svg diff --git a/src/static/icons/light/grin-alt.svg b/apps/client/src/static/icons/light/grin-alt.svg similarity index 100% rename from src/static/icons/light/grin-alt.svg rename to apps/client/src/static/icons/light/grin-alt.svg diff --git a/src/static/icons/light/grin-beam-sweat.svg b/apps/client/src/static/icons/light/grin-beam-sweat.svg similarity index 100% rename from src/static/icons/light/grin-beam-sweat.svg rename to apps/client/src/static/icons/light/grin-beam-sweat.svg diff --git a/src/static/icons/light/grin-beam.svg b/apps/client/src/static/icons/light/grin-beam.svg similarity index 100% rename from src/static/icons/light/grin-beam.svg rename to apps/client/src/static/icons/light/grin-beam.svg diff --git a/src/static/icons/light/grin-hearts.svg b/apps/client/src/static/icons/light/grin-hearts.svg similarity index 100% rename from src/static/icons/light/grin-hearts.svg rename to apps/client/src/static/icons/light/grin-hearts.svg diff --git a/src/static/icons/light/grin-squint-tears.svg b/apps/client/src/static/icons/light/grin-squint-tears.svg similarity index 100% rename from src/static/icons/light/grin-squint-tears.svg rename to apps/client/src/static/icons/light/grin-squint-tears.svg diff --git a/src/static/icons/light/grin-squint.svg b/apps/client/src/static/icons/light/grin-squint.svg similarity index 100% rename from src/static/icons/light/grin-squint.svg rename to apps/client/src/static/icons/light/grin-squint.svg diff --git a/src/static/icons/light/grin-stars.svg b/apps/client/src/static/icons/light/grin-stars.svg similarity index 100% rename from src/static/icons/light/grin-stars.svg rename to apps/client/src/static/icons/light/grin-stars.svg diff --git a/src/static/icons/light/grin-tears.svg b/apps/client/src/static/icons/light/grin-tears.svg similarity index 100% rename from src/static/icons/light/grin-tears.svg rename to apps/client/src/static/icons/light/grin-tears.svg diff --git a/src/static/icons/light/grin-tongue-squint.svg b/apps/client/src/static/icons/light/grin-tongue-squint.svg similarity index 100% rename from src/static/icons/light/grin-tongue-squint.svg rename to apps/client/src/static/icons/light/grin-tongue-squint.svg diff --git a/src/static/icons/light/grin-tongue-wink.svg b/apps/client/src/static/icons/light/grin-tongue-wink.svg similarity index 100% rename from src/static/icons/light/grin-tongue-wink.svg rename to apps/client/src/static/icons/light/grin-tongue-wink.svg diff --git a/src/static/icons/light/grin-tongue.svg b/apps/client/src/static/icons/light/grin-tongue.svg similarity index 100% rename from src/static/icons/light/grin-tongue.svg rename to apps/client/src/static/icons/light/grin-tongue.svg diff --git a/src/static/icons/light/grin-wink.svg b/apps/client/src/static/icons/light/grin-wink.svg similarity index 100% rename from src/static/icons/light/grin-wink.svg rename to apps/client/src/static/icons/light/grin-wink.svg diff --git a/src/static/icons/light/grin.svg b/apps/client/src/static/icons/light/grin.svg similarity index 100% rename from src/static/icons/light/grin.svg rename to apps/client/src/static/icons/light/grin.svg diff --git a/src/static/icons/light/grip-horizontal.svg b/apps/client/src/static/icons/light/grip-horizontal.svg similarity index 100% rename from src/static/icons/light/grip-horizontal.svg rename to apps/client/src/static/icons/light/grip-horizontal.svg diff --git a/src/static/icons/light/grip-lines-vertical.svg b/apps/client/src/static/icons/light/grip-lines-vertical.svg similarity index 100% rename from src/static/icons/light/grip-lines-vertical.svg rename to apps/client/src/static/icons/light/grip-lines-vertical.svg diff --git a/src/static/icons/light/grip-lines.svg b/apps/client/src/static/icons/light/grip-lines.svg similarity index 100% rename from src/static/icons/light/grip-lines.svg rename to apps/client/src/static/icons/light/grip-lines.svg diff --git a/src/static/icons/light/grip-vertical.svg b/apps/client/src/static/icons/light/grip-vertical.svg similarity index 100% rename from src/static/icons/light/grip-vertical.svg rename to apps/client/src/static/icons/light/grip-vertical.svg diff --git a/src/static/icons/light/guitar-electric.svg b/apps/client/src/static/icons/light/guitar-electric.svg similarity index 100% rename from src/static/icons/light/guitar-electric.svg rename to apps/client/src/static/icons/light/guitar-electric.svg diff --git a/src/static/icons/light/guitar.svg b/apps/client/src/static/icons/light/guitar.svg similarity index 100% rename from src/static/icons/light/guitar.svg rename to apps/client/src/static/icons/light/guitar.svg diff --git a/src/static/icons/light/guitars.svg b/apps/client/src/static/icons/light/guitars.svg similarity index 100% rename from src/static/icons/light/guitars.svg rename to apps/client/src/static/icons/light/guitars.svg diff --git a/src/static/icons/light/h-square.svg b/apps/client/src/static/icons/light/h-square.svg similarity index 100% rename from src/static/icons/light/h-square.svg rename to apps/client/src/static/icons/light/h-square.svg diff --git a/src/static/icons/light/h1.svg b/apps/client/src/static/icons/light/h1.svg similarity index 100% rename from src/static/icons/light/h1.svg rename to apps/client/src/static/icons/light/h1.svg diff --git a/src/static/icons/light/h2.svg b/apps/client/src/static/icons/light/h2.svg similarity index 100% rename from src/static/icons/light/h2.svg rename to apps/client/src/static/icons/light/h2.svg diff --git a/src/static/icons/light/h3.svg b/apps/client/src/static/icons/light/h3.svg similarity index 100% rename from src/static/icons/light/h3.svg rename to apps/client/src/static/icons/light/h3.svg diff --git a/src/static/icons/light/h4.svg b/apps/client/src/static/icons/light/h4.svg similarity index 100% rename from src/static/icons/light/h4.svg rename to apps/client/src/static/icons/light/h4.svg diff --git a/src/static/icons/light/hamburger.svg b/apps/client/src/static/icons/light/hamburger.svg similarity index 100% rename from src/static/icons/light/hamburger.svg rename to apps/client/src/static/icons/light/hamburger.svg diff --git a/src/static/icons/light/hammer-war.svg b/apps/client/src/static/icons/light/hammer-war.svg similarity index 100% rename from src/static/icons/light/hammer-war.svg rename to apps/client/src/static/icons/light/hammer-war.svg diff --git a/src/static/icons/light/hammer.svg b/apps/client/src/static/icons/light/hammer.svg similarity index 100% rename from src/static/icons/light/hammer.svg rename to apps/client/src/static/icons/light/hammer.svg diff --git a/src/static/icons/light/hamsa.svg b/apps/client/src/static/icons/light/hamsa.svg similarity index 100% rename from src/static/icons/light/hamsa.svg rename to apps/client/src/static/icons/light/hamsa.svg diff --git a/src/static/icons/light/hand-heart.svg b/apps/client/src/static/icons/light/hand-heart.svg similarity index 100% rename from src/static/icons/light/hand-heart.svg rename to apps/client/src/static/icons/light/hand-heart.svg diff --git a/src/static/icons/light/hand-holding-box.svg b/apps/client/src/static/icons/light/hand-holding-box.svg similarity index 100% rename from src/static/icons/light/hand-holding-box.svg rename to apps/client/src/static/icons/light/hand-holding-box.svg diff --git a/src/static/icons/light/hand-holding-heart.svg b/apps/client/src/static/icons/light/hand-holding-heart.svg similarity index 100% rename from src/static/icons/light/hand-holding-heart.svg rename to apps/client/src/static/icons/light/hand-holding-heart.svg diff --git a/src/static/icons/light/hand-holding-magic.svg b/apps/client/src/static/icons/light/hand-holding-magic.svg similarity index 100% rename from src/static/icons/light/hand-holding-magic.svg rename to apps/client/src/static/icons/light/hand-holding-magic.svg diff --git a/src/static/icons/light/hand-holding-seedling.svg b/apps/client/src/static/icons/light/hand-holding-seedling.svg similarity index 100% rename from src/static/icons/light/hand-holding-seedling.svg rename to apps/client/src/static/icons/light/hand-holding-seedling.svg diff --git a/src/static/icons/light/hand-holding-usd.svg b/apps/client/src/static/icons/light/hand-holding-usd.svg similarity index 100% rename from src/static/icons/light/hand-holding-usd.svg rename to apps/client/src/static/icons/light/hand-holding-usd.svg diff --git a/src/static/icons/light/hand-holding-water.svg b/apps/client/src/static/icons/light/hand-holding-water.svg similarity index 100% rename from src/static/icons/light/hand-holding-water.svg rename to apps/client/src/static/icons/light/hand-holding-water.svg diff --git a/src/static/icons/light/hand-holding.svg b/apps/client/src/static/icons/light/hand-holding.svg similarity index 100% rename from src/static/icons/light/hand-holding.svg rename to apps/client/src/static/icons/light/hand-holding.svg diff --git a/src/static/icons/light/hand-lizard.svg b/apps/client/src/static/icons/light/hand-lizard.svg similarity index 100% rename from src/static/icons/light/hand-lizard.svg rename to apps/client/src/static/icons/light/hand-lizard.svg diff --git a/src/static/icons/light/hand-middle-finger.svg b/apps/client/src/static/icons/light/hand-middle-finger.svg similarity index 100% rename from src/static/icons/light/hand-middle-finger.svg rename to apps/client/src/static/icons/light/hand-middle-finger.svg diff --git a/src/static/icons/light/hand-paper.svg b/apps/client/src/static/icons/light/hand-paper.svg similarity index 100% rename from src/static/icons/light/hand-paper.svg rename to apps/client/src/static/icons/light/hand-paper.svg diff --git a/src/static/icons/light/hand-peace.svg b/apps/client/src/static/icons/light/hand-peace.svg similarity index 100% rename from src/static/icons/light/hand-peace.svg rename to apps/client/src/static/icons/light/hand-peace.svg diff --git a/src/static/icons/light/hand-point-down.svg b/apps/client/src/static/icons/light/hand-point-down.svg similarity index 100% rename from src/static/icons/light/hand-point-down.svg rename to apps/client/src/static/icons/light/hand-point-down.svg diff --git a/src/static/icons/light/hand-point-left.svg b/apps/client/src/static/icons/light/hand-point-left.svg similarity index 100% rename from src/static/icons/light/hand-point-left.svg rename to apps/client/src/static/icons/light/hand-point-left.svg diff --git a/src/static/icons/light/hand-point-right.svg b/apps/client/src/static/icons/light/hand-point-right.svg similarity index 100% rename from src/static/icons/light/hand-point-right.svg rename to apps/client/src/static/icons/light/hand-point-right.svg diff --git a/src/static/icons/light/hand-point-up.svg b/apps/client/src/static/icons/light/hand-point-up.svg similarity index 100% rename from src/static/icons/light/hand-point-up.svg rename to apps/client/src/static/icons/light/hand-point-up.svg diff --git a/src/static/icons/light/hand-pointer.svg b/apps/client/src/static/icons/light/hand-pointer.svg similarity index 100% rename from src/static/icons/light/hand-pointer.svg rename to apps/client/src/static/icons/light/hand-pointer.svg diff --git a/src/static/icons/light/hand-receiving.svg b/apps/client/src/static/icons/light/hand-receiving.svg similarity index 100% rename from src/static/icons/light/hand-receiving.svg rename to apps/client/src/static/icons/light/hand-receiving.svg diff --git a/src/static/icons/light/hand-rock.svg b/apps/client/src/static/icons/light/hand-rock.svg similarity index 100% rename from src/static/icons/light/hand-rock.svg rename to apps/client/src/static/icons/light/hand-rock.svg diff --git a/src/static/icons/light/hand-scissors.svg b/apps/client/src/static/icons/light/hand-scissors.svg similarity index 100% rename from src/static/icons/light/hand-scissors.svg rename to apps/client/src/static/icons/light/hand-scissors.svg diff --git a/src/static/icons/light/hand-spock.svg b/apps/client/src/static/icons/light/hand-spock.svg similarity index 100% rename from src/static/icons/light/hand-spock.svg rename to apps/client/src/static/icons/light/hand-spock.svg diff --git a/src/static/icons/light/hands-heart.svg b/apps/client/src/static/icons/light/hands-heart.svg similarity index 100% rename from src/static/icons/light/hands-heart.svg rename to apps/client/src/static/icons/light/hands-heart.svg diff --git a/src/static/icons/light/hands-helping.svg b/apps/client/src/static/icons/light/hands-helping.svg similarity index 100% rename from src/static/icons/light/hands-helping.svg rename to apps/client/src/static/icons/light/hands-helping.svg diff --git a/src/static/icons/light/hands-usd.svg b/apps/client/src/static/icons/light/hands-usd.svg similarity index 100% rename from src/static/icons/light/hands-usd.svg rename to apps/client/src/static/icons/light/hands-usd.svg diff --git a/src/static/icons/light/hands.svg b/apps/client/src/static/icons/light/hands.svg similarity index 100% rename from src/static/icons/light/hands.svg rename to apps/client/src/static/icons/light/hands.svg diff --git a/src/static/icons/light/handshake-alt.svg b/apps/client/src/static/icons/light/handshake-alt.svg similarity index 100% rename from src/static/icons/light/handshake-alt.svg rename to apps/client/src/static/icons/light/handshake-alt.svg diff --git a/src/static/icons/light/handshake.svg b/apps/client/src/static/icons/light/handshake.svg similarity index 100% rename from src/static/icons/light/handshake.svg rename to apps/client/src/static/icons/light/handshake.svg diff --git a/src/static/icons/light/hanukiah.svg b/apps/client/src/static/icons/light/hanukiah.svg similarity index 100% rename from src/static/icons/light/hanukiah.svg rename to apps/client/src/static/icons/light/hanukiah.svg diff --git a/src/static/icons/light/hard-hat.svg b/apps/client/src/static/icons/light/hard-hat.svg similarity index 100% rename from src/static/icons/light/hard-hat.svg rename to apps/client/src/static/icons/light/hard-hat.svg diff --git a/src/static/icons/light/hashtag.svg b/apps/client/src/static/icons/light/hashtag.svg similarity index 100% rename from src/static/icons/light/hashtag.svg rename to apps/client/src/static/icons/light/hashtag.svg diff --git a/src/static/icons/light/hat-chef.svg b/apps/client/src/static/icons/light/hat-chef.svg similarity index 100% rename from src/static/icons/light/hat-chef.svg rename to apps/client/src/static/icons/light/hat-chef.svg diff --git a/src/static/icons/light/hat-cowboy-side.svg b/apps/client/src/static/icons/light/hat-cowboy-side.svg similarity index 100% rename from src/static/icons/light/hat-cowboy-side.svg rename to apps/client/src/static/icons/light/hat-cowboy-side.svg diff --git a/src/static/icons/light/hat-cowboy.svg b/apps/client/src/static/icons/light/hat-cowboy.svg similarity index 100% rename from src/static/icons/light/hat-cowboy.svg rename to apps/client/src/static/icons/light/hat-cowboy.svg diff --git a/src/static/icons/light/hat-santa.svg b/apps/client/src/static/icons/light/hat-santa.svg similarity index 100% rename from src/static/icons/light/hat-santa.svg rename to apps/client/src/static/icons/light/hat-santa.svg diff --git a/src/static/icons/light/hat-winter.svg b/apps/client/src/static/icons/light/hat-winter.svg similarity index 100% rename from src/static/icons/light/hat-winter.svg rename to apps/client/src/static/icons/light/hat-winter.svg diff --git a/src/static/icons/light/hat-witch.svg b/apps/client/src/static/icons/light/hat-witch.svg similarity index 100% rename from src/static/icons/light/hat-witch.svg rename to apps/client/src/static/icons/light/hat-witch.svg diff --git a/src/static/icons/light/hat-wizard.svg b/apps/client/src/static/icons/light/hat-wizard.svg similarity index 100% rename from src/static/icons/light/hat-wizard.svg rename to apps/client/src/static/icons/light/hat-wizard.svg diff --git a/src/static/icons/light/hdd.svg b/apps/client/src/static/icons/light/hdd.svg similarity index 100% rename from src/static/icons/light/hdd.svg rename to apps/client/src/static/icons/light/hdd.svg diff --git a/src/static/icons/light/head-side-brain.svg b/apps/client/src/static/icons/light/head-side-brain.svg similarity index 100% rename from src/static/icons/light/head-side-brain.svg rename to apps/client/src/static/icons/light/head-side-brain.svg diff --git a/src/static/icons/light/head-side-headphones.svg b/apps/client/src/static/icons/light/head-side-headphones.svg similarity index 100% rename from src/static/icons/light/head-side-headphones.svg rename to apps/client/src/static/icons/light/head-side-headphones.svg diff --git a/src/static/icons/light/head-side-medical.svg b/apps/client/src/static/icons/light/head-side-medical.svg similarity index 100% rename from src/static/icons/light/head-side-medical.svg rename to apps/client/src/static/icons/light/head-side-medical.svg diff --git a/src/static/icons/light/head-side.svg b/apps/client/src/static/icons/light/head-side.svg similarity index 100% rename from src/static/icons/light/head-side.svg rename to apps/client/src/static/icons/light/head-side.svg diff --git a/src/static/icons/light/head-vr.svg b/apps/client/src/static/icons/light/head-vr.svg similarity index 100% rename from src/static/icons/light/head-vr.svg rename to apps/client/src/static/icons/light/head-vr.svg diff --git a/src/static/icons/light/heading.svg b/apps/client/src/static/icons/light/heading.svg similarity index 100% rename from src/static/icons/light/heading.svg rename to apps/client/src/static/icons/light/heading.svg diff --git a/src/static/icons/light/headphones-alt.svg b/apps/client/src/static/icons/light/headphones-alt.svg similarity index 100% rename from src/static/icons/light/headphones-alt.svg rename to apps/client/src/static/icons/light/headphones-alt.svg diff --git a/src/static/icons/light/headphones.svg b/apps/client/src/static/icons/light/headphones.svg similarity index 100% rename from src/static/icons/light/headphones.svg rename to apps/client/src/static/icons/light/headphones.svg diff --git a/src/static/icons/light/headset.svg b/apps/client/src/static/icons/light/headset.svg similarity index 100% rename from src/static/icons/light/headset.svg rename to apps/client/src/static/icons/light/headset.svg diff --git a/src/static/icons/light/heart-broken.svg b/apps/client/src/static/icons/light/heart-broken.svg similarity index 100% rename from src/static/icons/light/heart-broken.svg rename to apps/client/src/static/icons/light/heart-broken.svg diff --git a/src/static/icons/light/heart-circle.svg b/apps/client/src/static/icons/light/heart-circle.svg similarity index 100% rename from src/static/icons/light/heart-circle.svg rename to apps/client/src/static/icons/light/heart-circle.svg diff --git a/src/static/icons/light/heart-rate.svg b/apps/client/src/static/icons/light/heart-rate.svg similarity index 100% rename from src/static/icons/light/heart-rate.svg rename to apps/client/src/static/icons/light/heart-rate.svg diff --git a/src/static/icons/light/heart-square.svg b/apps/client/src/static/icons/light/heart-square.svg similarity index 100% rename from src/static/icons/light/heart-square.svg rename to apps/client/src/static/icons/light/heart-square.svg diff --git a/src/static/icons/light/heart.svg b/apps/client/src/static/icons/light/heart.svg similarity index 100% rename from src/static/icons/light/heart.svg rename to apps/client/src/static/icons/light/heart.svg diff --git a/src/static/icons/light/heartbeat.svg b/apps/client/src/static/icons/light/heartbeat.svg similarity index 100% rename from src/static/icons/light/heartbeat.svg rename to apps/client/src/static/icons/light/heartbeat.svg diff --git a/src/static/icons/light/heat.svg b/apps/client/src/static/icons/light/heat.svg similarity index 100% rename from src/static/icons/light/heat.svg rename to apps/client/src/static/icons/light/heat.svg diff --git a/src/static/icons/light/helicopter.svg b/apps/client/src/static/icons/light/helicopter.svg similarity index 100% rename from src/static/icons/light/helicopter.svg rename to apps/client/src/static/icons/light/helicopter.svg diff --git a/src/static/icons/light/helmet-battle.svg b/apps/client/src/static/icons/light/helmet-battle.svg similarity index 100% rename from src/static/icons/light/helmet-battle.svg rename to apps/client/src/static/icons/light/helmet-battle.svg diff --git a/src/static/icons/light/hexagon.svg b/apps/client/src/static/icons/light/hexagon.svg similarity index 100% rename from src/static/icons/light/hexagon.svg rename to apps/client/src/static/icons/light/hexagon.svg diff --git a/src/static/icons/light/highlighter.svg b/apps/client/src/static/icons/light/highlighter.svg similarity index 100% rename from src/static/icons/light/highlighter.svg rename to apps/client/src/static/icons/light/highlighter.svg diff --git a/src/static/icons/light/hiking.svg b/apps/client/src/static/icons/light/hiking.svg similarity index 100% rename from src/static/icons/light/hiking.svg rename to apps/client/src/static/icons/light/hiking.svg diff --git a/src/static/icons/light/hippo.svg b/apps/client/src/static/icons/light/hippo.svg similarity index 100% rename from src/static/icons/light/hippo.svg rename to apps/client/src/static/icons/light/hippo.svg diff --git a/src/static/icons/light/history.svg b/apps/client/src/static/icons/light/history.svg similarity index 100% rename from src/static/icons/light/history.svg rename to apps/client/src/static/icons/light/history.svg diff --git a/src/static/icons/light/hockey-mask.svg b/apps/client/src/static/icons/light/hockey-mask.svg similarity index 100% rename from src/static/icons/light/hockey-mask.svg rename to apps/client/src/static/icons/light/hockey-mask.svg diff --git a/src/static/icons/light/hockey-puck.svg b/apps/client/src/static/icons/light/hockey-puck.svg similarity index 100% rename from src/static/icons/light/hockey-puck.svg rename to apps/client/src/static/icons/light/hockey-puck.svg diff --git a/src/static/icons/light/hockey-sticks.svg b/apps/client/src/static/icons/light/hockey-sticks.svg similarity index 100% rename from src/static/icons/light/hockey-sticks.svg rename to apps/client/src/static/icons/light/hockey-sticks.svg diff --git a/src/static/icons/light/holly-berry.svg b/apps/client/src/static/icons/light/holly-berry.svg similarity index 100% rename from src/static/icons/light/holly-berry.svg rename to apps/client/src/static/icons/light/holly-berry.svg diff --git a/src/static/icons/light/home-alt.svg b/apps/client/src/static/icons/light/home-alt.svg similarity index 100% rename from src/static/icons/light/home-alt.svg rename to apps/client/src/static/icons/light/home-alt.svg diff --git a/src/static/icons/light/home-heart.svg b/apps/client/src/static/icons/light/home-heart.svg similarity index 100% rename from src/static/icons/light/home-heart.svg rename to apps/client/src/static/icons/light/home-heart.svg diff --git a/src/static/icons/light/home-lg-alt.svg b/apps/client/src/static/icons/light/home-lg-alt.svg similarity index 100% rename from src/static/icons/light/home-lg-alt.svg rename to apps/client/src/static/icons/light/home-lg-alt.svg diff --git a/src/static/icons/light/home-lg.svg b/apps/client/src/static/icons/light/home-lg.svg similarity index 100% rename from src/static/icons/light/home-lg.svg rename to apps/client/src/static/icons/light/home-lg.svg diff --git a/src/static/icons/light/home.svg b/apps/client/src/static/icons/light/home.svg similarity index 100% rename from src/static/icons/light/home.svg rename to apps/client/src/static/icons/light/home.svg diff --git a/src/static/icons/light/hood-cloak.svg b/apps/client/src/static/icons/light/hood-cloak.svg similarity index 100% rename from src/static/icons/light/hood-cloak.svg rename to apps/client/src/static/icons/light/hood-cloak.svg diff --git a/src/static/icons/light/horizontal-rule.svg b/apps/client/src/static/icons/light/horizontal-rule.svg similarity index 100% rename from src/static/icons/light/horizontal-rule.svg rename to apps/client/src/static/icons/light/horizontal-rule.svg diff --git a/src/static/icons/light/horse-head.svg b/apps/client/src/static/icons/light/horse-head.svg similarity index 100% rename from src/static/icons/light/horse-head.svg rename to apps/client/src/static/icons/light/horse-head.svg diff --git a/src/static/icons/light/horse-saddle.svg b/apps/client/src/static/icons/light/horse-saddle.svg similarity index 100% rename from src/static/icons/light/horse-saddle.svg rename to apps/client/src/static/icons/light/horse-saddle.svg diff --git a/src/static/icons/light/horse.svg b/apps/client/src/static/icons/light/horse.svg similarity index 100% rename from src/static/icons/light/horse.svg rename to apps/client/src/static/icons/light/horse.svg diff --git a/src/static/icons/light/hospital-alt.svg b/apps/client/src/static/icons/light/hospital-alt.svg similarity index 100% rename from src/static/icons/light/hospital-alt.svg rename to apps/client/src/static/icons/light/hospital-alt.svg diff --git a/src/static/icons/light/hospital-symbol.svg b/apps/client/src/static/icons/light/hospital-symbol.svg similarity index 100% rename from src/static/icons/light/hospital-symbol.svg rename to apps/client/src/static/icons/light/hospital-symbol.svg diff --git a/src/static/icons/light/hospital-user.svg b/apps/client/src/static/icons/light/hospital-user.svg similarity index 100% rename from src/static/icons/light/hospital-user.svg rename to apps/client/src/static/icons/light/hospital-user.svg diff --git a/src/static/icons/light/hospital.svg b/apps/client/src/static/icons/light/hospital.svg similarity index 100% rename from src/static/icons/light/hospital.svg rename to apps/client/src/static/icons/light/hospital.svg diff --git a/src/static/icons/light/hospitals.svg b/apps/client/src/static/icons/light/hospitals.svg similarity index 100% rename from src/static/icons/light/hospitals.svg rename to apps/client/src/static/icons/light/hospitals.svg diff --git a/src/static/icons/light/hot-tub.svg b/apps/client/src/static/icons/light/hot-tub.svg similarity index 100% rename from src/static/icons/light/hot-tub.svg rename to apps/client/src/static/icons/light/hot-tub.svg diff --git a/src/static/icons/light/hotdog.svg b/apps/client/src/static/icons/light/hotdog.svg similarity index 100% rename from src/static/icons/light/hotdog.svg rename to apps/client/src/static/icons/light/hotdog.svg diff --git a/src/static/icons/light/hotel.svg b/apps/client/src/static/icons/light/hotel.svg similarity index 100% rename from src/static/icons/light/hotel.svg rename to apps/client/src/static/icons/light/hotel.svg diff --git a/src/static/icons/light/hourglass-end.svg b/apps/client/src/static/icons/light/hourglass-end.svg similarity index 100% rename from src/static/icons/light/hourglass-end.svg rename to apps/client/src/static/icons/light/hourglass-end.svg diff --git a/src/static/icons/light/hourglass-half.svg b/apps/client/src/static/icons/light/hourglass-half.svg similarity index 100% rename from src/static/icons/light/hourglass-half.svg rename to apps/client/src/static/icons/light/hourglass-half.svg diff --git a/src/static/icons/light/hourglass-start.svg b/apps/client/src/static/icons/light/hourglass-start.svg similarity index 100% rename from src/static/icons/light/hourglass-start.svg rename to apps/client/src/static/icons/light/hourglass-start.svg diff --git a/src/static/icons/light/hourglass.svg b/apps/client/src/static/icons/light/hourglass.svg similarity index 100% rename from src/static/icons/light/hourglass.svg rename to apps/client/src/static/icons/light/hourglass.svg diff --git a/src/static/icons/light/house-damage.svg b/apps/client/src/static/icons/light/house-damage.svg similarity index 100% rename from src/static/icons/light/house-damage.svg rename to apps/client/src/static/icons/light/house-damage.svg diff --git a/src/static/icons/light/house-day.svg b/apps/client/src/static/icons/light/house-day.svg similarity index 100% rename from src/static/icons/light/house-day.svg rename to apps/client/src/static/icons/light/house-day.svg diff --git a/src/static/icons/light/house-flood.svg b/apps/client/src/static/icons/light/house-flood.svg similarity index 100% rename from src/static/icons/light/house-flood.svg rename to apps/client/src/static/icons/light/house-flood.svg diff --git a/src/static/icons/light/house-leave.svg b/apps/client/src/static/icons/light/house-leave.svg similarity index 100% rename from src/static/icons/light/house-leave.svg rename to apps/client/src/static/icons/light/house-leave.svg diff --git a/src/static/icons/light/house-night.svg b/apps/client/src/static/icons/light/house-night.svg similarity index 100% rename from src/static/icons/light/house-night.svg rename to apps/client/src/static/icons/light/house-night.svg diff --git a/src/static/icons/light/house-return.svg b/apps/client/src/static/icons/light/house-return.svg similarity index 100% rename from src/static/icons/light/house-return.svg rename to apps/client/src/static/icons/light/house-return.svg diff --git a/src/static/icons/light/house-signal.svg b/apps/client/src/static/icons/light/house-signal.svg similarity index 100% rename from src/static/icons/light/house-signal.svg rename to apps/client/src/static/icons/light/house-signal.svg diff --git a/src/static/icons/light/house.svg b/apps/client/src/static/icons/light/house.svg similarity index 100% rename from src/static/icons/light/house.svg rename to apps/client/src/static/icons/light/house.svg diff --git a/src/static/icons/light/hryvnia.svg b/apps/client/src/static/icons/light/hryvnia.svg similarity index 100% rename from src/static/icons/light/hryvnia.svg rename to apps/client/src/static/icons/light/hryvnia.svg diff --git a/src/static/icons/light/humidity.svg b/apps/client/src/static/icons/light/humidity.svg similarity index 100% rename from src/static/icons/light/humidity.svg rename to apps/client/src/static/icons/light/humidity.svg diff --git a/src/static/icons/light/hurricane.svg b/apps/client/src/static/icons/light/hurricane.svg similarity index 100% rename from src/static/icons/light/hurricane.svg rename to apps/client/src/static/icons/light/hurricane.svg diff --git a/src/static/icons/light/i-cursor.svg b/apps/client/src/static/icons/light/i-cursor.svg similarity index 100% rename from src/static/icons/light/i-cursor.svg rename to apps/client/src/static/icons/light/i-cursor.svg diff --git a/src/static/icons/light/ice-cream.svg b/apps/client/src/static/icons/light/ice-cream.svg similarity index 100% rename from src/static/icons/light/ice-cream.svg rename to apps/client/src/static/icons/light/ice-cream.svg diff --git a/src/static/icons/light/ice-skate.svg b/apps/client/src/static/icons/light/ice-skate.svg similarity index 100% rename from src/static/icons/light/ice-skate.svg rename to apps/client/src/static/icons/light/ice-skate.svg diff --git a/src/static/icons/light/icicles.svg b/apps/client/src/static/icons/light/icicles.svg similarity index 100% rename from src/static/icons/light/icicles.svg rename to apps/client/src/static/icons/light/icicles.svg diff --git a/src/static/icons/light/icons-alt.svg b/apps/client/src/static/icons/light/icons-alt.svg similarity index 100% rename from src/static/icons/light/icons-alt.svg rename to apps/client/src/static/icons/light/icons-alt.svg diff --git a/src/static/icons/light/icons.svg b/apps/client/src/static/icons/light/icons.svg similarity index 100% rename from src/static/icons/light/icons.svg rename to apps/client/src/static/icons/light/icons.svg diff --git a/src/static/icons/light/id-badge.svg b/apps/client/src/static/icons/light/id-badge.svg similarity index 100% rename from src/static/icons/light/id-badge.svg rename to apps/client/src/static/icons/light/id-badge.svg diff --git a/src/static/icons/light/id-card-alt.svg b/apps/client/src/static/icons/light/id-card-alt.svg similarity index 100% rename from src/static/icons/light/id-card-alt.svg rename to apps/client/src/static/icons/light/id-card-alt.svg diff --git a/src/static/icons/light/id-card.svg b/apps/client/src/static/icons/light/id-card.svg similarity index 100% rename from src/static/icons/light/id-card.svg rename to apps/client/src/static/icons/light/id-card.svg diff --git a/src/static/icons/light/igloo.svg b/apps/client/src/static/icons/light/igloo.svg similarity index 100% rename from src/static/icons/light/igloo.svg rename to apps/client/src/static/icons/light/igloo.svg diff --git a/src/static/icons/light/image-polaroid.svg b/apps/client/src/static/icons/light/image-polaroid.svg similarity index 100% rename from src/static/icons/light/image-polaroid.svg rename to apps/client/src/static/icons/light/image-polaroid.svg diff --git a/src/static/icons/light/image.svg b/apps/client/src/static/icons/light/image.svg similarity index 100% rename from src/static/icons/light/image.svg rename to apps/client/src/static/icons/light/image.svg diff --git a/src/static/icons/light/images.svg b/apps/client/src/static/icons/light/images.svg similarity index 100% rename from src/static/icons/light/images.svg rename to apps/client/src/static/icons/light/images.svg diff --git a/src/static/icons/light/inbox-in.svg b/apps/client/src/static/icons/light/inbox-in.svg similarity index 100% rename from src/static/icons/light/inbox-in.svg rename to apps/client/src/static/icons/light/inbox-in.svg diff --git a/src/static/icons/light/inbox-out.svg b/apps/client/src/static/icons/light/inbox-out.svg similarity index 100% rename from src/static/icons/light/inbox-out.svg rename to apps/client/src/static/icons/light/inbox-out.svg diff --git a/src/static/icons/light/inbox.svg b/apps/client/src/static/icons/light/inbox.svg similarity index 100% rename from src/static/icons/light/inbox.svg rename to apps/client/src/static/icons/light/inbox.svg diff --git a/src/static/icons/light/indent.svg b/apps/client/src/static/icons/light/indent.svg similarity index 100% rename from src/static/icons/light/indent.svg rename to apps/client/src/static/icons/light/indent.svg diff --git a/src/static/icons/light/industry-alt.svg b/apps/client/src/static/icons/light/industry-alt.svg similarity index 100% rename from src/static/icons/light/industry-alt.svg rename to apps/client/src/static/icons/light/industry-alt.svg diff --git a/src/static/icons/light/industry.svg b/apps/client/src/static/icons/light/industry.svg similarity index 100% rename from src/static/icons/light/industry.svg rename to apps/client/src/static/icons/light/industry.svg diff --git a/src/static/icons/light/infinity.svg b/apps/client/src/static/icons/light/infinity.svg similarity index 100% rename from src/static/icons/light/infinity.svg rename to apps/client/src/static/icons/light/infinity.svg diff --git a/src/static/icons/light/info-circle.svg b/apps/client/src/static/icons/light/info-circle.svg similarity index 100% rename from src/static/icons/light/info-circle.svg rename to apps/client/src/static/icons/light/info-circle.svg diff --git a/src/static/icons/light/info-square.svg b/apps/client/src/static/icons/light/info-square.svg similarity index 100% rename from src/static/icons/light/info-square.svg rename to apps/client/src/static/icons/light/info-square.svg diff --git a/src/static/icons/light/info.svg b/apps/client/src/static/icons/light/info.svg similarity index 100% rename from src/static/icons/light/info.svg rename to apps/client/src/static/icons/light/info.svg diff --git a/src/static/icons/light/inhaler.svg b/apps/client/src/static/icons/light/inhaler.svg similarity index 100% rename from src/static/icons/light/inhaler.svg rename to apps/client/src/static/icons/light/inhaler.svg diff --git a/src/static/icons/light/integral.svg b/apps/client/src/static/icons/light/integral.svg similarity index 100% rename from src/static/icons/light/integral.svg rename to apps/client/src/static/icons/light/integral.svg diff --git a/src/static/icons/light/intersection.svg b/apps/client/src/static/icons/light/intersection.svg similarity index 100% rename from src/static/icons/light/intersection.svg rename to apps/client/src/static/icons/light/intersection.svg diff --git a/src/static/icons/light/inventory.svg b/apps/client/src/static/icons/light/inventory.svg similarity index 100% rename from src/static/icons/light/inventory.svg rename to apps/client/src/static/icons/light/inventory.svg diff --git a/src/static/icons/light/island-tropical.svg b/apps/client/src/static/icons/light/island-tropical.svg similarity index 100% rename from src/static/icons/light/island-tropical.svg rename to apps/client/src/static/icons/light/island-tropical.svg diff --git a/src/static/icons/light/italic.svg b/apps/client/src/static/icons/light/italic.svg similarity index 100% rename from src/static/icons/light/italic.svg rename to apps/client/src/static/icons/light/italic.svg diff --git a/src/static/icons/light/jack-o-lantern.svg b/apps/client/src/static/icons/light/jack-o-lantern.svg similarity index 100% rename from src/static/icons/light/jack-o-lantern.svg rename to apps/client/src/static/icons/light/jack-o-lantern.svg diff --git a/src/static/icons/light/jedi.svg b/apps/client/src/static/icons/light/jedi.svg similarity index 100% rename from src/static/icons/light/jedi.svg rename to apps/client/src/static/icons/light/jedi.svg diff --git a/src/static/icons/light/joint.svg b/apps/client/src/static/icons/light/joint.svg similarity index 100% rename from src/static/icons/light/joint.svg rename to apps/client/src/static/icons/light/joint.svg diff --git a/src/static/icons/light/journal-whills.svg b/apps/client/src/static/icons/light/journal-whills.svg similarity index 100% rename from src/static/icons/light/journal-whills.svg rename to apps/client/src/static/icons/light/journal-whills.svg diff --git a/src/static/icons/light/joystick.svg b/apps/client/src/static/icons/light/joystick.svg similarity index 100% rename from src/static/icons/light/joystick.svg rename to apps/client/src/static/icons/light/joystick.svg diff --git a/src/static/icons/light/jug.svg b/apps/client/src/static/icons/light/jug.svg similarity index 100% rename from src/static/icons/light/jug.svg rename to apps/client/src/static/icons/light/jug.svg diff --git a/src/static/icons/light/kaaba.svg b/apps/client/src/static/icons/light/kaaba.svg similarity index 100% rename from src/static/icons/light/kaaba.svg rename to apps/client/src/static/icons/light/kaaba.svg diff --git a/src/static/icons/light/kazoo.svg b/apps/client/src/static/icons/light/kazoo.svg similarity index 100% rename from src/static/icons/light/kazoo.svg rename to apps/client/src/static/icons/light/kazoo.svg diff --git a/src/static/icons/light/kerning.svg b/apps/client/src/static/icons/light/kerning.svg similarity index 100% rename from src/static/icons/light/kerning.svg rename to apps/client/src/static/icons/light/kerning.svg diff --git a/src/static/icons/light/key-skeleton.svg b/apps/client/src/static/icons/light/key-skeleton.svg similarity index 100% rename from src/static/icons/light/key-skeleton.svg rename to apps/client/src/static/icons/light/key-skeleton.svg diff --git a/src/static/icons/light/key.svg b/apps/client/src/static/icons/light/key.svg similarity index 100% rename from src/static/icons/light/key.svg rename to apps/client/src/static/icons/light/key.svg diff --git a/src/static/icons/light/keyboard.svg b/apps/client/src/static/icons/light/keyboard.svg similarity index 100% rename from src/static/icons/light/keyboard.svg rename to apps/client/src/static/icons/light/keyboard.svg diff --git a/src/static/icons/light/keynote.svg b/apps/client/src/static/icons/light/keynote.svg similarity index 100% rename from src/static/icons/light/keynote.svg rename to apps/client/src/static/icons/light/keynote.svg diff --git a/src/static/icons/light/khanda.svg b/apps/client/src/static/icons/light/khanda.svg similarity index 100% rename from src/static/icons/light/khanda.svg rename to apps/client/src/static/icons/light/khanda.svg diff --git a/src/static/icons/light/kidneys.svg b/apps/client/src/static/icons/light/kidneys.svg similarity index 100% rename from src/static/icons/light/kidneys.svg rename to apps/client/src/static/icons/light/kidneys.svg diff --git a/src/static/icons/light/kiss-beam.svg b/apps/client/src/static/icons/light/kiss-beam.svg similarity index 100% rename from src/static/icons/light/kiss-beam.svg rename to apps/client/src/static/icons/light/kiss-beam.svg diff --git a/src/static/icons/light/kiss-wink-heart.svg b/apps/client/src/static/icons/light/kiss-wink-heart.svg similarity index 100% rename from src/static/icons/light/kiss-wink-heart.svg rename to apps/client/src/static/icons/light/kiss-wink-heart.svg diff --git a/src/static/icons/light/kiss.svg b/apps/client/src/static/icons/light/kiss.svg similarity index 100% rename from src/static/icons/light/kiss.svg rename to apps/client/src/static/icons/light/kiss.svg diff --git a/src/static/icons/light/kite.svg b/apps/client/src/static/icons/light/kite.svg similarity index 100% rename from src/static/icons/light/kite.svg rename to apps/client/src/static/icons/light/kite.svg diff --git a/src/static/icons/light/kiwi-bird.svg b/apps/client/src/static/icons/light/kiwi-bird.svg similarity index 100% rename from src/static/icons/light/kiwi-bird.svg rename to apps/client/src/static/icons/light/kiwi-bird.svg diff --git a/src/static/icons/light/knife-kitchen.svg b/apps/client/src/static/icons/light/knife-kitchen.svg similarity index 100% rename from src/static/icons/light/knife-kitchen.svg rename to apps/client/src/static/icons/light/knife-kitchen.svg diff --git a/src/static/icons/light/lambda.svg b/apps/client/src/static/icons/light/lambda.svg similarity index 100% rename from src/static/icons/light/lambda.svg rename to apps/client/src/static/icons/light/lambda.svg diff --git a/src/static/icons/light/lamp-desk.svg b/apps/client/src/static/icons/light/lamp-desk.svg similarity index 100% rename from src/static/icons/light/lamp-desk.svg rename to apps/client/src/static/icons/light/lamp-desk.svg diff --git a/src/static/icons/light/lamp-floor.svg b/apps/client/src/static/icons/light/lamp-floor.svg similarity index 100% rename from src/static/icons/light/lamp-floor.svg rename to apps/client/src/static/icons/light/lamp-floor.svg diff --git a/src/static/icons/light/lamp.svg b/apps/client/src/static/icons/light/lamp.svg similarity index 100% rename from src/static/icons/light/lamp.svg rename to apps/client/src/static/icons/light/lamp.svg diff --git a/src/static/icons/light/landmark-alt.svg b/apps/client/src/static/icons/light/landmark-alt.svg similarity index 100% rename from src/static/icons/light/landmark-alt.svg rename to apps/client/src/static/icons/light/landmark-alt.svg diff --git a/src/static/icons/light/landmark.svg b/apps/client/src/static/icons/light/landmark.svg similarity index 100% rename from src/static/icons/light/landmark.svg rename to apps/client/src/static/icons/light/landmark.svg diff --git a/src/static/icons/light/language.svg b/apps/client/src/static/icons/light/language.svg similarity index 100% rename from src/static/icons/light/language.svg rename to apps/client/src/static/icons/light/language.svg diff --git a/src/static/icons/light/laptop-code.svg b/apps/client/src/static/icons/light/laptop-code.svg similarity index 100% rename from src/static/icons/light/laptop-code.svg rename to apps/client/src/static/icons/light/laptop-code.svg diff --git a/src/static/icons/light/laptop-medical.svg b/apps/client/src/static/icons/light/laptop-medical.svg similarity index 100% rename from src/static/icons/light/laptop-medical.svg rename to apps/client/src/static/icons/light/laptop-medical.svg diff --git a/src/static/icons/light/laptop.svg b/apps/client/src/static/icons/light/laptop.svg similarity index 100% rename from src/static/icons/light/laptop.svg rename to apps/client/src/static/icons/light/laptop.svg diff --git a/src/static/icons/light/lasso.svg b/apps/client/src/static/icons/light/lasso.svg similarity index 100% rename from src/static/icons/light/lasso.svg rename to apps/client/src/static/icons/light/lasso.svg diff --git a/src/static/icons/light/laugh-beam.svg b/apps/client/src/static/icons/light/laugh-beam.svg similarity index 100% rename from src/static/icons/light/laugh-beam.svg rename to apps/client/src/static/icons/light/laugh-beam.svg diff --git a/src/static/icons/light/laugh-squint.svg b/apps/client/src/static/icons/light/laugh-squint.svg similarity index 100% rename from src/static/icons/light/laugh-squint.svg rename to apps/client/src/static/icons/light/laugh-squint.svg diff --git a/src/static/icons/light/laugh-wink.svg b/apps/client/src/static/icons/light/laugh-wink.svg similarity index 100% rename from src/static/icons/light/laugh-wink.svg rename to apps/client/src/static/icons/light/laugh-wink.svg diff --git a/src/static/icons/light/laugh.svg b/apps/client/src/static/icons/light/laugh.svg similarity index 100% rename from src/static/icons/light/laugh.svg rename to apps/client/src/static/icons/light/laugh.svg diff --git a/src/static/icons/light/layer-group.svg b/apps/client/src/static/icons/light/layer-group.svg similarity index 100% rename from src/static/icons/light/layer-group.svg rename to apps/client/src/static/icons/light/layer-group.svg diff --git a/src/static/icons/light/layer-minus.svg b/apps/client/src/static/icons/light/layer-minus.svg similarity index 100% rename from src/static/icons/light/layer-minus.svg rename to apps/client/src/static/icons/light/layer-minus.svg diff --git a/src/static/icons/light/layer-plus.svg b/apps/client/src/static/icons/light/layer-plus.svg similarity index 100% rename from src/static/icons/light/layer-plus.svg rename to apps/client/src/static/icons/light/layer-plus.svg diff --git a/src/static/icons/light/leaf-heart.svg b/apps/client/src/static/icons/light/leaf-heart.svg similarity index 100% rename from src/static/icons/light/leaf-heart.svg rename to apps/client/src/static/icons/light/leaf-heart.svg diff --git a/src/static/icons/light/leaf-maple.svg b/apps/client/src/static/icons/light/leaf-maple.svg similarity index 100% rename from src/static/icons/light/leaf-maple.svg rename to apps/client/src/static/icons/light/leaf-maple.svg diff --git a/src/static/icons/light/leaf-oak.svg b/apps/client/src/static/icons/light/leaf-oak.svg similarity index 100% rename from src/static/icons/light/leaf-oak.svg rename to apps/client/src/static/icons/light/leaf-oak.svg diff --git a/src/static/icons/light/leaf.svg b/apps/client/src/static/icons/light/leaf.svg similarity index 100% rename from src/static/icons/light/leaf.svg rename to apps/client/src/static/icons/light/leaf.svg diff --git a/src/static/icons/light/lemon.svg b/apps/client/src/static/icons/light/lemon.svg similarity index 100% rename from src/static/icons/light/lemon.svg rename to apps/client/src/static/icons/light/lemon.svg diff --git a/src/static/icons/light/less-than-equal.svg b/apps/client/src/static/icons/light/less-than-equal.svg similarity index 100% rename from src/static/icons/light/less-than-equal.svg rename to apps/client/src/static/icons/light/less-than-equal.svg diff --git a/src/static/icons/light/less-than.svg b/apps/client/src/static/icons/light/less-than.svg similarity index 100% rename from src/static/icons/light/less-than.svg rename to apps/client/src/static/icons/light/less-than.svg diff --git a/src/static/icons/light/level-down-alt.svg b/apps/client/src/static/icons/light/level-down-alt.svg similarity index 100% rename from src/static/icons/light/level-down-alt.svg rename to apps/client/src/static/icons/light/level-down-alt.svg diff --git a/src/static/icons/light/level-down.svg b/apps/client/src/static/icons/light/level-down.svg similarity index 100% rename from src/static/icons/light/level-down.svg rename to apps/client/src/static/icons/light/level-down.svg diff --git a/src/static/icons/light/level-up-alt.svg b/apps/client/src/static/icons/light/level-up-alt.svg similarity index 100% rename from src/static/icons/light/level-up-alt.svg rename to apps/client/src/static/icons/light/level-up-alt.svg diff --git a/src/static/icons/light/level-up.svg b/apps/client/src/static/icons/light/level-up.svg similarity index 100% rename from src/static/icons/light/level-up.svg rename to apps/client/src/static/icons/light/level-up.svg diff --git a/src/static/icons/light/life-ring.svg b/apps/client/src/static/icons/light/life-ring.svg similarity index 100% rename from src/static/icons/light/life-ring.svg rename to apps/client/src/static/icons/light/life-ring.svg diff --git a/src/static/icons/light/light-ceiling.svg b/apps/client/src/static/icons/light/light-ceiling.svg similarity index 100% rename from src/static/icons/light/light-ceiling.svg rename to apps/client/src/static/icons/light/light-ceiling.svg diff --git a/src/static/icons/light/light-switch-off.svg b/apps/client/src/static/icons/light/light-switch-off.svg similarity index 100% rename from src/static/icons/light/light-switch-off.svg rename to apps/client/src/static/icons/light/light-switch-off.svg diff --git a/src/static/icons/light/light-switch-on.svg b/apps/client/src/static/icons/light/light-switch-on.svg similarity index 100% rename from src/static/icons/light/light-switch-on.svg rename to apps/client/src/static/icons/light/light-switch-on.svg diff --git a/src/static/icons/light/light-switch.svg b/apps/client/src/static/icons/light/light-switch.svg similarity index 100% rename from src/static/icons/light/light-switch.svg rename to apps/client/src/static/icons/light/light-switch.svg diff --git a/src/static/icons/light/lightbulb-dollar.svg b/apps/client/src/static/icons/light/lightbulb-dollar.svg similarity index 100% rename from src/static/icons/light/lightbulb-dollar.svg rename to apps/client/src/static/icons/light/lightbulb-dollar.svg diff --git a/src/static/icons/light/lightbulb-exclamation.svg b/apps/client/src/static/icons/light/lightbulb-exclamation.svg similarity index 100% rename from src/static/icons/light/lightbulb-exclamation.svg rename to apps/client/src/static/icons/light/lightbulb-exclamation.svg diff --git a/src/static/icons/light/lightbulb-on.svg b/apps/client/src/static/icons/light/lightbulb-on.svg similarity index 100% rename from src/static/icons/light/lightbulb-on.svg rename to apps/client/src/static/icons/light/lightbulb-on.svg diff --git a/src/static/icons/light/lightbulb-slash.svg b/apps/client/src/static/icons/light/lightbulb-slash.svg similarity index 100% rename from src/static/icons/light/lightbulb-slash.svg rename to apps/client/src/static/icons/light/lightbulb-slash.svg diff --git a/src/static/icons/light/lightbulb.svg b/apps/client/src/static/icons/light/lightbulb.svg similarity index 100% rename from src/static/icons/light/lightbulb.svg rename to apps/client/src/static/icons/light/lightbulb.svg diff --git a/src/static/icons/light/lights-holiday.svg b/apps/client/src/static/icons/light/lights-holiday.svg similarity index 100% rename from src/static/icons/light/lights-holiday.svg rename to apps/client/src/static/icons/light/lights-holiday.svg diff --git a/src/static/icons/light/line-columns.svg b/apps/client/src/static/icons/light/line-columns.svg similarity index 100% rename from src/static/icons/light/line-columns.svg rename to apps/client/src/static/icons/light/line-columns.svg diff --git a/src/static/icons/light/line-height.svg b/apps/client/src/static/icons/light/line-height.svg similarity index 100% rename from src/static/icons/light/line-height.svg rename to apps/client/src/static/icons/light/line-height.svg diff --git a/src/static/icons/light/link.svg b/apps/client/src/static/icons/light/link.svg similarity index 100% rename from src/static/icons/light/link.svg rename to apps/client/src/static/icons/light/link.svg diff --git a/src/static/icons/light/lips.svg b/apps/client/src/static/icons/light/lips.svg similarity index 100% rename from src/static/icons/light/lips.svg rename to apps/client/src/static/icons/light/lips.svg diff --git a/src/static/icons/light/lira-sign.svg b/apps/client/src/static/icons/light/lira-sign.svg similarity index 100% rename from src/static/icons/light/lira-sign.svg rename to apps/client/src/static/icons/light/lira-sign.svg diff --git a/src/static/icons/light/list-alt.svg b/apps/client/src/static/icons/light/list-alt.svg similarity index 100% rename from src/static/icons/light/list-alt.svg rename to apps/client/src/static/icons/light/list-alt.svg diff --git a/src/static/icons/light/list-music.svg b/apps/client/src/static/icons/light/list-music.svg similarity index 100% rename from src/static/icons/light/list-music.svg rename to apps/client/src/static/icons/light/list-music.svg diff --git a/src/static/icons/light/list-ol.svg b/apps/client/src/static/icons/light/list-ol.svg similarity index 100% rename from src/static/icons/light/list-ol.svg rename to apps/client/src/static/icons/light/list-ol.svg diff --git a/src/static/icons/light/list-ul.svg b/apps/client/src/static/icons/light/list-ul.svg similarity index 100% rename from src/static/icons/light/list-ul.svg rename to apps/client/src/static/icons/light/list-ul.svg diff --git a/src/static/icons/light/list.svg b/apps/client/src/static/icons/light/list.svg similarity index 100% rename from src/static/icons/light/list.svg rename to apps/client/src/static/icons/light/list.svg diff --git a/src/static/icons/light/location-arrow.svg b/apps/client/src/static/icons/light/location-arrow.svg similarity index 100% rename from src/static/icons/light/location-arrow.svg rename to apps/client/src/static/icons/light/location-arrow.svg diff --git a/src/static/icons/light/location-circle.svg b/apps/client/src/static/icons/light/location-circle.svg similarity index 100% rename from src/static/icons/light/location-circle.svg rename to apps/client/src/static/icons/light/location-circle.svg diff --git a/src/static/icons/light/location-slash.svg b/apps/client/src/static/icons/light/location-slash.svg similarity index 100% rename from src/static/icons/light/location-slash.svg rename to apps/client/src/static/icons/light/location-slash.svg diff --git a/src/static/icons/light/location.svg b/apps/client/src/static/icons/light/location.svg similarity index 100% rename from src/static/icons/light/location.svg rename to apps/client/src/static/icons/light/location.svg diff --git a/src/static/icons/light/lock-alt.svg b/apps/client/src/static/icons/light/lock-alt.svg similarity index 100% rename from src/static/icons/light/lock-alt.svg rename to apps/client/src/static/icons/light/lock-alt.svg diff --git a/src/static/icons/light/lock-open-alt.svg b/apps/client/src/static/icons/light/lock-open-alt.svg similarity index 100% rename from src/static/icons/light/lock-open-alt.svg rename to apps/client/src/static/icons/light/lock-open-alt.svg diff --git a/src/static/icons/light/lock-open.svg b/apps/client/src/static/icons/light/lock-open.svg similarity index 100% rename from src/static/icons/light/lock-open.svg rename to apps/client/src/static/icons/light/lock-open.svg diff --git a/src/static/icons/light/lock.svg b/apps/client/src/static/icons/light/lock.svg similarity index 100% rename from src/static/icons/light/lock.svg rename to apps/client/src/static/icons/light/lock.svg diff --git a/src/static/icons/light/long-arrow-alt-down.svg b/apps/client/src/static/icons/light/long-arrow-alt-down.svg similarity index 100% rename from src/static/icons/light/long-arrow-alt-down.svg rename to apps/client/src/static/icons/light/long-arrow-alt-down.svg diff --git a/src/static/icons/light/long-arrow-alt-left.svg b/apps/client/src/static/icons/light/long-arrow-alt-left.svg similarity index 100% rename from src/static/icons/light/long-arrow-alt-left.svg rename to apps/client/src/static/icons/light/long-arrow-alt-left.svg diff --git a/src/static/icons/light/long-arrow-alt-right.svg b/apps/client/src/static/icons/light/long-arrow-alt-right.svg similarity index 100% rename from src/static/icons/light/long-arrow-alt-right.svg rename to apps/client/src/static/icons/light/long-arrow-alt-right.svg diff --git a/src/static/icons/light/long-arrow-alt-up.svg b/apps/client/src/static/icons/light/long-arrow-alt-up.svg similarity index 100% rename from src/static/icons/light/long-arrow-alt-up.svg rename to apps/client/src/static/icons/light/long-arrow-alt-up.svg diff --git a/src/static/icons/light/long-arrow-down.svg b/apps/client/src/static/icons/light/long-arrow-down.svg similarity index 100% rename from src/static/icons/light/long-arrow-down.svg rename to apps/client/src/static/icons/light/long-arrow-down.svg diff --git a/src/static/icons/light/long-arrow-left.svg b/apps/client/src/static/icons/light/long-arrow-left.svg similarity index 100% rename from src/static/icons/light/long-arrow-left.svg rename to apps/client/src/static/icons/light/long-arrow-left.svg diff --git a/src/static/icons/light/long-arrow-right.svg b/apps/client/src/static/icons/light/long-arrow-right.svg similarity index 100% rename from src/static/icons/light/long-arrow-right.svg rename to apps/client/src/static/icons/light/long-arrow-right.svg diff --git a/src/static/icons/light/long-arrow-up.svg b/apps/client/src/static/icons/light/long-arrow-up.svg similarity index 100% rename from src/static/icons/light/long-arrow-up.svg rename to apps/client/src/static/icons/light/long-arrow-up.svg diff --git a/src/static/icons/light/loveseat.svg b/apps/client/src/static/icons/light/loveseat.svg similarity index 100% rename from src/static/icons/light/loveseat.svg rename to apps/client/src/static/icons/light/loveseat.svg diff --git a/src/static/icons/light/low-vision.svg b/apps/client/src/static/icons/light/low-vision.svg similarity index 100% rename from src/static/icons/light/low-vision.svg rename to apps/client/src/static/icons/light/low-vision.svg diff --git a/src/static/icons/light/luchador.svg b/apps/client/src/static/icons/light/luchador.svg similarity index 100% rename from src/static/icons/light/luchador.svg rename to apps/client/src/static/icons/light/luchador.svg diff --git a/src/static/icons/light/luggage-cart.svg b/apps/client/src/static/icons/light/luggage-cart.svg similarity index 100% rename from src/static/icons/light/luggage-cart.svg rename to apps/client/src/static/icons/light/luggage-cart.svg diff --git a/src/static/icons/light/lungs.svg b/apps/client/src/static/icons/light/lungs.svg similarity index 100% rename from src/static/icons/light/lungs.svg rename to apps/client/src/static/icons/light/lungs.svg diff --git a/src/static/icons/light/mace.svg b/apps/client/src/static/icons/light/mace.svg similarity index 100% rename from src/static/icons/light/mace.svg rename to apps/client/src/static/icons/light/mace.svg diff --git a/src/static/icons/light/magic.svg b/apps/client/src/static/icons/light/magic.svg similarity index 100% rename from src/static/icons/light/magic.svg rename to apps/client/src/static/icons/light/magic.svg diff --git a/src/static/icons/light/magnet.svg b/apps/client/src/static/icons/light/magnet.svg similarity index 100% rename from src/static/icons/light/magnet.svg rename to apps/client/src/static/icons/light/magnet.svg diff --git a/src/static/icons/light/mail-bulk.svg b/apps/client/src/static/icons/light/mail-bulk.svg similarity index 100% rename from src/static/icons/light/mail-bulk.svg rename to apps/client/src/static/icons/light/mail-bulk.svg diff --git a/src/static/icons/light/mailbox.svg b/apps/client/src/static/icons/light/mailbox.svg similarity index 100% rename from src/static/icons/light/mailbox.svg rename to apps/client/src/static/icons/light/mailbox.svg diff --git a/src/static/icons/light/male.svg b/apps/client/src/static/icons/light/male.svg similarity index 100% rename from src/static/icons/light/male.svg rename to apps/client/src/static/icons/light/male.svg diff --git a/src/static/icons/light/mandolin.svg b/apps/client/src/static/icons/light/mandolin.svg similarity index 100% rename from src/static/icons/light/mandolin.svg rename to apps/client/src/static/icons/light/mandolin.svg diff --git a/src/static/icons/light/map-marked-alt.svg b/apps/client/src/static/icons/light/map-marked-alt.svg similarity index 100% rename from src/static/icons/light/map-marked-alt.svg rename to apps/client/src/static/icons/light/map-marked-alt.svg diff --git a/src/static/icons/light/map-marked.svg b/apps/client/src/static/icons/light/map-marked.svg similarity index 100% rename from src/static/icons/light/map-marked.svg rename to apps/client/src/static/icons/light/map-marked.svg diff --git a/src/static/icons/light/map-marker-alt-slash.svg b/apps/client/src/static/icons/light/map-marker-alt-slash.svg similarity index 100% rename from src/static/icons/light/map-marker-alt-slash.svg rename to apps/client/src/static/icons/light/map-marker-alt-slash.svg diff --git a/src/static/icons/light/map-marker-alt.svg b/apps/client/src/static/icons/light/map-marker-alt.svg similarity index 100% rename from src/static/icons/light/map-marker-alt.svg rename to apps/client/src/static/icons/light/map-marker-alt.svg diff --git a/src/static/icons/light/map-marker-check.svg b/apps/client/src/static/icons/light/map-marker-check.svg similarity index 100% rename from src/static/icons/light/map-marker-check.svg rename to apps/client/src/static/icons/light/map-marker-check.svg diff --git a/src/static/icons/light/map-marker-edit.svg b/apps/client/src/static/icons/light/map-marker-edit.svg similarity index 100% rename from src/static/icons/light/map-marker-edit.svg rename to apps/client/src/static/icons/light/map-marker-edit.svg diff --git a/src/static/icons/light/map-marker-exclamation.svg b/apps/client/src/static/icons/light/map-marker-exclamation.svg similarity index 100% rename from src/static/icons/light/map-marker-exclamation.svg rename to apps/client/src/static/icons/light/map-marker-exclamation.svg diff --git a/src/static/icons/light/map-marker-minus.svg b/apps/client/src/static/icons/light/map-marker-minus.svg similarity index 100% rename from src/static/icons/light/map-marker-minus.svg rename to apps/client/src/static/icons/light/map-marker-minus.svg diff --git a/src/static/icons/light/map-marker-plus.svg b/apps/client/src/static/icons/light/map-marker-plus.svg similarity index 100% rename from src/static/icons/light/map-marker-plus.svg rename to apps/client/src/static/icons/light/map-marker-plus.svg diff --git a/src/static/icons/light/map-marker-question.svg b/apps/client/src/static/icons/light/map-marker-question.svg similarity index 100% rename from src/static/icons/light/map-marker-question.svg rename to apps/client/src/static/icons/light/map-marker-question.svg diff --git a/src/static/icons/light/map-marker-slash.svg b/apps/client/src/static/icons/light/map-marker-slash.svg similarity index 100% rename from src/static/icons/light/map-marker-slash.svg rename to apps/client/src/static/icons/light/map-marker-slash.svg diff --git a/src/static/icons/light/map-marker-smile.svg b/apps/client/src/static/icons/light/map-marker-smile.svg similarity index 100% rename from src/static/icons/light/map-marker-smile.svg rename to apps/client/src/static/icons/light/map-marker-smile.svg diff --git a/src/static/icons/light/map-marker-times.svg b/apps/client/src/static/icons/light/map-marker-times.svg similarity index 100% rename from src/static/icons/light/map-marker-times.svg rename to apps/client/src/static/icons/light/map-marker-times.svg diff --git a/src/static/icons/light/map-marker.svg b/apps/client/src/static/icons/light/map-marker.svg similarity index 100% rename from src/static/icons/light/map-marker.svg rename to apps/client/src/static/icons/light/map-marker.svg diff --git a/src/static/icons/light/map-pin.svg b/apps/client/src/static/icons/light/map-pin.svg similarity index 100% rename from src/static/icons/light/map-pin.svg rename to apps/client/src/static/icons/light/map-pin.svg diff --git a/src/static/icons/light/map-signs.svg b/apps/client/src/static/icons/light/map-signs.svg similarity index 100% rename from src/static/icons/light/map-signs.svg rename to apps/client/src/static/icons/light/map-signs.svg diff --git a/src/static/icons/light/map.svg b/apps/client/src/static/icons/light/map.svg similarity index 100% rename from src/static/icons/light/map.svg rename to apps/client/src/static/icons/light/map.svg diff --git a/src/static/icons/light/marker.svg b/apps/client/src/static/icons/light/marker.svg similarity index 100% rename from src/static/icons/light/marker.svg rename to apps/client/src/static/icons/light/marker.svg diff --git a/src/static/icons/light/mars-double.svg b/apps/client/src/static/icons/light/mars-double.svg similarity index 100% rename from src/static/icons/light/mars-double.svg rename to apps/client/src/static/icons/light/mars-double.svg diff --git a/src/static/icons/light/mars-stroke-h.svg b/apps/client/src/static/icons/light/mars-stroke-h.svg similarity index 100% rename from src/static/icons/light/mars-stroke-h.svg rename to apps/client/src/static/icons/light/mars-stroke-h.svg diff --git a/src/static/icons/light/mars-stroke-v.svg b/apps/client/src/static/icons/light/mars-stroke-v.svg similarity index 100% rename from src/static/icons/light/mars-stroke-v.svg rename to apps/client/src/static/icons/light/mars-stroke-v.svg diff --git a/src/static/icons/light/mars-stroke.svg b/apps/client/src/static/icons/light/mars-stroke.svg similarity index 100% rename from src/static/icons/light/mars-stroke.svg rename to apps/client/src/static/icons/light/mars-stroke.svg diff --git a/src/static/icons/light/mars.svg b/apps/client/src/static/icons/light/mars.svg similarity index 100% rename from src/static/icons/light/mars.svg rename to apps/client/src/static/icons/light/mars.svg diff --git a/src/static/icons/light/mask.svg b/apps/client/src/static/icons/light/mask.svg similarity index 100% rename from src/static/icons/light/mask.svg rename to apps/client/src/static/icons/light/mask.svg diff --git a/src/static/icons/light/meat.svg b/apps/client/src/static/icons/light/meat.svg similarity index 100% rename from src/static/icons/light/meat.svg rename to apps/client/src/static/icons/light/meat.svg diff --git a/src/static/icons/light/medal.svg b/apps/client/src/static/icons/light/medal.svg similarity index 100% rename from src/static/icons/light/medal.svg rename to apps/client/src/static/icons/light/medal.svg diff --git a/src/static/icons/light/medkit.svg b/apps/client/src/static/icons/light/medkit.svg similarity index 100% rename from src/static/icons/light/medkit.svg rename to apps/client/src/static/icons/light/medkit.svg diff --git a/src/static/icons/light/megaphone.svg b/apps/client/src/static/icons/light/megaphone.svg similarity index 100% rename from src/static/icons/light/megaphone.svg rename to apps/client/src/static/icons/light/megaphone.svg diff --git a/src/static/icons/light/meh-blank.svg b/apps/client/src/static/icons/light/meh-blank.svg similarity index 100% rename from src/static/icons/light/meh-blank.svg rename to apps/client/src/static/icons/light/meh-blank.svg diff --git a/src/static/icons/light/meh-rolling-eyes.svg b/apps/client/src/static/icons/light/meh-rolling-eyes.svg similarity index 100% rename from src/static/icons/light/meh-rolling-eyes.svg rename to apps/client/src/static/icons/light/meh-rolling-eyes.svg diff --git a/src/static/icons/light/meh.svg b/apps/client/src/static/icons/light/meh.svg similarity index 100% rename from src/static/icons/light/meh.svg rename to apps/client/src/static/icons/light/meh.svg diff --git a/src/static/icons/light/memory.svg b/apps/client/src/static/icons/light/memory.svg similarity index 100% rename from src/static/icons/light/memory.svg rename to apps/client/src/static/icons/light/memory.svg diff --git a/src/static/icons/light/menorah.svg b/apps/client/src/static/icons/light/menorah.svg similarity index 100% rename from src/static/icons/light/menorah.svg rename to apps/client/src/static/icons/light/menorah.svg diff --git a/src/static/icons/light/mercury.svg b/apps/client/src/static/icons/light/mercury.svg similarity index 100% rename from src/static/icons/light/mercury.svg rename to apps/client/src/static/icons/light/mercury.svg diff --git a/src/static/icons/light/meteor.svg b/apps/client/src/static/icons/light/meteor.svg similarity index 100% rename from src/static/icons/light/meteor.svg rename to apps/client/src/static/icons/light/meteor.svg diff --git a/src/static/icons/light/microchip.svg b/apps/client/src/static/icons/light/microchip.svg similarity index 100% rename from src/static/icons/light/microchip.svg rename to apps/client/src/static/icons/light/microchip.svg diff --git a/src/static/icons/light/microphone-alt-slash.svg b/apps/client/src/static/icons/light/microphone-alt-slash.svg similarity index 100% rename from src/static/icons/light/microphone-alt-slash.svg rename to apps/client/src/static/icons/light/microphone-alt-slash.svg diff --git a/src/static/icons/light/microphone-alt.svg b/apps/client/src/static/icons/light/microphone-alt.svg similarity index 100% rename from src/static/icons/light/microphone-alt.svg rename to apps/client/src/static/icons/light/microphone-alt.svg diff --git a/src/static/icons/light/microphone-slash.svg b/apps/client/src/static/icons/light/microphone-slash.svg similarity index 100% rename from src/static/icons/light/microphone-slash.svg rename to apps/client/src/static/icons/light/microphone-slash.svg diff --git a/src/static/icons/light/microphone-stand.svg b/apps/client/src/static/icons/light/microphone-stand.svg similarity index 100% rename from src/static/icons/light/microphone-stand.svg rename to apps/client/src/static/icons/light/microphone-stand.svg diff --git a/src/static/icons/light/microphone.svg b/apps/client/src/static/icons/light/microphone.svg similarity index 100% rename from src/static/icons/light/microphone.svg rename to apps/client/src/static/icons/light/microphone.svg diff --git a/src/static/icons/light/microscope.svg b/apps/client/src/static/icons/light/microscope.svg similarity index 100% rename from src/static/icons/light/microscope.svg rename to apps/client/src/static/icons/light/microscope.svg diff --git a/src/static/icons/light/microwave.svg b/apps/client/src/static/icons/light/microwave.svg similarity index 100% rename from src/static/icons/light/microwave.svg rename to apps/client/src/static/icons/light/microwave.svg diff --git a/src/static/icons/light/mind-share.svg b/apps/client/src/static/icons/light/mind-share.svg similarity index 100% rename from src/static/icons/light/mind-share.svg rename to apps/client/src/static/icons/light/mind-share.svg diff --git a/src/static/icons/light/minus-circle.svg b/apps/client/src/static/icons/light/minus-circle.svg similarity index 100% rename from src/static/icons/light/minus-circle.svg rename to apps/client/src/static/icons/light/minus-circle.svg diff --git a/src/static/icons/light/minus-hexagon.svg b/apps/client/src/static/icons/light/minus-hexagon.svg similarity index 100% rename from src/static/icons/light/minus-hexagon.svg rename to apps/client/src/static/icons/light/minus-hexagon.svg diff --git a/src/static/icons/light/minus-octagon.svg b/apps/client/src/static/icons/light/minus-octagon.svg similarity index 100% rename from src/static/icons/light/minus-octagon.svg rename to apps/client/src/static/icons/light/minus-octagon.svg diff --git a/src/static/icons/light/minus-square.svg b/apps/client/src/static/icons/light/minus-square.svg similarity index 100% rename from src/static/icons/light/minus-square.svg rename to apps/client/src/static/icons/light/minus-square.svg diff --git a/src/static/icons/light/minus.svg b/apps/client/src/static/icons/light/minus.svg similarity index 100% rename from src/static/icons/light/minus.svg rename to apps/client/src/static/icons/light/minus.svg diff --git a/src/static/icons/light/mistletoe.svg b/apps/client/src/static/icons/light/mistletoe.svg similarity index 100% rename from src/static/icons/light/mistletoe.svg rename to apps/client/src/static/icons/light/mistletoe.svg diff --git a/src/static/icons/light/mitten.svg b/apps/client/src/static/icons/light/mitten.svg similarity index 100% rename from src/static/icons/light/mitten.svg rename to apps/client/src/static/icons/light/mitten.svg diff --git a/src/static/icons/light/mobile-alt.svg b/apps/client/src/static/icons/light/mobile-alt.svg similarity index 100% rename from src/static/icons/light/mobile-alt.svg rename to apps/client/src/static/icons/light/mobile-alt.svg diff --git a/src/static/icons/light/mobile-android-alt.svg b/apps/client/src/static/icons/light/mobile-android-alt.svg similarity index 100% rename from src/static/icons/light/mobile-android-alt.svg rename to apps/client/src/static/icons/light/mobile-android-alt.svg diff --git a/src/static/icons/light/mobile-android.svg b/apps/client/src/static/icons/light/mobile-android.svg similarity index 100% rename from src/static/icons/light/mobile-android.svg rename to apps/client/src/static/icons/light/mobile-android.svg diff --git a/src/static/icons/light/mobile.svg b/apps/client/src/static/icons/light/mobile.svg similarity index 100% rename from src/static/icons/light/mobile.svg rename to apps/client/src/static/icons/light/mobile.svg diff --git a/src/static/icons/light/money-bill-alt.svg b/apps/client/src/static/icons/light/money-bill-alt.svg similarity index 100% rename from src/static/icons/light/money-bill-alt.svg rename to apps/client/src/static/icons/light/money-bill-alt.svg diff --git a/src/static/icons/light/money-bill-wave-alt.svg b/apps/client/src/static/icons/light/money-bill-wave-alt.svg similarity index 100% rename from src/static/icons/light/money-bill-wave-alt.svg rename to apps/client/src/static/icons/light/money-bill-wave-alt.svg diff --git a/src/static/icons/light/money-bill-wave.svg b/apps/client/src/static/icons/light/money-bill-wave.svg similarity index 100% rename from src/static/icons/light/money-bill-wave.svg rename to apps/client/src/static/icons/light/money-bill-wave.svg diff --git a/src/static/icons/light/money-bill.svg b/apps/client/src/static/icons/light/money-bill.svg similarity index 100% rename from src/static/icons/light/money-bill.svg rename to apps/client/src/static/icons/light/money-bill.svg diff --git a/src/static/icons/light/money-check-alt.svg b/apps/client/src/static/icons/light/money-check-alt.svg similarity index 100% rename from src/static/icons/light/money-check-alt.svg rename to apps/client/src/static/icons/light/money-check-alt.svg diff --git a/src/static/icons/light/money-check-edit-alt.svg b/apps/client/src/static/icons/light/money-check-edit-alt.svg similarity index 100% rename from src/static/icons/light/money-check-edit-alt.svg rename to apps/client/src/static/icons/light/money-check-edit-alt.svg diff --git a/src/static/icons/light/money-check-edit.svg b/apps/client/src/static/icons/light/money-check-edit.svg similarity index 100% rename from src/static/icons/light/money-check-edit.svg rename to apps/client/src/static/icons/light/money-check-edit.svg diff --git a/src/static/icons/light/money-check.svg b/apps/client/src/static/icons/light/money-check.svg similarity index 100% rename from src/static/icons/light/money-check.svg rename to apps/client/src/static/icons/light/money-check.svg diff --git a/src/static/icons/light/monitor-heart-rate.svg b/apps/client/src/static/icons/light/monitor-heart-rate.svg similarity index 100% rename from src/static/icons/light/monitor-heart-rate.svg rename to apps/client/src/static/icons/light/monitor-heart-rate.svg diff --git a/src/static/icons/light/monkey.svg b/apps/client/src/static/icons/light/monkey.svg similarity index 100% rename from src/static/icons/light/monkey.svg rename to apps/client/src/static/icons/light/monkey.svg diff --git a/src/static/icons/light/monument.svg b/apps/client/src/static/icons/light/monument.svg similarity index 100% rename from src/static/icons/light/monument.svg rename to apps/client/src/static/icons/light/monument.svg diff --git a/src/static/icons/light/moon-cloud.svg b/apps/client/src/static/icons/light/moon-cloud.svg similarity index 100% rename from src/static/icons/light/moon-cloud.svg rename to apps/client/src/static/icons/light/moon-cloud.svg diff --git a/src/static/icons/light/moon-stars.svg b/apps/client/src/static/icons/light/moon-stars.svg similarity index 100% rename from src/static/icons/light/moon-stars.svg rename to apps/client/src/static/icons/light/moon-stars.svg diff --git a/src/static/icons/light/moon.svg b/apps/client/src/static/icons/light/moon.svg similarity index 100% rename from src/static/icons/light/moon.svg rename to apps/client/src/static/icons/light/moon.svg diff --git a/src/static/icons/light/mortar-pestle.svg b/apps/client/src/static/icons/light/mortar-pestle.svg similarity index 100% rename from src/static/icons/light/mortar-pestle.svg rename to apps/client/src/static/icons/light/mortar-pestle.svg diff --git a/src/static/icons/light/mosque.svg b/apps/client/src/static/icons/light/mosque.svg similarity index 100% rename from src/static/icons/light/mosque.svg rename to apps/client/src/static/icons/light/mosque.svg diff --git a/src/static/icons/light/motorcycle.svg b/apps/client/src/static/icons/light/motorcycle.svg similarity index 100% rename from src/static/icons/light/motorcycle.svg rename to apps/client/src/static/icons/light/motorcycle.svg diff --git a/src/static/icons/light/mountain.svg b/apps/client/src/static/icons/light/mountain.svg similarity index 100% rename from src/static/icons/light/mountain.svg rename to apps/client/src/static/icons/light/mountain.svg diff --git a/src/static/icons/light/mountains.svg b/apps/client/src/static/icons/light/mountains.svg similarity index 100% rename from src/static/icons/light/mountains.svg rename to apps/client/src/static/icons/light/mountains.svg diff --git a/src/static/icons/light/mouse-alt.svg b/apps/client/src/static/icons/light/mouse-alt.svg similarity index 100% rename from src/static/icons/light/mouse-alt.svg rename to apps/client/src/static/icons/light/mouse-alt.svg diff --git a/src/static/icons/light/mouse-pointer.svg b/apps/client/src/static/icons/light/mouse-pointer.svg similarity index 100% rename from src/static/icons/light/mouse-pointer.svg rename to apps/client/src/static/icons/light/mouse-pointer.svg diff --git a/src/static/icons/light/mouse.svg b/apps/client/src/static/icons/light/mouse.svg similarity index 100% rename from src/static/icons/light/mouse.svg rename to apps/client/src/static/icons/light/mouse.svg diff --git a/src/static/icons/light/mp3-player.svg b/apps/client/src/static/icons/light/mp3-player.svg similarity index 100% rename from src/static/icons/light/mp3-player.svg rename to apps/client/src/static/icons/light/mp3-player.svg diff --git a/src/static/icons/light/mug-hot.svg b/apps/client/src/static/icons/light/mug-hot.svg similarity index 100% rename from src/static/icons/light/mug-hot.svg rename to apps/client/src/static/icons/light/mug-hot.svg diff --git a/src/static/icons/light/mug-marshmallows.svg b/apps/client/src/static/icons/light/mug-marshmallows.svg similarity index 100% rename from src/static/icons/light/mug-marshmallows.svg rename to apps/client/src/static/icons/light/mug-marshmallows.svg diff --git a/src/static/icons/light/mug-tea.svg b/apps/client/src/static/icons/light/mug-tea.svg similarity index 100% rename from src/static/icons/light/mug-tea.svg rename to apps/client/src/static/icons/light/mug-tea.svg diff --git a/src/static/icons/light/mug.svg b/apps/client/src/static/icons/light/mug.svg similarity index 100% rename from src/static/icons/light/mug.svg rename to apps/client/src/static/icons/light/mug.svg diff --git a/src/static/icons/light/music-alt-slash.svg b/apps/client/src/static/icons/light/music-alt-slash.svg similarity index 100% rename from src/static/icons/light/music-alt-slash.svg rename to apps/client/src/static/icons/light/music-alt-slash.svg diff --git a/src/static/icons/light/music-alt.svg b/apps/client/src/static/icons/light/music-alt.svg similarity index 100% rename from src/static/icons/light/music-alt.svg rename to apps/client/src/static/icons/light/music-alt.svg diff --git a/src/static/icons/light/music-slash.svg b/apps/client/src/static/icons/light/music-slash.svg similarity index 100% rename from src/static/icons/light/music-slash.svg rename to apps/client/src/static/icons/light/music-slash.svg diff --git a/src/static/icons/light/music.svg b/apps/client/src/static/icons/light/music.svg similarity index 100% rename from src/static/icons/light/music.svg rename to apps/client/src/static/icons/light/music.svg diff --git a/src/static/icons/light/narwhal.svg b/apps/client/src/static/icons/light/narwhal.svg similarity index 100% rename from src/static/icons/light/narwhal.svg rename to apps/client/src/static/icons/light/narwhal.svg diff --git a/src/static/icons/light/network-wired.svg b/apps/client/src/static/icons/light/network-wired.svg similarity index 100% rename from src/static/icons/light/network-wired.svg rename to apps/client/src/static/icons/light/network-wired.svg diff --git a/src/static/icons/light/neuter.svg b/apps/client/src/static/icons/light/neuter.svg similarity index 100% rename from src/static/icons/light/neuter.svg rename to apps/client/src/static/icons/light/neuter.svg diff --git a/src/static/icons/light/newspaper.svg b/apps/client/src/static/icons/light/newspaper.svg similarity index 100% rename from src/static/icons/light/newspaper.svg rename to apps/client/src/static/icons/light/newspaper.svg diff --git a/src/static/icons/light/not-equal.svg b/apps/client/src/static/icons/light/not-equal.svg similarity index 100% rename from src/static/icons/light/not-equal.svg rename to apps/client/src/static/icons/light/not-equal.svg diff --git a/src/static/icons/light/notes-medical.svg b/apps/client/src/static/icons/light/notes-medical.svg similarity index 100% rename from src/static/icons/light/notes-medical.svg rename to apps/client/src/static/icons/light/notes-medical.svg diff --git a/src/static/icons/light/object-group.svg b/apps/client/src/static/icons/light/object-group.svg similarity index 100% rename from src/static/icons/light/object-group.svg rename to apps/client/src/static/icons/light/object-group.svg diff --git a/src/static/icons/light/object-ungroup.svg b/apps/client/src/static/icons/light/object-ungroup.svg similarity index 100% rename from src/static/icons/light/object-ungroup.svg rename to apps/client/src/static/icons/light/object-ungroup.svg diff --git a/src/static/icons/light/octagon.svg b/apps/client/src/static/icons/light/octagon.svg similarity index 100% rename from src/static/icons/light/octagon.svg rename to apps/client/src/static/icons/light/octagon.svg diff --git a/src/static/icons/light/oil-can.svg b/apps/client/src/static/icons/light/oil-can.svg similarity index 100% rename from src/static/icons/light/oil-can.svg rename to apps/client/src/static/icons/light/oil-can.svg diff --git a/src/static/icons/light/oil-temp.svg b/apps/client/src/static/icons/light/oil-temp.svg similarity index 100% rename from src/static/icons/light/oil-temp.svg rename to apps/client/src/static/icons/light/oil-temp.svg diff --git a/src/static/icons/light/om.svg b/apps/client/src/static/icons/light/om.svg similarity index 100% rename from src/static/icons/light/om.svg rename to apps/client/src/static/icons/light/om.svg diff --git a/src/static/icons/light/omega.svg b/apps/client/src/static/icons/light/omega.svg similarity index 100% rename from src/static/icons/light/omega.svg rename to apps/client/src/static/icons/light/omega.svg diff --git a/src/static/icons/light/ornament.svg b/apps/client/src/static/icons/light/ornament.svg similarity index 100% rename from src/static/icons/light/ornament.svg rename to apps/client/src/static/icons/light/ornament.svg diff --git a/src/static/icons/light/otter.svg b/apps/client/src/static/icons/light/otter.svg similarity index 100% rename from src/static/icons/light/otter.svg rename to apps/client/src/static/icons/light/otter.svg diff --git a/src/static/icons/light/outdent.svg b/apps/client/src/static/icons/light/outdent.svg similarity index 100% rename from src/static/icons/light/outdent.svg rename to apps/client/src/static/icons/light/outdent.svg diff --git a/src/static/icons/light/outlet.svg b/apps/client/src/static/icons/light/outlet.svg similarity index 100% rename from src/static/icons/light/outlet.svg rename to apps/client/src/static/icons/light/outlet.svg diff --git a/src/static/icons/light/oven.svg b/apps/client/src/static/icons/light/oven.svg similarity index 100% rename from src/static/icons/light/oven.svg rename to apps/client/src/static/icons/light/oven.svg diff --git a/src/static/icons/light/overline.svg b/apps/client/src/static/icons/light/overline.svg similarity index 100% rename from src/static/icons/light/overline.svg rename to apps/client/src/static/icons/light/overline.svg diff --git a/src/static/icons/light/page-break.svg b/apps/client/src/static/icons/light/page-break.svg similarity index 100% rename from src/static/icons/light/page-break.svg rename to apps/client/src/static/icons/light/page-break.svg diff --git a/src/static/icons/light/pager.svg b/apps/client/src/static/icons/light/pager.svg similarity index 100% rename from src/static/icons/light/pager.svg rename to apps/client/src/static/icons/light/pager.svg diff --git a/src/static/icons/light/paint-brush-alt.svg b/apps/client/src/static/icons/light/paint-brush-alt.svg similarity index 100% rename from src/static/icons/light/paint-brush-alt.svg rename to apps/client/src/static/icons/light/paint-brush-alt.svg diff --git a/src/static/icons/light/paint-brush.svg b/apps/client/src/static/icons/light/paint-brush.svg similarity index 100% rename from src/static/icons/light/paint-brush.svg rename to apps/client/src/static/icons/light/paint-brush.svg diff --git a/src/static/icons/light/paint-roller.svg b/apps/client/src/static/icons/light/paint-roller.svg similarity index 100% rename from src/static/icons/light/paint-roller.svg rename to apps/client/src/static/icons/light/paint-roller.svg diff --git a/src/static/icons/light/palette.svg b/apps/client/src/static/icons/light/palette.svg similarity index 100% rename from src/static/icons/light/palette.svg rename to apps/client/src/static/icons/light/palette.svg diff --git a/src/static/icons/light/pallet-alt.svg b/apps/client/src/static/icons/light/pallet-alt.svg similarity index 100% rename from src/static/icons/light/pallet-alt.svg rename to apps/client/src/static/icons/light/pallet-alt.svg diff --git a/src/static/icons/light/pallet.svg b/apps/client/src/static/icons/light/pallet.svg similarity index 100% rename from src/static/icons/light/pallet.svg rename to apps/client/src/static/icons/light/pallet.svg diff --git a/src/static/icons/light/paper-plane.svg b/apps/client/src/static/icons/light/paper-plane.svg similarity index 100% rename from src/static/icons/light/paper-plane.svg rename to apps/client/src/static/icons/light/paper-plane.svg diff --git a/src/static/icons/light/paperclip.svg b/apps/client/src/static/icons/light/paperclip.svg similarity index 100% rename from src/static/icons/light/paperclip.svg rename to apps/client/src/static/icons/light/paperclip.svg diff --git a/src/static/icons/light/parachute-box.svg b/apps/client/src/static/icons/light/parachute-box.svg similarity index 100% rename from src/static/icons/light/parachute-box.svg rename to apps/client/src/static/icons/light/parachute-box.svg diff --git a/src/static/icons/light/paragraph-rtl.svg b/apps/client/src/static/icons/light/paragraph-rtl.svg similarity index 100% rename from src/static/icons/light/paragraph-rtl.svg rename to apps/client/src/static/icons/light/paragraph-rtl.svg diff --git a/src/static/icons/light/paragraph.svg b/apps/client/src/static/icons/light/paragraph.svg similarity index 100% rename from src/static/icons/light/paragraph.svg rename to apps/client/src/static/icons/light/paragraph.svg diff --git a/src/static/icons/light/parking-circle-slash.svg b/apps/client/src/static/icons/light/parking-circle-slash.svg similarity index 100% rename from src/static/icons/light/parking-circle-slash.svg rename to apps/client/src/static/icons/light/parking-circle-slash.svg diff --git a/src/static/icons/light/parking-circle.svg b/apps/client/src/static/icons/light/parking-circle.svg similarity index 100% rename from src/static/icons/light/parking-circle.svg rename to apps/client/src/static/icons/light/parking-circle.svg diff --git a/src/static/icons/light/parking-slash.svg b/apps/client/src/static/icons/light/parking-slash.svg similarity index 100% rename from src/static/icons/light/parking-slash.svg rename to apps/client/src/static/icons/light/parking-slash.svg diff --git a/src/static/icons/light/parking.svg b/apps/client/src/static/icons/light/parking.svg similarity index 100% rename from src/static/icons/light/parking.svg rename to apps/client/src/static/icons/light/parking.svg diff --git a/src/static/icons/light/passport.svg b/apps/client/src/static/icons/light/passport.svg similarity index 100% rename from src/static/icons/light/passport.svg rename to apps/client/src/static/icons/light/passport.svg diff --git a/src/static/icons/light/pastafarianism.svg b/apps/client/src/static/icons/light/pastafarianism.svg similarity index 100% rename from src/static/icons/light/pastafarianism.svg rename to apps/client/src/static/icons/light/pastafarianism.svg diff --git a/src/static/icons/light/paste.svg b/apps/client/src/static/icons/light/paste.svg similarity index 100% rename from src/static/icons/light/paste.svg rename to apps/client/src/static/icons/light/paste.svg diff --git a/src/static/icons/light/pause-circle.svg b/apps/client/src/static/icons/light/pause-circle.svg similarity index 100% rename from src/static/icons/light/pause-circle.svg rename to apps/client/src/static/icons/light/pause-circle.svg diff --git a/src/static/icons/light/pause.svg b/apps/client/src/static/icons/light/pause.svg similarity index 100% rename from src/static/icons/light/pause.svg rename to apps/client/src/static/icons/light/pause.svg diff --git a/src/static/icons/light/paw-alt.svg b/apps/client/src/static/icons/light/paw-alt.svg similarity index 100% rename from src/static/icons/light/paw-alt.svg rename to apps/client/src/static/icons/light/paw-alt.svg diff --git a/src/static/icons/light/paw-claws.svg b/apps/client/src/static/icons/light/paw-claws.svg similarity index 100% rename from src/static/icons/light/paw-claws.svg rename to apps/client/src/static/icons/light/paw-claws.svg diff --git a/src/static/icons/light/paw.svg b/apps/client/src/static/icons/light/paw.svg similarity index 100% rename from src/static/icons/light/paw.svg rename to apps/client/src/static/icons/light/paw.svg diff --git a/src/static/icons/light/peace.svg b/apps/client/src/static/icons/light/peace.svg similarity index 100% rename from src/static/icons/light/peace.svg rename to apps/client/src/static/icons/light/peace.svg diff --git a/src/static/icons/light/pegasus.svg b/apps/client/src/static/icons/light/pegasus.svg similarity index 100% rename from src/static/icons/light/pegasus.svg rename to apps/client/src/static/icons/light/pegasus.svg diff --git a/src/static/icons/light/pen-alt.svg b/apps/client/src/static/icons/light/pen-alt.svg similarity index 100% rename from src/static/icons/light/pen-alt.svg rename to apps/client/src/static/icons/light/pen-alt.svg diff --git a/src/static/icons/light/pen-fancy.svg b/apps/client/src/static/icons/light/pen-fancy.svg similarity index 100% rename from src/static/icons/light/pen-fancy.svg rename to apps/client/src/static/icons/light/pen-fancy.svg diff --git a/src/static/icons/light/pen-nib.svg b/apps/client/src/static/icons/light/pen-nib.svg similarity index 100% rename from src/static/icons/light/pen-nib.svg rename to apps/client/src/static/icons/light/pen-nib.svg diff --git a/src/static/icons/light/pen-square.svg b/apps/client/src/static/icons/light/pen-square.svg similarity index 100% rename from src/static/icons/light/pen-square.svg rename to apps/client/src/static/icons/light/pen-square.svg diff --git a/src/static/icons/light/pen.svg b/apps/client/src/static/icons/light/pen.svg similarity index 100% rename from src/static/icons/light/pen.svg rename to apps/client/src/static/icons/light/pen.svg diff --git a/src/static/icons/light/pencil-alt.svg b/apps/client/src/static/icons/light/pencil-alt.svg similarity index 100% rename from src/static/icons/light/pencil-alt.svg rename to apps/client/src/static/icons/light/pencil-alt.svg diff --git a/src/static/icons/light/pencil-paintbrush.svg b/apps/client/src/static/icons/light/pencil-paintbrush.svg similarity index 100% rename from src/static/icons/light/pencil-paintbrush.svg rename to apps/client/src/static/icons/light/pencil-paintbrush.svg diff --git a/src/static/icons/light/pencil-ruler.svg b/apps/client/src/static/icons/light/pencil-ruler.svg similarity index 100% rename from src/static/icons/light/pencil-ruler.svg rename to apps/client/src/static/icons/light/pencil-ruler.svg diff --git a/src/static/icons/light/pencil.svg b/apps/client/src/static/icons/light/pencil.svg similarity index 100% rename from src/static/icons/light/pencil.svg rename to apps/client/src/static/icons/light/pencil.svg diff --git a/src/static/icons/light/pennant.svg b/apps/client/src/static/icons/light/pennant.svg similarity index 100% rename from src/static/icons/light/pennant.svg rename to apps/client/src/static/icons/light/pennant.svg diff --git a/src/static/icons/light/people-carry.svg b/apps/client/src/static/icons/light/people-carry.svg similarity index 100% rename from src/static/icons/light/people-carry.svg rename to apps/client/src/static/icons/light/people-carry.svg diff --git a/src/static/icons/light/pepper-hot.svg b/apps/client/src/static/icons/light/pepper-hot.svg similarity index 100% rename from src/static/icons/light/pepper-hot.svg rename to apps/client/src/static/icons/light/pepper-hot.svg diff --git a/src/static/icons/light/percent.svg b/apps/client/src/static/icons/light/percent.svg similarity index 100% rename from src/static/icons/light/percent.svg rename to apps/client/src/static/icons/light/percent.svg diff --git a/src/static/icons/light/percentage.svg b/apps/client/src/static/icons/light/percentage.svg similarity index 100% rename from src/static/icons/light/percentage.svg rename to apps/client/src/static/icons/light/percentage.svg diff --git a/src/static/icons/light/person-booth.svg b/apps/client/src/static/icons/light/person-booth.svg similarity index 100% rename from src/static/icons/light/person-booth.svg rename to apps/client/src/static/icons/light/person-booth.svg diff --git a/src/static/icons/light/person-carry.svg b/apps/client/src/static/icons/light/person-carry.svg similarity index 100% rename from src/static/icons/light/person-carry.svg rename to apps/client/src/static/icons/light/person-carry.svg diff --git a/src/static/icons/light/person-dolly-empty.svg b/apps/client/src/static/icons/light/person-dolly-empty.svg similarity index 100% rename from src/static/icons/light/person-dolly-empty.svg rename to apps/client/src/static/icons/light/person-dolly-empty.svg diff --git a/src/static/icons/light/person-dolly.svg b/apps/client/src/static/icons/light/person-dolly.svg similarity index 100% rename from src/static/icons/light/person-dolly.svg rename to apps/client/src/static/icons/light/person-dolly.svg diff --git a/src/static/icons/light/person-sign.svg b/apps/client/src/static/icons/light/person-sign.svg similarity index 100% rename from src/static/icons/light/person-sign.svg rename to apps/client/src/static/icons/light/person-sign.svg diff --git a/src/static/icons/light/phone-alt.svg b/apps/client/src/static/icons/light/phone-alt.svg similarity index 100% rename from src/static/icons/light/phone-alt.svg rename to apps/client/src/static/icons/light/phone-alt.svg diff --git a/src/static/icons/light/phone-laptop.svg b/apps/client/src/static/icons/light/phone-laptop.svg similarity index 100% rename from src/static/icons/light/phone-laptop.svg rename to apps/client/src/static/icons/light/phone-laptop.svg diff --git a/src/static/icons/light/phone-office.svg b/apps/client/src/static/icons/light/phone-office.svg similarity index 100% rename from src/static/icons/light/phone-office.svg rename to apps/client/src/static/icons/light/phone-office.svg diff --git a/src/static/icons/light/phone-plus.svg b/apps/client/src/static/icons/light/phone-plus.svg similarity index 100% rename from src/static/icons/light/phone-plus.svg rename to apps/client/src/static/icons/light/phone-plus.svg diff --git a/src/static/icons/light/phone-rotary.svg b/apps/client/src/static/icons/light/phone-rotary.svg similarity index 100% rename from src/static/icons/light/phone-rotary.svg rename to apps/client/src/static/icons/light/phone-rotary.svg diff --git a/src/static/icons/light/phone-slash.svg b/apps/client/src/static/icons/light/phone-slash.svg similarity index 100% rename from src/static/icons/light/phone-slash.svg rename to apps/client/src/static/icons/light/phone-slash.svg diff --git a/src/static/icons/light/phone-square-alt.svg b/apps/client/src/static/icons/light/phone-square-alt.svg similarity index 100% rename from src/static/icons/light/phone-square-alt.svg rename to apps/client/src/static/icons/light/phone-square-alt.svg diff --git a/src/static/icons/light/phone-square.svg b/apps/client/src/static/icons/light/phone-square.svg similarity index 100% rename from src/static/icons/light/phone-square.svg rename to apps/client/src/static/icons/light/phone-square.svg diff --git a/src/static/icons/light/phone-volume.svg b/apps/client/src/static/icons/light/phone-volume.svg similarity index 100% rename from src/static/icons/light/phone-volume.svg rename to apps/client/src/static/icons/light/phone-volume.svg diff --git a/src/static/icons/light/phone.svg b/apps/client/src/static/icons/light/phone.svg similarity index 100% rename from src/static/icons/light/phone.svg rename to apps/client/src/static/icons/light/phone.svg diff --git a/src/static/icons/light/photo-video.svg b/apps/client/src/static/icons/light/photo-video.svg similarity index 100% rename from src/static/icons/light/photo-video.svg rename to apps/client/src/static/icons/light/photo-video.svg diff --git a/src/static/icons/light/pi.svg b/apps/client/src/static/icons/light/pi.svg similarity index 100% rename from src/static/icons/light/pi.svg rename to apps/client/src/static/icons/light/pi.svg diff --git a/src/static/icons/light/piano-keyboard.svg b/apps/client/src/static/icons/light/piano-keyboard.svg similarity index 100% rename from src/static/icons/light/piano-keyboard.svg rename to apps/client/src/static/icons/light/piano-keyboard.svg diff --git a/src/static/icons/light/piano.svg b/apps/client/src/static/icons/light/piano.svg similarity index 100% rename from src/static/icons/light/piano.svg rename to apps/client/src/static/icons/light/piano.svg diff --git a/src/static/icons/light/pie.svg b/apps/client/src/static/icons/light/pie.svg similarity index 100% rename from src/static/icons/light/pie.svg rename to apps/client/src/static/icons/light/pie.svg diff --git a/src/static/icons/light/pig.svg b/apps/client/src/static/icons/light/pig.svg similarity index 100% rename from src/static/icons/light/pig.svg rename to apps/client/src/static/icons/light/pig.svg diff --git a/src/static/icons/light/piggy-bank.svg b/apps/client/src/static/icons/light/piggy-bank.svg similarity index 100% rename from src/static/icons/light/piggy-bank.svg rename to apps/client/src/static/icons/light/piggy-bank.svg diff --git a/src/static/icons/light/pills.svg b/apps/client/src/static/icons/light/pills.svg similarity index 100% rename from src/static/icons/light/pills.svg rename to apps/client/src/static/icons/light/pills.svg diff --git a/src/static/icons/light/pizza-slice.svg b/apps/client/src/static/icons/light/pizza-slice.svg similarity index 100% rename from src/static/icons/light/pizza-slice.svg rename to apps/client/src/static/icons/light/pizza-slice.svg diff --git a/src/static/icons/light/pizza.svg b/apps/client/src/static/icons/light/pizza.svg similarity index 100% rename from src/static/icons/light/pizza.svg rename to apps/client/src/static/icons/light/pizza.svg diff --git a/src/static/icons/light/place-of-worship.svg b/apps/client/src/static/icons/light/place-of-worship.svg similarity index 100% rename from src/static/icons/light/place-of-worship.svg rename to apps/client/src/static/icons/light/place-of-worship.svg diff --git a/src/static/icons/light/plane-alt.svg b/apps/client/src/static/icons/light/plane-alt.svg similarity index 100% rename from src/static/icons/light/plane-alt.svg rename to apps/client/src/static/icons/light/plane-alt.svg diff --git a/src/static/icons/light/plane-arrival.svg b/apps/client/src/static/icons/light/plane-arrival.svg similarity index 100% rename from src/static/icons/light/plane-arrival.svg rename to apps/client/src/static/icons/light/plane-arrival.svg diff --git a/src/static/icons/light/plane-departure.svg b/apps/client/src/static/icons/light/plane-departure.svg similarity index 100% rename from src/static/icons/light/plane-departure.svg rename to apps/client/src/static/icons/light/plane-departure.svg diff --git a/src/static/icons/light/plane.svg b/apps/client/src/static/icons/light/plane.svg similarity index 100% rename from src/static/icons/light/plane.svg rename to apps/client/src/static/icons/light/plane.svg diff --git a/src/static/icons/light/planet-moon.svg b/apps/client/src/static/icons/light/planet-moon.svg similarity index 100% rename from src/static/icons/light/planet-moon.svg rename to apps/client/src/static/icons/light/planet-moon.svg diff --git a/src/static/icons/light/planet-ringed.svg b/apps/client/src/static/icons/light/planet-ringed.svg similarity index 100% rename from src/static/icons/light/planet-ringed.svg rename to apps/client/src/static/icons/light/planet-ringed.svg diff --git a/src/static/icons/light/play-circle.svg b/apps/client/src/static/icons/light/play-circle.svg similarity index 100% rename from src/static/icons/light/play-circle.svg rename to apps/client/src/static/icons/light/play-circle.svg diff --git a/src/static/icons/light/play.svg b/apps/client/src/static/icons/light/play.svg similarity index 100% rename from src/static/icons/light/play.svg rename to apps/client/src/static/icons/light/play.svg diff --git a/src/static/icons/light/plug.svg b/apps/client/src/static/icons/light/plug.svg similarity index 100% rename from src/static/icons/light/plug.svg rename to apps/client/src/static/icons/light/plug.svg diff --git a/src/static/icons/light/plus-circle.svg b/apps/client/src/static/icons/light/plus-circle.svg similarity index 100% rename from src/static/icons/light/plus-circle.svg rename to apps/client/src/static/icons/light/plus-circle.svg diff --git a/src/static/icons/light/plus-hexagon.svg b/apps/client/src/static/icons/light/plus-hexagon.svg similarity index 100% rename from src/static/icons/light/plus-hexagon.svg rename to apps/client/src/static/icons/light/plus-hexagon.svg diff --git a/src/static/icons/light/plus-octagon.svg b/apps/client/src/static/icons/light/plus-octagon.svg similarity index 100% rename from src/static/icons/light/plus-octagon.svg rename to apps/client/src/static/icons/light/plus-octagon.svg diff --git a/src/static/icons/light/plus-square.svg b/apps/client/src/static/icons/light/plus-square.svg similarity index 100% rename from src/static/icons/light/plus-square.svg rename to apps/client/src/static/icons/light/plus-square.svg diff --git a/src/static/icons/light/plus.svg b/apps/client/src/static/icons/light/plus.svg similarity index 100% rename from src/static/icons/light/plus.svg rename to apps/client/src/static/icons/light/plus.svg diff --git a/src/static/icons/light/podcast.svg b/apps/client/src/static/icons/light/podcast.svg similarity index 100% rename from src/static/icons/light/podcast.svg rename to apps/client/src/static/icons/light/podcast.svg diff --git a/src/static/icons/light/podium-star.svg b/apps/client/src/static/icons/light/podium-star.svg similarity index 100% rename from src/static/icons/light/podium-star.svg rename to apps/client/src/static/icons/light/podium-star.svg diff --git a/src/static/icons/light/podium.svg b/apps/client/src/static/icons/light/podium.svg similarity index 100% rename from src/static/icons/light/podium.svg rename to apps/client/src/static/icons/light/podium.svg diff --git a/src/static/icons/light/police-box.svg b/apps/client/src/static/icons/light/police-box.svg similarity index 100% rename from src/static/icons/light/police-box.svg rename to apps/client/src/static/icons/light/police-box.svg diff --git a/src/static/icons/light/poll-h.svg b/apps/client/src/static/icons/light/poll-h.svg similarity index 100% rename from src/static/icons/light/poll-h.svg rename to apps/client/src/static/icons/light/poll-h.svg diff --git a/src/static/icons/light/poll-people.svg b/apps/client/src/static/icons/light/poll-people.svg similarity index 100% rename from src/static/icons/light/poll-people.svg rename to apps/client/src/static/icons/light/poll-people.svg diff --git a/src/static/icons/light/poll.svg b/apps/client/src/static/icons/light/poll.svg similarity index 100% rename from src/static/icons/light/poll.svg rename to apps/client/src/static/icons/light/poll.svg diff --git a/src/static/icons/light/poo-storm.svg b/apps/client/src/static/icons/light/poo-storm.svg similarity index 100% rename from src/static/icons/light/poo-storm.svg rename to apps/client/src/static/icons/light/poo-storm.svg diff --git a/src/static/icons/light/poo.svg b/apps/client/src/static/icons/light/poo.svg similarity index 100% rename from src/static/icons/light/poo.svg rename to apps/client/src/static/icons/light/poo.svg diff --git a/src/static/icons/light/poop.svg b/apps/client/src/static/icons/light/poop.svg similarity index 100% rename from src/static/icons/light/poop.svg rename to apps/client/src/static/icons/light/poop.svg diff --git a/src/static/icons/light/popcorn.svg b/apps/client/src/static/icons/light/popcorn.svg similarity index 100% rename from src/static/icons/light/popcorn.svg rename to apps/client/src/static/icons/light/popcorn.svg diff --git a/src/static/icons/light/portal-enter.svg b/apps/client/src/static/icons/light/portal-enter.svg similarity index 100% rename from src/static/icons/light/portal-enter.svg rename to apps/client/src/static/icons/light/portal-enter.svg diff --git a/src/static/icons/light/portal-exit.svg b/apps/client/src/static/icons/light/portal-exit.svg similarity index 100% rename from src/static/icons/light/portal-exit.svg rename to apps/client/src/static/icons/light/portal-exit.svg diff --git a/src/static/icons/light/portrait.svg b/apps/client/src/static/icons/light/portrait.svg similarity index 100% rename from src/static/icons/light/portrait.svg rename to apps/client/src/static/icons/light/portrait.svg diff --git a/src/static/icons/light/pound-sign.svg b/apps/client/src/static/icons/light/pound-sign.svg similarity index 100% rename from src/static/icons/light/pound-sign.svg rename to apps/client/src/static/icons/light/pound-sign.svg diff --git a/src/static/icons/light/power-off.svg b/apps/client/src/static/icons/light/power-off.svg similarity index 100% rename from src/static/icons/light/power-off.svg rename to apps/client/src/static/icons/light/power-off.svg diff --git a/src/static/icons/light/pray.svg b/apps/client/src/static/icons/light/pray.svg similarity index 100% rename from src/static/icons/light/pray.svg rename to apps/client/src/static/icons/light/pray.svg diff --git a/src/static/icons/light/praying-hands.svg b/apps/client/src/static/icons/light/praying-hands.svg similarity index 100% rename from src/static/icons/light/praying-hands.svg rename to apps/client/src/static/icons/light/praying-hands.svg diff --git a/src/static/icons/light/prescription-bottle-alt.svg b/apps/client/src/static/icons/light/prescription-bottle-alt.svg similarity index 100% rename from src/static/icons/light/prescription-bottle-alt.svg rename to apps/client/src/static/icons/light/prescription-bottle-alt.svg diff --git a/src/static/icons/light/prescription-bottle.svg b/apps/client/src/static/icons/light/prescription-bottle.svg similarity index 100% rename from src/static/icons/light/prescription-bottle.svg rename to apps/client/src/static/icons/light/prescription-bottle.svg diff --git a/src/static/icons/light/prescription.svg b/apps/client/src/static/icons/light/prescription.svg similarity index 100% rename from src/static/icons/light/prescription.svg rename to apps/client/src/static/icons/light/prescription.svg diff --git a/src/static/icons/light/presentation.svg b/apps/client/src/static/icons/light/presentation.svg similarity index 100% rename from src/static/icons/light/presentation.svg rename to apps/client/src/static/icons/light/presentation.svg diff --git a/src/static/icons/light/print-search.svg b/apps/client/src/static/icons/light/print-search.svg similarity index 100% rename from src/static/icons/light/print-search.svg rename to apps/client/src/static/icons/light/print-search.svg diff --git a/src/static/icons/light/print-slash.svg b/apps/client/src/static/icons/light/print-slash.svg similarity index 100% rename from src/static/icons/light/print-slash.svg rename to apps/client/src/static/icons/light/print-slash.svg diff --git a/src/static/icons/light/print.svg b/apps/client/src/static/icons/light/print.svg similarity index 100% rename from src/static/icons/light/print.svg rename to apps/client/src/static/icons/light/print.svg diff --git a/src/static/icons/light/procedures.svg b/apps/client/src/static/icons/light/procedures.svg similarity index 100% rename from src/static/icons/light/procedures.svg rename to apps/client/src/static/icons/light/procedures.svg diff --git a/src/static/icons/light/project-diagram.svg b/apps/client/src/static/icons/light/project-diagram.svg similarity index 100% rename from src/static/icons/light/project-diagram.svg rename to apps/client/src/static/icons/light/project-diagram.svg diff --git a/src/static/icons/light/projector.svg b/apps/client/src/static/icons/light/projector.svg similarity index 100% rename from src/static/icons/light/projector.svg rename to apps/client/src/static/icons/light/projector.svg diff --git a/src/static/icons/light/pumpkin.svg b/apps/client/src/static/icons/light/pumpkin.svg similarity index 100% rename from src/static/icons/light/pumpkin.svg rename to apps/client/src/static/icons/light/pumpkin.svg diff --git a/src/static/icons/light/puzzle-piece.svg b/apps/client/src/static/icons/light/puzzle-piece.svg similarity index 100% rename from src/static/icons/light/puzzle-piece.svg rename to apps/client/src/static/icons/light/puzzle-piece.svg diff --git a/src/static/icons/light/qrcode.svg b/apps/client/src/static/icons/light/qrcode.svg similarity index 100% rename from src/static/icons/light/qrcode.svg rename to apps/client/src/static/icons/light/qrcode.svg diff --git a/src/static/icons/light/question-circle.svg b/apps/client/src/static/icons/light/question-circle.svg similarity index 100% rename from src/static/icons/light/question-circle.svg rename to apps/client/src/static/icons/light/question-circle.svg diff --git a/src/static/icons/light/question-square.svg b/apps/client/src/static/icons/light/question-square.svg similarity index 100% rename from src/static/icons/light/question-square.svg rename to apps/client/src/static/icons/light/question-square.svg diff --git a/src/static/icons/light/question.svg b/apps/client/src/static/icons/light/question.svg similarity index 100% rename from src/static/icons/light/question.svg rename to apps/client/src/static/icons/light/question.svg diff --git a/src/static/icons/light/quidditch.svg b/apps/client/src/static/icons/light/quidditch.svg similarity index 100% rename from src/static/icons/light/quidditch.svg rename to apps/client/src/static/icons/light/quidditch.svg diff --git a/src/static/icons/light/quote-left.svg b/apps/client/src/static/icons/light/quote-left.svg similarity index 100% rename from src/static/icons/light/quote-left.svg rename to apps/client/src/static/icons/light/quote-left.svg diff --git a/src/static/icons/light/quote-right.svg b/apps/client/src/static/icons/light/quote-right.svg similarity index 100% rename from src/static/icons/light/quote-right.svg rename to apps/client/src/static/icons/light/quote-right.svg diff --git a/src/static/icons/light/quran.svg b/apps/client/src/static/icons/light/quran.svg similarity index 100% rename from src/static/icons/light/quran.svg rename to apps/client/src/static/icons/light/quran.svg diff --git a/src/static/icons/light/rabbit-fast.svg b/apps/client/src/static/icons/light/rabbit-fast.svg similarity index 100% rename from src/static/icons/light/rabbit-fast.svg rename to apps/client/src/static/icons/light/rabbit-fast.svg diff --git a/src/static/icons/light/rabbit.svg b/apps/client/src/static/icons/light/rabbit.svg similarity index 100% rename from src/static/icons/light/rabbit.svg rename to apps/client/src/static/icons/light/rabbit.svg diff --git a/src/static/icons/light/racquet.svg b/apps/client/src/static/icons/light/racquet.svg similarity index 100% rename from src/static/icons/light/racquet.svg rename to apps/client/src/static/icons/light/racquet.svg diff --git a/src/static/icons/light/radar.svg b/apps/client/src/static/icons/light/radar.svg similarity index 100% rename from src/static/icons/light/radar.svg rename to apps/client/src/static/icons/light/radar.svg diff --git a/src/static/icons/light/radiation-alt.svg b/apps/client/src/static/icons/light/radiation-alt.svg similarity index 100% rename from src/static/icons/light/radiation-alt.svg rename to apps/client/src/static/icons/light/radiation-alt.svg diff --git a/src/static/icons/light/radiation.svg b/apps/client/src/static/icons/light/radiation.svg similarity index 100% rename from src/static/icons/light/radiation.svg rename to apps/client/src/static/icons/light/radiation.svg diff --git a/src/static/icons/light/radio-alt.svg b/apps/client/src/static/icons/light/radio-alt.svg similarity index 100% rename from src/static/icons/light/radio-alt.svg rename to apps/client/src/static/icons/light/radio-alt.svg diff --git a/src/static/icons/light/radio.svg b/apps/client/src/static/icons/light/radio.svg similarity index 100% rename from src/static/icons/light/radio.svg rename to apps/client/src/static/icons/light/radio.svg diff --git a/src/static/icons/light/rainbow.svg b/apps/client/src/static/icons/light/rainbow.svg similarity index 100% rename from src/static/icons/light/rainbow.svg rename to apps/client/src/static/icons/light/rainbow.svg diff --git a/src/static/icons/light/raindrops.svg b/apps/client/src/static/icons/light/raindrops.svg similarity index 100% rename from src/static/icons/light/raindrops.svg rename to apps/client/src/static/icons/light/raindrops.svg diff --git a/src/static/icons/light/ram.svg b/apps/client/src/static/icons/light/ram.svg similarity index 100% rename from src/static/icons/light/ram.svg rename to apps/client/src/static/icons/light/ram.svg diff --git a/src/static/icons/light/ramp-loading.svg b/apps/client/src/static/icons/light/ramp-loading.svg similarity index 100% rename from src/static/icons/light/ramp-loading.svg rename to apps/client/src/static/icons/light/ramp-loading.svg diff --git a/src/static/icons/light/random.svg b/apps/client/src/static/icons/light/random.svg similarity index 100% rename from src/static/icons/light/random.svg rename to apps/client/src/static/icons/light/random.svg diff --git a/src/static/icons/light/raygun.svg b/apps/client/src/static/icons/light/raygun.svg similarity index 100% rename from src/static/icons/light/raygun.svg rename to apps/client/src/static/icons/light/raygun.svg diff --git a/src/static/icons/light/receipt.svg b/apps/client/src/static/icons/light/receipt.svg similarity index 100% rename from src/static/icons/light/receipt.svg rename to apps/client/src/static/icons/light/receipt.svg diff --git a/src/static/icons/light/record-vinyl.svg b/apps/client/src/static/icons/light/record-vinyl.svg similarity index 100% rename from src/static/icons/light/record-vinyl.svg rename to apps/client/src/static/icons/light/record-vinyl.svg diff --git a/src/static/icons/light/rectangle-landscape.svg b/apps/client/src/static/icons/light/rectangle-landscape.svg similarity index 100% rename from src/static/icons/light/rectangle-landscape.svg rename to apps/client/src/static/icons/light/rectangle-landscape.svg diff --git a/src/static/icons/light/rectangle-portrait.svg b/apps/client/src/static/icons/light/rectangle-portrait.svg similarity index 100% rename from src/static/icons/light/rectangle-portrait.svg rename to apps/client/src/static/icons/light/rectangle-portrait.svg diff --git a/src/static/icons/light/rectangle-wide.svg b/apps/client/src/static/icons/light/rectangle-wide.svg similarity index 100% rename from src/static/icons/light/rectangle-wide.svg rename to apps/client/src/static/icons/light/rectangle-wide.svg diff --git a/src/static/icons/light/recycle.svg b/apps/client/src/static/icons/light/recycle.svg similarity index 100% rename from src/static/icons/light/recycle.svg rename to apps/client/src/static/icons/light/recycle.svg diff --git a/src/static/icons/light/redo-alt.svg b/apps/client/src/static/icons/light/redo-alt.svg similarity index 100% rename from src/static/icons/light/redo-alt.svg rename to apps/client/src/static/icons/light/redo-alt.svg diff --git a/src/static/icons/light/redo.svg b/apps/client/src/static/icons/light/redo.svg similarity index 100% rename from src/static/icons/light/redo.svg rename to apps/client/src/static/icons/light/redo.svg diff --git a/src/static/icons/light/refrigerator.svg b/apps/client/src/static/icons/light/refrigerator.svg similarity index 100% rename from src/static/icons/light/refrigerator.svg rename to apps/client/src/static/icons/light/refrigerator.svg diff --git a/src/static/icons/light/registered.svg b/apps/client/src/static/icons/light/registered.svg similarity index 100% rename from src/static/icons/light/registered.svg rename to apps/client/src/static/icons/light/registered.svg diff --git a/src/static/icons/light/remove-format.svg b/apps/client/src/static/icons/light/remove-format.svg similarity index 100% rename from src/static/icons/light/remove-format.svg rename to apps/client/src/static/icons/light/remove-format.svg diff --git a/src/static/icons/light/repeat-1-alt.svg b/apps/client/src/static/icons/light/repeat-1-alt.svg similarity index 100% rename from src/static/icons/light/repeat-1-alt.svg rename to apps/client/src/static/icons/light/repeat-1-alt.svg diff --git a/src/static/icons/light/repeat-1.svg b/apps/client/src/static/icons/light/repeat-1.svg similarity index 100% rename from src/static/icons/light/repeat-1.svg rename to apps/client/src/static/icons/light/repeat-1.svg diff --git a/src/static/icons/light/repeat-alt.svg b/apps/client/src/static/icons/light/repeat-alt.svg similarity index 100% rename from src/static/icons/light/repeat-alt.svg rename to apps/client/src/static/icons/light/repeat-alt.svg diff --git a/src/static/icons/light/repeat.svg b/apps/client/src/static/icons/light/repeat.svg similarity index 100% rename from src/static/icons/light/repeat.svg rename to apps/client/src/static/icons/light/repeat.svg diff --git a/src/static/icons/light/reply-all.svg b/apps/client/src/static/icons/light/reply-all.svg similarity index 100% rename from src/static/icons/light/reply-all.svg rename to apps/client/src/static/icons/light/reply-all.svg diff --git a/src/static/icons/light/reply.svg b/apps/client/src/static/icons/light/reply.svg similarity index 100% rename from src/static/icons/light/reply.svg rename to apps/client/src/static/icons/light/reply.svg diff --git a/src/static/icons/light/republican.svg b/apps/client/src/static/icons/light/republican.svg similarity index 100% rename from src/static/icons/light/republican.svg rename to apps/client/src/static/icons/light/republican.svg diff --git a/src/static/icons/light/restroom.svg b/apps/client/src/static/icons/light/restroom.svg similarity index 100% rename from src/static/icons/light/restroom.svg rename to apps/client/src/static/icons/light/restroom.svg diff --git a/src/static/icons/light/retweet-alt.svg b/apps/client/src/static/icons/light/retweet-alt.svg similarity index 100% rename from src/static/icons/light/retweet-alt.svg rename to apps/client/src/static/icons/light/retweet-alt.svg diff --git a/src/static/icons/light/retweet.svg b/apps/client/src/static/icons/light/retweet.svg similarity index 100% rename from src/static/icons/light/retweet.svg rename to apps/client/src/static/icons/light/retweet.svg diff --git a/src/static/icons/light/ribbon.svg b/apps/client/src/static/icons/light/ribbon.svg similarity index 100% rename from src/static/icons/light/ribbon.svg rename to apps/client/src/static/icons/light/ribbon.svg diff --git a/src/static/icons/light/ring.svg b/apps/client/src/static/icons/light/ring.svg similarity index 100% rename from src/static/icons/light/ring.svg rename to apps/client/src/static/icons/light/ring.svg diff --git a/src/static/icons/light/rings-wedding.svg b/apps/client/src/static/icons/light/rings-wedding.svg similarity index 100% rename from src/static/icons/light/rings-wedding.svg rename to apps/client/src/static/icons/light/rings-wedding.svg diff --git a/src/static/icons/light/road.svg b/apps/client/src/static/icons/light/road.svg similarity index 100% rename from src/static/icons/light/road.svg rename to apps/client/src/static/icons/light/road.svg diff --git a/src/static/icons/light/robot.svg b/apps/client/src/static/icons/light/robot.svg similarity index 100% rename from src/static/icons/light/robot.svg rename to apps/client/src/static/icons/light/robot.svg diff --git a/src/static/icons/light/rocket-launch.svg b/apps/client/src/static/icons/light/rocket-launch.svg similarity index 100% rename from src/static/icons/light/rocket-launch.svg rename to apps/client/src/static/icons/light/rocket-launch.svg diff --git a/src/static/icons/light/rocket.svg b/apps/client/src/static/icons/light/rocket.svg similarity index 100% rename from src/static/icons/light/rocket.svg rename to apps/client/src/static/icons/light/rocket.svg diff --git a/src/static/icons/light/route-highway.svg b/apps/client/src/static/icons/light/route-highway.svg similarity index 100% rename from src/static/icons/light/route-highway.svg rename to apps/client/src/static/icons/light/route-highway.svg diff --git a/src/static/icons/light/route-interstate.svg b/apps/client/src/static/icons/light/route-interstate.svg similarity index 100% rename from src/static/icons/light/route-interstate.svg rename to apps/client/src/static/icons/light/route-interstate.svg diff --git a/src/static/icons/light/route.svg b/apps/client/src/static/icons/light/route.svg similarity index 100% rename from src/static/icons/light/route.svg rename to apps/client/src/static/icons/light/route.svg diff --git a/src/static/icons/light/router.svg b/apps/client/src/static/icons/light/router.svg similarity index 100% rename from src/static/icons/light/router.svg rename to apps/client/src/static/icons/light/router.svg diff --git a/src/static/icons/light/rss-square.svg b/apps/client/src/static/icons/light/rss-square.svg similarity index 100% rename from src/static/icons/light/rss-square.svg rename to apps/client/src/static/icons/light/rss-square.svg diff --git a/src/static/icons/light/rss.svg b/apps/client/src/static/icons/light/rss.svg similarity index 100% rename from src/static/icons/light/rss.svg rename to apps/client/src/static/icons/light/rss.svg diff --git a/src/static/icons/light/ruble-sign.svg b/apps/client/src/static/icons/light/ruble-sign.svg similarity index 100% rename from src/static/icons/light/ruble-sign.svg rename to apps/client/src/static/icons/light/ruble-sign.svg diff --git a/src/static/icons/light/ruler-combined.svg b/apps/client/src/static/icons/light/ruler-combined.svg similarity index 100% rename from src/static/icons/light/ruler-combined.svg rename to apps/client/src/static/icons/light/ruler-combined.svg diff --git a/src/static/icons/light/ruler-horizontal.svg b/apps/client/src/static/icons/light/ruler-horizontal.svg similarity index 100% rename from src/static/icons/light/ruler-horizontal.svg rename to apps/client/src/static/icons/light/ruler-horizontal.svg diff --git a/src/static/icons/light/ruler-triangle.svg b/apps/client/src/static/icons/light/ruler-triangle.svg similarity index 100% rename from src/static/icons/light/ruler-triangle.svg rename to apps/client/src/static/icons/light/ruler-triangle.svg diff --git a/src/static/icons/light/ruler-vertical.svg b/apps/client/src/static/icons/light/ruler-vertical.svg similarity index 100% rename from src/static/icons/light/ruler-vertical.svg rename to apps/client/src/static/icons/light/ruler-vertical.svg diff --git a/src/static/icons/light/ruler.svg b/apps/client/src/static/icons/light/ruler.svg similarity index 100% rename from src/static/icons/light/ruler.svg rename to apps/client/src/static/icons/light/ruler.svg diff --git a/src/static/icons/light/running.svg b/apps/client/src/static/icons/light/running.svg similarity index 100% rename from src/static/icons/light/running.svg rename to apps/client/src/static/icons/light/running.svg diff --git a/src/static/icons/light/rupee-sign.svg b/apps/client/src/static/icons/light/rupee-sign.svg similarity index 100% rename from src/static/icons/light/rupee-sign.svg rename to apps/client/src/static/icons/light/rupee-sign.svg diff --git a/src/static/icons/light/rv.svg b/apps/client/src/static/icons/light/rv.svg similarity index 100% rename from src/static/icons/light/rv.svg rename to apps/client/src/static/icons/light/rv.svg diff --git a/src/static/icons/light/sack-dollar.svg b/apps/client/src/static/icons/light/sack-dollar.svg similarity index 100% rename from src/static/icons/light/sack-dollar.svg rename to apps/client/src/static/icons/light/sack-dollar.svg diff --git a/src/static/icons/light/sack.svg b/apps/client/src/static/icons/light/sack.svg similarity index 100% rename from src/static/icons/light/sack.svg rename to apps/client/src/static/icons/light/sack.svg diff --git a/src/static/icons/light/sad-cry.svg b/apps/client/src/static/icons/light/sad-cry.svg similarity index 100% rename from src/static/icons/light/sad-cry.svg rename to apps/client/src/static/icons/light/sad-cry.svg diff --git a/src/static/icons/light/sad-tear.svg b/apps/client/src/static/icons/light/sad-tear.svg similarity index 100% rename from src/static/icons/light/sad-tear.svg rename to apps/client/src/static/icons/light/sad-tear.svg diff --git a/src/static/icons/light/salad.svg b/apps/client/src/static/icons/light/salad.svg similarity index 100% rename from src/static/icons/light/salad.svg rename to apps/client/src/static/icons/light/salad.svg diff --git a/src/static/icons/light/sandwich.svg b/apps/client/src/static/icons/light/sandwich.svg similarity index 100% rename from src/static/icons/light/sandwich.svg rename to apps/client/src/static/icons/light/sandwich.svg diff --git a/src/static/icons/light/satellite-dish.svg b/apps/client/src/static/icons/light/satellite-dish.svg similarity index 100% rename from src/static/icons/light/satellite-dish.svg rename to apps/client/src/static/icons/light/satellite-dish.svg diff --git a/src/static/icons/light/satellite.svg b/apps/client/src/static/icons/light/satellite.svg similarity index 100% rename from src/static/icons/light/satellite.svg rename to apps/client/src/static/icons/light/satellite.svg diff --git a/src/static/icons/light/sausage.svg b/apps/client/src/static/icons/light/sausage.svg similarity index 100% rename from src/static/icons/light/sausage.svg rename to apps/client/src/static/icons/light/sausage.svg diff --git a/src/static/icons/light/save.svg b/apps/client/src/static/icons/light/save.svg similarity index 100% rename from src/static/icons/light/save.svg rename to apps/client/src/static/icons/light/save.svg diff --git a/src/static/icons/light/sax-hot.svg b/apps/client/src/static/icons/light/sax-hot.svg similarity index 100% rename from src/static/icons/light/sax-hot.svg rename to apps/client/src/static/icons/light/sax-hot.svg diff --git a/src/static/icons/light/saxophone.svg b/apps/client/src/static/icons/light/saxophone.svg similarity index 100% rename from src/static/icons/light/saxophone.svg rename to apps/client/src/static/icons/light/saxophone.svg diff --git a/src/static/icons/light/scalpel-path.svg b/apps/client/src/static/icons/light/scalpel-path.svg similarity index 100% rename from src/static/icons/light/scalpel-path.svg rename to apps/client/src/static/icons/light/scalpel-path.svg diff --git a/src/static/icons/light/scalpel.svg b/apps/client/src/static/icons/light/scalpel.svg similarity index 100% rename from src/static/icons/light/scalpel.svg rename to apps/client/src/static/icons/light/scalpel.svg diff --git a/src/static/icons/light/scanner-image.svg b/apps/client/src/static/icons/light/scanner-image.svg similarity index 100% rename from src/static/icons/light/scanner-image.svg rename to apps/client/src/static/icons/light/scanner-image.svg diff --git a/src/static/icons/light/scanner-keyboard.svg b/apps/client/src/static/icons/light/scanner-keyboard.svg similarity index 100% rename from src/static/icons/light/scanner-keyboard.svg rename to apps/client/src/static/icons/light/scanner-keyboard.svg diff --git a/src/static/icons/light/scanner-touchscreen.svg b/apps/client/src/static/icons/light/scanner-touchscreen.svg similarity index 100% rename from src/static/icons/light/scanner-touchscreen.svg rename to apps/client/src/static/icons/light/scanner-touchscreen.svg diff --git a/src/static/icons/light/scanner.svg b/apps/client/src/static/icons/light/scanner.svg similarity index 100% rename from src/static/icons/light/scanner.svg rename to apps/client/src/static/icons/light/scanner.svg diff --git a/src/static/icons/light/scarecrow.svg b/apps/client/src/static/icons/light/scarecrow.svg similarity index 100% rename from src/static/icons/light/scarecrow.svg rename to apps/client/src/static/icons/light/scarecrow.svg diff --git a/src/static/icons/light/scarf.svg b/apps/client/src/static/icons/light/scarf.svg similarity index 100% rename from src/static/icons/light/scarf.svg rename to apps/client/src/static/icons/light/scarf.svg diff --git a/src/static/icons/light/school.svg b/apps/client/src/static/icons/light/school.svg similarity index 100% rename from src/static/icons/light/school.svg rename to apps/client/src/static/icons/light/school.svg diff --git a/src/static/icons/light/screwdriver.svg b/apps/client/src/static/icons/light/screwdriver.svg similarity index 100% rename from src/static/icons/light/screwdriver.svg rename to apps/client/src/static/icons/light/screwdriver.svg diff --git a/src/static/icons/light/scroll-old.svg b/apps/client/src/static/icons/light/scroll-old.svg similarity index 100% rename from src/static/icons/light/scroll-old.svg rename to apps/client/src/static/icons/light/scroll-old.svg diff --git a/src/static/icons/light/scroll.svg b/apps/client/src/static/icons/light/scroll.svg similarity index 100% rename from src/static/icons/light/scroll.svg rename to apps/client/src/static/icons/light/scroll.svg diff --git a/src/static/icons/light/scrubber.svg b/apps/client/src/static/icons/light/scrubber.svg similarity index 100% rename from src/static/icons/light/scrubber.svg rename to apps/client/src/static/icons/light/scrubber.svg diff --git a/src/static/icons/light/scythe.svg b/apps/client/src/static/icons/light/scythe.svg similarity index 100% rename from src/static/icons/light/scythe.svg rename to apps/client/src/static/icons/light/scythe.svg diff --git a/src/static/icons/light/sd-card.svg b/apps/client/src/static/icons/light/sd-card.svg similarity index 100% rename from src/static/icons/light/sd-card.svg rename to apps/client/src/static/icons/light/sd-card.svg diff --git a/src/static/icons/light/search-dollar.svg b/apps/client/src/static/icons/light/search-dollar.svg similarity index 100% rename from src/static/icons/light/search-dollar.svg rename to apps/client/src/static/icons/light/search-dollar.svg diff --git a/src/static/icons/light/search-location.svg b/apps/client/src/static/icons/light/search-location.svg similarity index 100% rename from src/static/icons/light/search-location.svg rename to apps/client/src/static/icons/light/search-location.svg diff --git a/src/static/icons/light/search-minus.svg b/apps/client/src/static/icons/light/search-minus.svg similarity index 100% rename from src/static/icons/light/search-minus.svg rename to apps/client/src/static/icons/light/search-minus.svg diff --git a/src/static/icons/light/search-plus.svg b/apps/client/src/static/icons/light/search-plus.svg similarity index 100% rename from src/static/icons/light/search-plus.svg rename to apps/client/src/static/icons/light/search-plus.svg diff --git a/src/static/icons/light/search.svg b/apps/client/src/static/icons/light/search.svg similarity index 100% rename from src/static/icons/light/search.svg rename to apps/client/src/static/icons/light/search.svg diff --git a/src/static/icons/light/seedling.svg b/apps/client/src/static/icons/light/seedling.svg similarity index 100% rename from src/static/icons/light/seedling.svg rename to apps/client/src/static/icons/light/seedling.svg diff --git a/src/static/icons/light/send-back.svg b/apps/client/src/static/icons/light/send-back.svg similarity index 100% rename from src/static/icons/light/send-back.svg rename to apps/client/src/static/icons/light/send-back.svg diff --git a/src/static/icons/light/send-backward.svg b/apps/client/src/static/icons/light/send-backward.svg similarity index 100% rename from src/static/icons/light/send-backward.svg rename to apps/client/src/static/icons/light/send-backward.svg diff --git a/src/static/icons/light/sensor-alert.svg b/apps/client/src/static/icons/light/sensor-alert.svg similarity index 100% rename from src/static/icons/light/sensor-alert.svg rename to apps/client/src/static/icons/light/sensor-alert.svg diff --git a/src/static/icons/light/sensor-fire.svg b/apps/client/src/static/icons/light/sensor-fire.svg similarity index 100% rename from src/static/icons/light/sensor-fire.svg rename to apps/client/src/static/icons/light/sensor-fire.svg diff --git a/src/static/icons/light/sensor-on.svg b/apps/client/src/static/icons/light/sensor-on.svg similarity index 100% rename from src/static/icons/light/sensor-on.svg rename to apps/client/src/static/icons/light/sensor-on.svg diff --git a/src/static/icons/light/sensor-smoke.svg b/apps/client/src/static/icons/light/sensor-smoke.svg similarity index 100% rename from src/static/icons/light/sensor-smoke.svg rename to apps/client/src/static/icons/light/sensor-smoke.svg diff --git a/src/static/icons/light/sensor.svg b/apps/client/src/static/icons/light/sensor.svg similarity index 100% rename from src/static/icons/light/sensor.svg rename to apps/client/src/static/icons/light/sensor.svg diff --git a/src/static/icons/light/server.svg b/apps/client/src/static/icons/light/server.svg similarity index 100% rename from src/static/icons/light/server.svg rename to apps/client/src/static/icons/light/server.svg diff --git a/src/static/icons/light/shapes.svg b/apps/client/src/static/icons/light/shapes.svg similarity index 100% rename from src/static/icons/light/shapes.svg rename to apps/client/src/static/icons/light/shapes.svg diff --git a/src/static/icons/light/share-all.svg b/apps/client/src/static/icons/light/share-all.svg similarity index 100% rename from src/static/icons/light/share-all.svg rename to apps/client/src/static/icons/light/share-all.svg diff --git a/src/static/icons/light/share-alt-square.svg b/apps/client/src/static/icons/light/share-alt-square.svg similarity index 100% rename from src/static/icons/light/share-alt-square.svg rename to apps/client/src/static/icons/light/share-alt-square.svg diff --git a/src/static/icons/light/share-alt.svg b/apps/client/src/static/icons/light/share-alt.svg similarity index 100% rename from src/static/icons/light/share-alt.svg rename to apps/client/src/static/icons/light/share-alt.svg diff --git a/src/static/icons/light/share-square.svg b/apps/client/src/static/icons/light/share-square.svg similarity index 100% rename from src/static/icons/light/share-square.svg rename to apps/client/src/static/icons/light/share-square.svg diff --git a/src/static/icons/light/share.svg b/apps/client/src/static/icons/light/share.svg similarity index 100% rename from src/static/icons/light/share.svg rename to apps/client/src/static/icons/light/share.svg diff --git a/src/static/icons/light/sheep.svg b/apps/client/src/static/icons/light/sheep.svg similarity index 100% rename from src/static/icons/light/sheep.svg rename to apps/client/src/static/icons/light/sheep.svg diff --git a/src/static/icons/light/shekel-sign.svg b/apps/client/src/static/icons/light/shekel-sign.svg similarity index 100% rename from src/static/icons/light/shekel-sign.svg rename to apps/client/src/static/icons/light/shekel-sign.svg diff --git a/src/static/icons/light/shield-alt.svg b/apps/client/src/static/icons/light/shield-alt.svg similarity index 100% rename from src/static/icons/light/shield-alt.svg rename to apps/client/src/static/icons/light/shield-alt.svg diff --git a/src/static/icons/light/shield-check.svg b/apps/client/src/static/icons/light/shield-check.svg similarity index 100% rename from src/static/icons/light/shield-check.svg rename to apps/client/src/static/icons/light/shield-check.svg diff --git a/src/static/icons/light/shield-cross.svg b/apps/client/src/static/icons/light/shield-cross.svg similarity index 100% rename from src/static/icons/light/shield-cross.svg rename to apps/client/src/static/icons/light/shield-cross.svg diff --git a/src/static/icons/light/shield.svg b/apps/client/src/static/icons/light/shield.svg similarity index 100% rename from src/static/icons/light/shield.svg rename to apps/client/src/static/icons/light/shield.svg diff --git a/src/static/icons/light/ship.svg b/apps/client/src/static/icons/light/ship.svg similarity index 100% rename from src/static/icons/light/ship.svg rename to apps/client/src/static/icons/light/ship.svg diff --git a/src/static/icons/light/shipping-fast.svg b/apps/client/src/static/icons/light/shipping-fast.svg similarity index 100% rename from src/static/icons/light/shipping-fast.svg rename to apps/client/src/static/icons/light/shipping-fast.svg diff --git a/src/static/icons/light/shipping-timed.svg b/apps/client/src/static/icons/light/shipping-timed.svg similarity index 100% rename from src/static/icons/light/shipping-timed.svg rename to apps/client/src/static/icons/light/shipping-timed.svg diff --git a/src/static/icons/light/shish-kebab.svg b/apps/client/src/static/icons/light/shish-kebab.svg similarity index 100% rename from src/static/icons/light/shish-kebab.svg rename to apps/client/src/static/icons/light/shish-kebab.svg diff --git a/src/static/icons/light/shoe-prints.svg b/apps/client/src/static/icons/light/shoe-prints.svg similarity index 100% rename from src/static/icons/light/shoe-prints.svg rename to apps/client/src/static/icons/light/shoe-prints.svg diff --git a/src/static/icons/light/shopping-bag.svg b/apps/client/src/static/icons/light/shopping-bag.svg similarity index 100% rename from src/static/icons/light/shopping-bag.svg rename to apps/client/src/static/icons/light/shopping-bag.svg diff --git a/src/static/icons/light/shopping-basket.svg b/apps/client/src/static/icons/light/shopping-basket.svg similarity index 100% rename from src/static/icons/light/shopping-basket.svg rename to apps/client/src/static/icons/light/shopping-basket.svg diff --git a/src/static/icons/light/shopping-cart.svg b/apps/client/src/static/icons/light/shopping-cart.svg similarity index 100% rename from src/static/icons/light/shopping-cart.svg rename to apps/client/src/static/icons/light/shopping-cart.svg diff --git a/src/static/icons/light/shovel-snow.svg b/apps/client/src/static/icons/light/shovel-snow.svg similarity index 100% rename from src/static/icons/light/shovel-snow.svg rename to apps/client/src/static/icons/light/shovel-snow.svg diff --git a/src/static/icons/light/shovel.svg b/apps/client/src/static/icons/light/shovel.svg similarity index 100% rename from src/static/icons/light/shovel.svg rename to apps/client/src/static/icons/light/shovel.svg diff --git a/src/static/icons/light/shower.svg b/apps/client/src/static/icons/light/shower.svg similarity index 100% rename from src/static/icons/light/shower.svg rename to apps/client/src/static/icons/light/shower.svg diff --git a/src/static/icons/light/shredder.svg b/apps/client/src/static/icons/light/shredder.svg similarity index 100% rename from src/static/icons/light/shredder.svg rename to apps/client/src/static/icons/light/shredder.svg diff --git a/src/static/icons/light/shuttle-van.svg b/apps/client/src/static/icons/light/shuttle-van.svg similarity index 100% rename from src/static/icons/light/shuttle-van.svg rename to apps/client/src/static/icons/light/shuttle-van.svg diff --git a/src/static/icons/light/shuttlecock.svg b/apps/client/src/static/icons/light/shuttlecock.svg similarity index 100% rename from src/static/icons/light/shuttlecock.svg rename to apps/client/src/static/icons/light/shuttlecock.svg diff --git a/src/static/icons/light/sickle.svg b/apps/client/src/static/icons/light/sickle.svg similarity index 100% rename from src/static/icons/light/sickle.svg rename to apps/client/src/static/icons/light/sickle.svg diff --git a/src/static/icons/light/sigma.svg b/apps/client/src/static/icons/light/sigma.svg similarity index 100% rename from src/static/icons/light/sigma.svg rename to apps/client/src/static/icons/light/sigma.svg diff --git a/src/static/icons/light/sign-in-alt.svg b/apps/client/src/static/icons/light/sign-in-alt.svg similarity index 100% rename from src/static/icons/light/sign-in-alt.svg rename to apps/client/src/static/icons/light/sign-in-alt.svg diff --git a/src/static/icons/light/sign-in.svg b/apps/client/src/static/icons/light/sign-in.svg similarity index 100% rename from src/static/icons/light/sign-in.svg rename to apps/client/src/static/icons/light/sign-in.svg diff --git a/src/static/icons/light/sign-language.svg b/apps/client/src/static/icons/light/sign-language.svg similarity index 100% rename from src/static/icons/light/sign-language.svg rename to apps/client/src/static/icons/light/sign-language.svg diff --git a/src/static/icons/light/sign-out-alt.svg b/apps/client/src/static/icons/light/sign-out-alt.svg similarity index 100% rename from src/static/icons/light/sign-out-alt.svg rename to apps/client/src/static/icons/light/sign-out-alt.svg diff --git a/src/static/icons/light/sign-out.svg b/apps/client/src/static/icons/light/sign-out.svg similarity index 100% rename from src/static/icons/light/sign-out.svg rename to apps/client/src/static/icons/light/sign-out.svg diff --git a/src/static/icons/light/sign.svg b/apps/client/src/static/icons/light/sign.svg similarity index 100% rename from src/static/icons/light/sign.svg rename to apps/client/src/static/icons/light/sign.svg diff --git a/src/static/icons/light/signal-1.svg b/apps/client/src/static/icons/light/signal-1.svg similarity index 100% rename from src/static/icons/light/signal-1.svg rename to apps/client/src/static/icons/light/signal-1.svg diff --git a/src/static/icons/light/signal-2.svg b/apps/client/src/static/icons/light/signal-2.svg similarity index 100% rename from src/static/icons/light/signal-2.svg rename to apps/client/src/static/icons/light/signal-2.svg diff --git a/src/static/icons/light/signal-3.svg b/apps/client/src/static/icons/light/signal-3.svg similarity index 100% rename from src/static/icons/light/signal-3.svg rename to apps/client/src/static/icons/light/signal-3.svg diff --git a/src/static/icons/light/signal-4.svg b/apps/client/src/static/icons/light/signal-4.svg similarity index 100% rename from src/static/icons/light/signal-4.svg rename to apps/client/src/static/icons/light/signal-4.svg diff --git a/src/static/icons/light/signal-alt-1.svg b/apps/client/src/static/icons/light/signal-alt-1.svg similarity index 100% rename from src/static/icons/light/signal-alt-1.svg rename to apps/client/src/static/icons/light/signal-alt-1.svg diff --git a/src/static/icons/light/signal-alt-2.svg b/apps/client/src/static/icons/light/signal-alt-2.svg similarity index 100% rename from src/static/icons/light/signal-alt-2.svg rename to apps/client/src/static/icons/light/signal-alt-2.svg diff --git a/src/static/icons/light/signal-alt-3.svg b/apps/client/src/static/icons/light/signal-alt-3.svg similarity index 100% rename from src/static/icons/light/signal-alt-3.svg rename to apps/client/src/static/icons/light/signal-alt-3.svg diff --git a/src/static/icons/light/signal-alt-slash.svg b/apps/client/src/static/icons/light/signal-alt-slash.svg similarity index 100% rename from src/static/icons/light/signal-alt-slash.svg rename to apps/client/src/static/icons/light/signal-alt-slash.svg diff --git a/src/static/icons/light/signal-alt.svg b/apps/client/src/static/icons/light/signal-alt.svg similarity index 100% rename from src/static/icons/light/signal-alt.svg rename to apps/client/src/static/icons/light/signal-alt.svg diff --git a/src/static/icons/light/signal-slash.svg b/apps/client/src/static/icons/light/signal-slash.svg similarity index 100% rename from src/static/icons/light/signal-slash.svg rename to apps/client/src/static/icons/light/signal-slash.svg diff --git a/src/static/icons/light/signal-stream.svg b/apps/client/src/static/icons/light/signal-stream.svg similarity index 100% rename from src/static/icons/light/signal-stream.svg rename to apps/client/src/static/icons/light/signal-stream.svg diff --git a/src/static/icons/light/signal.svg b/apps/client/src/static/icons/light/signal.svg similarity index 100% rename from src/static/icons/light/signal.svg rename to apps/client/src/static/icons/light/signal.svg diff --git a/src/static/icons/light/signature.svg b/apps/client/src/static/icons/light/signature.svg similarity index 100% rename from src/static/icons/light/signature.svg rename to apps/client/src/static/icons/light/signature.svg diff --git a/src/static/icons/light/sim-card.svg b/apps/client/src/static/icons/light/sim-card.svg similarity index 100% rename from src/static/icons/light/sim-card.svg rename to apps/client/src/static/icons/light/sim-card.svg diff --git a/src/static/icons/light/siren-on.svg b/apps/client/src/static/icons/light/siren-on.svg similarity index 100% rename from src/static/icons/light/siren-on.svg rename to apps/client/src/static/icons/light/siren-on.svg diff --git a/src/static/icons/light/siren.svg b/apps/client/src/static/icons/light/siren.svg similarity index 100% rename from src/static/icons/light/siren.svg rename to apps/client/src/static/icons/light/siren.svg diff --git a/src/static/icons/light/sitemap.svg b/apps/client/src/static/icons/light/sitemap.svg similarity index 100% rename from src/static/icons/light/sitemap.svg rename to apps/client/src/static/icons/light/sitemap.svg diff --git a/src/static/icons/light/skating.svg b/apps/client/src/static/icons/light/skating.svg similarity index 100% rename from src/static/icons/light/skating.svg rename to apps/client/src/static/icons/light/skating.svg diff --git a/src/static/icons/light/skeleton.svg b/apps/client/src/static/icons/light/skeleton.svg similarity index 100% rename from src/static/icons/light/skeleton.svg rename to apps/client/src/static/icons/light/skeleton.svg diff --git a/src/static/icons/light/ski-jump.svg b/apps/client/src/static/icons/light/ski-jump.svg similarity index 100% rename from src/static/icons/light/ski-jump.svg rename to apps/client/src/static/icons/light/ski-jump.svg diff --git a/src/static/icons/light/ski-lift.svg b/apps/client/src/static/icons/light/ski-lift.svg similarity index 100% rename from src/static/icons/light/ski-lift.svg rename to apps/client/src/static/icons/light/ski-lift.svg diff --git a/src/static/icons/light/skiing-nordic.svg b/apps/client/src/static/icons/light/skiing-nordic.svg similarity index 100% rename from src/static/icons/light/skiing-nordic.svg rename to apps/client/src/static/icons/light/skiing-nordic.svg diff --git a/src/static/icons/light/skiing.svg b/apps/client/src/static/icons/light/skiing.svg similarity index 100% rename from src/static/icons/light/skiing.svg rename to apps/client/src/static/icons/light/skiing.svg diff --git a/src/static/icons/light/skull-cow.svg b/apps/client/src/static/icons/light/skull-cow.svg similarity index 100% rename from src/static/icons/light/skull-cow.svg rename to apps/client/src/static/icons/light/skull-cow.svg diff --git a/src/static/icons/light/skull-crossbones.svg b/apps/client/src/static/icons/light/skull-crossbones.svg similarity index 100% rename from src/static/icons/light/skull-crossbones.svg rename to apps/client/src/static/icons/light/skull-crossbones.svg diff --git a/src/static/icons/light/skull.svg b/apps/client/src/static/icons/light/skull.svg similarity index 100% rename from src/static/icons/light/skull.svg rename to apps/client/src/static/icons/light/skull.svg diff --git a/src/static/icons/light/slash.svg b/apps/client/src/static/icons/light/slash.svg similarity index 100% rename from src/static/icons/light/slash.svg rename to apps/client/src/static/icons/light/slash.svg diff --git a/src/static/icons/light/sledding.svg b/apps/client/src/static/icons/light/sledding.svg similarity index 100% rename from src/static/icons/light/sledding.svg rename to apps/client/src/static/icons/light/sledding.svg diff --git a/src/static/icons/light/sleigh.svg b/apps/client/src/static/icons/light/sleigh.svg similarity index 100% rename from src/static/icons/light/sleigh.svg rename to apps/client/src/static/icons/light/sleigh.svg diff --git a/src/static/icons/light/sliders-h-square.svg b/apps/client/src/static/icons/light/sliders-h-square.svg similarity index 100% rename from src/static/icons/light/sliders-h-square.svg rename to apps/client/src/static/icons/light/sliders-h-square.svg diff --git a/src/static/icons/light/sliders-h.svg b/apps/client/src/static/icons/light/sliders-h.svg similarity index 100% rename from src/static/icons/light/sliders-h.svg rename to apps/client/src/static/icons/light/sliders-h.svg diff --git a/src/static/icons/light/sliders-v-square.svg b/apps/client/src/static/icons/light/sliders-v-square.svg similarity index 100% rename from src/static/icons/light/sliders-v-square.svg rename to apps/client/src/static/icons/light/sliders-v-square.svg diff --git a/src/static/icons/light/sliders-v.svg b/apps/client/src/static/icons/light/sliders-v.svg similarity index 100% rename from src/static/icons/light/sliders-v.svg rename to apps/client/src/static/icons/light/sliders-v.svg diff --git a/src/static/icons/light/smile-beam.svg b/apps/client/src/static/icons/light/smile-beam.svg similarity index 100% rename from src/static/icons/light/smile-beam.svg rename to apps/client/src/static/icons/light/smile-beam.svg diff --git a/src/static/icons/light/smile-plus.svg b/apps/client/src/static/icons/light/smile-plus.svg similarity index 100% rename from src/static/icons/light/smile-plus.svg rename to apps/client/src/static/icons/light/smile-plus.svg diff --git a/src/static/icons/light/smile-wink.svg b/apps/client/src/static/icons/light/smile-wink.svg similarity index 100% rename from src/static/icons/light/smile-wink.svg rename to apps/client/src/static/icons/light/smile-wink.svg diff --git a/src/static/icons/light/smile.svg b/apps/client/src/static/icons/light/smile.svg similarity index 100% rename from src/static/icons/light/smile.svg rename to apps/client/src/static/icons/light/smile.svg diff --git a/src/static/icons/light/smog.svg b/apps/client/src/static/icons/light/smog.svg similarity index 100% rename from src/static/icons/light/smog.svg rename to apps/client/src/static/icons/light/smog.svg diff --git a/src/static/icons/light/smoke.svg b/apps/client/src/static/icons/light/smoke.svg similarity index 100% rename from src/static/icons/light/smoke.svg rename to apps/client/src/static/icons/light/smoke.svg diff --git a/src/static/icons/light/smoking-ban.svg b/apps/client/src/static/icons/light/smoking-ban.svg similarity index 100% rename from src/static/icons/light/smoking-ban.svg rename to apps/client/src/static/icons/light/smoking-ban.svg diff --git a/src/static/icons/light/smoking.svg b/apps/client/src/static/icons/light/smoking.svg similarity index 100% rename from src/static/icons/light/smoking.svg rename to apps/client/src/static/icons/light/smoking.svg diff --git a/src/static/icons/light/sms.svg b/apps/client/src/static/icons/light/sms.svg similarity index 100% rename from src/static/icons/light/sms.svg rename to apps/client/src/static/icons/light/sms.svg diff --git a/src/static/icons/light/snake.svg b/apps/client/src/static/icons/light/snake.svg similarity index 100% rename from src/static/icons/light/snake.svg rename to apps/client/src/static/icons/light/snake.svg diff --git a/src/static/icons/light/snooze.svg b/apps/client/src/static/icons/light/snooze.svg similarity index 100% rename from src/static/icons/light/snooze.svg rename to apps/client/src/static/icons/light/snooze.svg diff --git a/src/static/icons/light/snow-blowing.svg b/apps/client/src/static/icons/light/snow-blowing.svg similarity index 100% rename from src/static/icons/light/snow-blowing.svg rename to apps/client/src/static/icons/light/snow-blowing.svg diff --git a/src/static/icons/light/snowboarding.svg b/apps/client/src/static/icons/light/snowboarding.svg similarity index 100% rename from src/static/icons/light/snowboarding.svg rename to apps/client/src/static/icons/light/snowboarding.svg diff --git a/src/static/icons/light/snowflake.svg b/apps/client/src/static/icons/light/snowflake.svg similarity index 100% rename from src/static/icons/light/snowflake.svg rename to apps/client/src/static/icons/light/snowflake.svg diff --git a/src/static/icons/light/snowflakes.svg b/apps/client/src/static/icons/light/snowflakes.svg similarity index 100% rename from src/static/icons/light/snowflakes.svg rename to apps/client/src/static/icons/light/snowflakes.svg diff --git a/src/static/icons/light/snowman.svg b/apps/client/src/static/icons/light/snowman.svg similarity index 100% rename from src/static/icons/light/snowman.svg rename to apps/client/src/static/icons/light/snowman.svg diff --git a/src/static/icons/light/snowmobile.svg b/apps/client/src/static/icons/light/snowmobile.svg similarity index 100% rename from src/static/icons/light/snowmobile.svg rename to apps/client/src/static/icons/light/snowmobile.svg diff --git a/src/static/icons/light/snowplow.svg b/apps/client/src/static/icons/light/snowplow.svg similarity index 100% rename from src/static/icons/light/snowplow.svg rename to apps/client/src/static/icons/light/snowplow.svg diff --git a/src/static/icons/light/socks.svg b/apps/client/src/static/icons/light/socks.svg similarity index 100% rename from src/static/icons/light/socks.svg rename to apps/client/src/static/icons/light/socks.svg diff --git a/src/static/icons/light/solar-panel.svg b/apps/client/src/static/icons/light/solar-panel.svg similarity index 100% rename from src/static/icons/light/solar-panel.svg rename to apps/client/src/static/icons/light/solar-panel.svg diff --git a/src/static/icons/light/solar-system.svg b/apps/client/src/static/icons/light/solar-system.svg similarity index 100% rename from src/static/icons/light/solar-system.svg rename to apps/client/src/static/icons/light/solar-system.svg diff --git a/src/static/icons/light/sort-alpha-down-alt.svg b/apps/client/src/static/icons/light/sort-alpha-down-alt.svg similarity index 100% rename from src/static/icons/light/sort-alpha-down-alt.svg rename to apps/client/src/static/icons/light/sort-alpha-down-alt.svg diff --git a/src/static/icons/light/sort-alpha-down.svg b/apps/client/src/static/icons/light/sort-alpha-down.svg similarity index 100% rename from src/static/icons/light/sort-alpha-down.svg rename to apps/client/src/static/icons/light/sort-alpha-down.svg diff --git a/src/static/icons/light/sort-alpha-up-alt.svg b/apps/client/src/static/icons/light/sort-alpha-up-alt.svg similarity index 100% rename from src/static/icons/light/sort-alpha-up-alt.svg rename to apps/client/src/static/icons/light/sort-alpha-up-alt.svg diff --git a/src/static/icons/light/sort-alpha-up.svg b/apps/client/src/static/icons/light/sort-alpha-up.svg similarity index 100% rename from src/static/icons/light/sort-alpha-up.svg rename to apps/client/src/static/icons/light/sort-alpha-up.svg diff --git a/src/static/icons/light/sort-alt.svg b/apps/client/src/static/icons/light/sort-alt.svg similarity index 100% rename from src/static/icons/light/sort-alt.svg rename to apps/client/src/static/icons/light/sort-alt.svg diff --git a/src/static/icons/light/sort-amount-down-alt.svg b/apps/client/src/static/icons/light/sort-amount-down-alt.svg similarity index 100% rename from src/static/icons/light/sort-amount-down-alt.svg rename to apps/client/src/static/icons/light/sort-amount-down-alt.svg diff --git a/src/static/icons/light/sort-amount-down.svg b/apps/client/src/static/icons/light/sort-amount-down.svg similarity index 100% rename from src/static/icons/light/sort-amount-down.svg rename to apps/client/src/static/icons/light/sort-amount-down.svg diff --git a/src/static/icons/light/sort-amount-up-alt.svg b/apps/client/src/static/icons/light/sort-amount-up-alt.svg similarity index 100% rename from src/static/icons/light/sort-amount-up-alt.svg rename to apps/client/src/static/icons/light/sort-amount-up-alt.svg diff --git a/src/static/icons/light/sort-amount-up.svg b/apps/client/src/static/icons/light/sort-amount-up.svg similarity index 100% rename from src/static/icons/light/sort-amount-up.svg rename to apps/client/src/static/icons/light/sort-amount-up.svg diff --git a/src/static/icons/light/sort-circle-down.svg b/apps/client/src/static/icons/light/sort-circle-down.svg similarity index 100% rename from src/static/icons/light/sort-circle-down.svg rename to apps/client/src/static/icons/light/sort-circle-down.svg diff --git a/src/static/icons/light/sort-circle-up.svg b/apps/client/src/static/icons/light/sort-circle-up.svg similarity index 100% rename from src/static/icons/light/sort-circle-up.svg rename to apps/client/src/static/icons/light/sort-circle-up.svg diff --git a/src/static/icons/light/sort-circle.svg b/apps/client/src/static/icons/light/sort-circle.svg similarity index 100% rename from src/static/icons/light/sort-circle.svg rename to apps/client/src/static/icons/light/sort-circle.svg diff --git a/src/static/icons/light/sort-down.svg b/apps/client/src/static/icons/light/sort-down.svg similarity index 100% rename from src/static/icons/light/sort-down.svg rename to apps/client/src/static/icons/light/sort-down.svg diff --git a/src/static/icons/light/sort-numeric-down-alt.svg b/apps/client/src/static/icons/light/sort-numeric-down-alt.svg similarity index 100% rename from src/static/icons/light/sort-numeric-down-alt.svg rename to apps/client/src/static/icons/light/sort-numeric-down-alt.svg diff --git a/src/static/icons/light/sort-numeric-down.svg b/apps/client/src/static/icons/light/sort-numeric-down.svg similarity index 100% rename from src/static/icons/light/sort-numeric-down.svg rename to apps/client/src/static/icons/light/sort-numeric-down.svg diff --git a/src/static/icons/light/sort-numeric-up-alt.svg b/apps/client/src/static/icons/light/sort-numeric-up-alt.svg similarity index 100% rename from src/static/icons/light/sort-numeric-up-alt.svg rename to apps/client/src/static/icons/light/sort-numeric-up-alt.svg diff --git a/src/static/icons/light/sort-numeric-up.svg b/apps/client/src/static/icons/light/sort-numeric-up.svg similarity index 100% rename from src/static/icons/light/sort-numeric-up.svg rename to apps/client/src/static/icons/light/sort-numeric-up.svg diff --git a/src/static/icons/light/sort-shapes-down-alt.svg b/apps/client/src/static/icons/light/sort-shapes-down-alt.svg similarity index 100% rename from src/static/icons/light/sort-shapes-down-alt.svg rename to apps/client/src/static/icons/light/sort-shapes-down-alt.svg diff --git a/src/static/icons/light/sort-shapes-down.svg b/apps/client/src/static/icons/light/sort-shapes-down.svg similarity index 100% rename from src/static/icons/light/sort-shapes-down.svg rename to apps/client/src/static/icons/light/sort-shapes-down.svg diff --git a/src/static/icons/light/sort-shapes-up-alt.svg b/apps/client/src/static/icons/light/sort-shapes-up-alt.svg similarity index 100% rename from src/static/icons/light/sort-shapes-up-alt.svg rename to apps/client/src/static/icons/light/sort-shapes-up-alt.svg diff --git a/src/static/icons/light/sort-shapes-up.svg b/apps/client/src/static/icons/light/sort-shapes-up.svg similarity index 100% rename from src/static/icons/light/sort-shapes-up.svg rename to apps/client/src/static/icons/light/sort-shapes-up.svg diff --git a/src/static/icons/light/sort-size-down-alt.svg b/apps/client/src/static/icons/light/sort-size-down-alt.svg similarity index 100% rename from src/static/icons/light/sort-size-down-alt.svg rename to apps/client/src/static/icons/light/sort-size-down-alt.svg diff --git a/src/static/icons/light/sort-size-down.svg b/apps/client/src/static/icons/light/sort-size-down.svg similarity index 100% rename from src/static/icons/light/sort-size-down.svg rename to apps/client/src/static/icons/light/sort-size-down.svg diff --git a/src/static/icons/light/sort-size-up-alt.svg b/apps/client/src/static/icons/light/sort-size-up-alt.svg similarity index 100% rename from src/static/icons/light/sort-size-up-alt.svg rename to apps/client/src/static/icons/light/sort-size-up-alt.svg diff --git a/src/static/icons/light/sort-size-up.svg b/apps/client/src/static/icons/light/sort-size-up.svg similarity index 100% rename from src/static/icons/light/sort-size-up.svg rename to apps/client/src/static/icons/light/sort-size-up.svg diff --git a/src/static/icons/light/sort-up.svg b/apps/client/src/static/icons/light/sort-up.svg similarity index 100% rename from src/static/icons/light/sort-up.svg rename to apps/client/src/static/icons/light/sort-up.svg diff --git a/src/static/icons/light/sort.svg b/apps/client/src/static/icons/light/sort.svg similarity index 100% rename from src/static/icons/light/sort.svg rename to apps/client/src/static/icons/light/sort.svg diff --git a/src/static/icons/light/soup.svg b/apps/client/src/static/icons/light/soup.svg similarity index 100% rename from src/static/icons/light/soup.svg rename to apps/client/src/static/icons/light/soup.svg diff --git a/src/static/icons/light/spa.svg b/apps/client/src/static/icons/light/spa.svg similarity index 100% rename from src/static/icons/light/spa.svg rename to apps/client/src/static/icons/light/spa.svg diff --git a/src/static/icons/light/space-shuttle.svg b/apps/client/src/static/icons/light/space-shuttle.svg similarity index 100% rename from src/static/icons/light/space-shuttle.svg rename to apps/client/src/static/icons/light/space-shuttle.svg diff --git a/src/static/icons/light/space-station-moon-alt.svg b/apps/client/src/static/icons/light/space-station-moon-alt.svg similarity index 100% rename from src/static/icons/light/space-station-moon-alt.svg rename to apps/client/src/static/icons/light/space-station-moon-alt.svg diff --git a/src/static/icons/light/space-station-moon.svg b/apps/client/src/static/icons/light/space-station-moon.svg similarity index 100% rename from src/static/icons/light/space-station-moon.svg rename to apps/client/src/static/icons/light/space-station-moon.svg diff --git a/src/static/icons/light/spade.svg b/apps/client/src/static/icons/light/spade.svg similarity index 100% rename from src/static/icons/light/spade.svg rename to apps/client/src/static/icons/light/spade.svg diff --git a/src/static/icons/light/sparkles.svg b/apps/client/src/static/icons/light/sparkles.svg similarity index 100% rename from src/static/icons/light/sparkles.svg rename to apps/client/src/static/icons/light/sparkles.svg diff --git a/src/static/icons/light/speaker.svg b/apps/client/src/static/icons/light/speaker.svg similarity index 100% rename from src/static/icons/light/speaker.svg rename to apps/client/src/static/icons/light/speaker.svg diff --git a/src/static/icons/light/speakers.svg b/apps/client/src/static/icons/light/speakers.svg similarity index 100% rename from src/static/icons/light/speakers.svg rename to apps/client/src/static/icons/light/speakers.svg diff --git a/src/static/icons/light/spell-check.svg b/apps/client/src/static/icons/light/spell-check.svg similarity index 100% rename from src/static/icons/light/spell-check.svg rename to apps/client/src/static/icons/light/spell-check.svg diff --git a/src/static/icons/light/spider-black-widow.svg b/apps/client/src/static/icons/light/spider-black-widow.svg similarity index 100% rename from src/static/icons/light/spider-black-widow.svg rename to apps/client/src/static/icons/light/spider-black-widow.svg diff --git a/src/static/icons/light/spider-web.svg b/apps/client/src/static/icons/light/spider-web.svg similarity index 100% rename from src/static/icons/light/spider-web.svg rename to apps/client/src/static/icons/light/spider-web.svg diff --git a/src/static/icons/light/spider.svg b/apps/client/src/static/icons/light/spider.svg similarity index 100% rename from src/static/icons/light/spider.svg rename to apps/client/src/static/icons/light/spider.svg diff --git a/src/static/icons/light/spinner-third.svg b/apps/client/src/static/icons/light/spinner-third.svg similarity index 100% rename from src/static/icons/light/spinner-third.svg rename to apps/client/src/static/icons/light/spinner-third.svg diff --git a/src/static/icons/light/spinner.svg b/apps/client/src/static/icons/light/spinner.svg similarity index 100% rename from src/static/icons/light/spinner.svg rename to apps/client/src/static/icons/light/spinner.svg diff --git a/src/static/icons/light/splotch.svg b/apps/client/src/static/icons/light/splotch.svg similarity index 100% rename from src/static/icons/light/splotch.svg rename to apps/client/src/static/icons/light/splotch.svg diff --git a/src/static/icons/light/spray-can.svg b/apps/client/src/static/icons/light/spray-can.svg similarity index 100% rename from src/static/icons/light/spray-can.svg rename to apps/client/src/static/icons/light/spray-can.svg diff --git a/src/static/icons/light/sprinkler.svg b/apps/client/src/static/icons/light/sprinkler.svg similarity index 100% rename from src/static/icons/light/sprinkler.svg rename to apps/client/src/static/icons/light/sprinkler.svg diff --git a/src/static/icons/light/square-full.svg b/apps/client/src/static/icons/light/square-full.svg similarity index 100% rename from src/static/icons/light/square-full.svg rename to apps/client/src/static/icons/light/square-full.svg diff --git a/src/static/icons/light/square-root-alt.svg b/apps/client/src/static/icons/light/square-root-alt.svg similarity index 100% rename from src/static/icons/light/square-root-alt.svg rename to apps/client/src/static/icons/light/square-root-alt.svg diff --git a/src/static/icons/light/square-root.svg b/apps/client/src/static/icons/light/square-root.svg similarity index 100% rename from src/static/icons/light/square-root.svg rename to apps/client/src/static/icons/light/square-root.svg diff --git a/src/static/icons/light/square.svg b/apps/client/src/static/icons/light/square.svg similarity index 100% rename from src/static/icons/light/square.svg rename to apps/client/src/static/icons/light/square.svg diff --git a/src/static/icons/light/squirrel.svg b/apps/client/src/static/icons/light/squirrel.svg similarity index 100% rename from src/static/icons/light/squirrel.svg rename to apps/client/src/static/icons/light/squirrel.svg diff --git a/src/static/icons/light/staff.svg b/apps/client/src/static/icons/light/staff.svg similarity index 100% rename from src/static/icons/light/staff.svg rename to apps/client/src/static/icons/light/staff.svg diff --git a/src/static/icons/light/stamp.svg b/apps/client/src/static/icons/light/stamp.svg similarity index 100% rename from src/static/icons/light/stamp.svg rename to apps/client/src/static/icons/light/stamp.svg diff --git a/src/static/icons/light/star-and-crescent.svg b/apps/client/src/static/icons/light/star-and-crescent.svg similarity index 100% rename from src/static/icons/light/star-and-crescent.svg rename to apps/client/src/static/icons/light/star-and-crescent.svg diff --git a/src/static/icons/light/star-christmas.svg b/apps/client/src/static/icons/light/star-christmas.svg similarity index 100% rename from src/static/icons/light/star-christmas.svg rename to apps/client/src/static/icons/light/star-christmas.svg diff --git a/src/static/icons/light/star-exclamation.svg b/apps/client/src/static/icons/light/star-exclamation.svg similarity index 100% rename from src/static/icons/light/star-exclamation.svg rename to apps/client/src/static/icons/light/star-exclamation.svg diff --git a/src/static/icons/light/star-half-alt.svg b/apps/client/src/static/icons/light/star-half-alt.svg similarity index 100% rename from src/static/icons/light/star-half-alt.svg rename to apps/client/src/static/icons/light/star-half-alt.svg diff --git a/src/static/icons/light/star-half.svg b/apps/client/src/static/icons/light/star-half.svg similarity index 100% rename from src/static/icons/light/star-half.svg rename to apps/client/src/static/icons/light/star-half.svg diff --git a/src/static/icons/light/star-of-david.svg b/apps/client/src/static/icons/light/star-of-david.svg similarity index 100% rename from src/static/icons/light/star-of-david.svg rename to apps/client/src/static/icons/light/star-of-david.svg diff --git a/src/static/icons/light/star-of-life.svg b/apps/client/src/static/icons/light/star-of-life.svg similarity index 100% rename from src/static/icons/light/star-of-life.svg rename to apps/client/src/static/icons/light/star-of-life.svg diff --git a/src/static/icons/light/star-shooting.svg b/apps/client/src/static/icons/light/star-shooting.svg similarity index 100% rename from src/static/icons/light/star-shooting.svg rename to apps/client/src/static/icons/light/star-shooting.svg diff --git a/src/static/icons/light/star.svg b/apps/client/src/static/icons/light/star.svg similarity index 100% rename from src/static/icons/light/star.svg rename to apps/client/src/static/icons/light/star.svg diff --git a/src/static/icons/light/starfighter-alt.svg b/apps/client/src/static/icons/light/starfighter-alt.svg similarity index 100% rename from src/static/icons/light/starfighter-alt.svg rename to apps/client/src/static/icons/light/starfighter-alt.svg diff --git a/src/static/icons/light/starfighter.svg b/apps/client/src/static/icons/light/starfighter.svg similarity index 100% rename from src/static/icons/light/starfighter.svg rename to apps/client/src/static/icons/light/starfighter.svg diff --git a/src/static/icons/light/stars.svg b/apps/client/src/static/icons/light/stars.svg similarity index 100% rename from src/static/icons/light/stars.svg rename to apps/client/src/static/icons/light/stars.svg diff --git a/src/static/icons/light/starship-freighter.svg b/apps/client/src/static/icons/light/starship-freighter.svg similarity index 100% rename from src/static/icons/light/starship-freighter.svg rename to apps/client/src/static/icons/light/starship-freighter.svg diff --git a/src/static/icons/light/starship.svg b/apps/client/src/static/icons/light/starship.svg similarity index 100% rename from src/static/icons/light/starship.svg rename to apps/client/src/static/icons/light/starship.svg diff --git a/src/static/icons/light/steak.svg b/apps/client/src/static/icons/light/steak.svg similarity index 100% rename from src/static/icons/light/steak.svg rename to apps/client/src/static/icons/light/steak.svg diff --git a/src/static/icons/light/steering-wheel.svg b/apps/client/src/static/icons/light/steering-wheel.svg similarity index 100% rename from src/static/icons/light/steering-wheel.svg rename to apps/client/src/static/icons/light/steering-wheel.svg diff --git a/src/static/icons/light/step-backward.svg b/apps/client/src/static/icons/light/step-backward.svg similarity index 100% rename from src/static/icons/light/step-backward.svg rename to apps/client/src/static/icons/light/step-backward.svg diff --git a/src/static/icons/light/step-forward.svg b/apps/client/src/static/icons/light/step-forward.svg similarity index 100% rename from src/static/icons/light/step-forward.svg rename to apps/client/src/static/icons/light/step-forward.svg diff --git a/src/static/icons/light/stethoscope.svg b/apps/client/src/static/icons/light/stethoscope.svg similarity index 100% rename from src/static/icons/light/stethoscope.svg rename to apps/client/src/static/icons/light/stethoscope.svg diff --git a/src/static/icons/light/sticky-note.svg b/apps/client/src/static/icons/light/sticky-note.svg similarity index 100% rename from src/static/icons/light/sticky-note.svg rename to apps/client/src/static/icons/light/sticky-note.svg diff --git a/src/static/icons/light/stocking.svg b/apps/client/src/static/icons/light/stocking.svg similarity index 100% rename from src/static/icons/light/stocking.svg rename to apps/client/src/static/icons/light/stocking.svg diff --git a/src/static/icons/light/stomach.svg b/apps/client/src/static/icons/light/stomach.svg similarity index 100% rename from src/static/icons/light/stomach.svg rename to apps/client/src/static/icons/light/stomach.svg diff --git a/src/static/icons/light/stop-circle.svg b/apps/client/src/static/icons/light/stop-circle.svg similarity index 100% rename from src/static/icons/light/stop-circle.svg rename to apps/client/src/static/icons/light/stop-circle.svg diff --git a/src/static/icons/light/stop.svg b/apps/client/src/static/icons/light/stop.svg similarity index 100% rename from src/static/icons/light/stop.svg rename to apps/client/src/static/icons/light/stop.svg diff --git a/src/static/icons/light/stopwatch.svg b/apps/client/src/static/icons/light/stopwatch.svg similarity index 100% rename from src/static/icons/light/stopwatch.svg rename to apps/client/src/static/icons/light/stopwatch.svg diff --git a/src/static/icons/light/store-alt.svg b/apps/client/src/static/icons/light/store-alt.svg similarity index 100% rename from src/static/icons/light/store-alt.svg rename to apps/client/src/static/icons/light/store-alt.svg diff --git a/src/static/icons/light/store.svg b/apps/client/src/static/icons/light/store.svg similarity index 100% rename from src/static/icons/light/store.svg rename to apps/client/src/static/icons/light/store.svg diff --git a/src/static/icons/light/stream.svg b/apps/client/src/static/icons/light/stream.svg similarity index 100% rename from src/static/icons/light/stream.svg rename to apps/client/src/static/icons/light/stream.svg diff --git a/src/static/icons/light/street-view.svg b/apps/client/src/static/icons/light/street-view.svg similarity index 100% rename from src/static/icons/light/street-view.svg rename to apps/client/src/static/icons/light/street-view.svg diff --git a/src/static/icons/light/stretcher.svg b/apps/client/src/static/icons/light/stretcher.svg similarity index 100% rename from src/static/icons/light/stretcher.svg rename to apps/client/src/static/icons/light/stretcher.svg diff --git a/src/static/icons/light/strikethrough.svg b/apps/client/src/static/icons/light/strikethrough.svg similarity index 100% rename from src/static/icons/light/strikethrough.svg rename to apps/client/src/static/icons/light/strikethrough.svg diff --git a/src/static/icons/light/stroopwafel.svg b/apps/client/src/static/icons/light/stroopwafel.svg similarity index 100% rename from src/static/icons/light/stroopwafel.svg rename to apps/client/src/static/icons/light/stroopwafel.svg diff --git a/src/static/icons/light/subscript.svg b/apps/client/src/static/icons/light/subscript.svg similarity index 100% rename from src/static/icons/light/subscript.svg rename to apps/client/src/static/icons/light/subscript.svg diff --git a/src/static/icons/light/subway.svg b/apps/client/src/static/icons/light/subway.svg similarity index 100% rename from src/static/icons/light/subway.svg rename to apps/client/src/static/icons/light/subway.svg diff --git a/src/static/icons/light/suitcase-rolling.svg b/apps/client/src/static/icons/light/suitcase-rolling.svg similarity index 100% rename from src/static/icons/light/suitcase-rolling.svg rename to apps/client/src/static/icons/light/suitcase-rolling.svg diff --git a/src/static/icons/light/suitcase.svg b/apps/client/src/static/icons/light/suitcase.svg similarity index 100% rename from src/static/icons/light/suitcase.svg rename to apps/client/src/static/icons/light/suitcase.svg diff --git a/src/static/icons/light/sun-cloud.svg b/apps/client/src/static/icons/light/sun-cloud.svg similarity index 100% rename from src/static/icons/light/sun-cloud.svg rename to apps/client/src/static/icons/light/sun-cloud.svg diff --git a/src/static/icons/light/sun-dust.svg b/apps/client/src/static/icons/light/sun-dust.svg similarity index 100% rename from src/static/icons/light/sun-dust.svg rename to apps/client/src/static/icons/light/sun-dust.svg diff --git a/src/static/icons/light/sun-haze.svg b/apps/client/src/static/icons/light/sun-haze.svg similarity index 100% rename from src/static/icons/light/sun-haze.svg rename to apps/client/src/static/icons/light/sun-haze.svg diff --git a/src/static/icons/light/sun.svg b/apps/client/src/static/icons/light/sun.svg similarity index 100% rename from src/static/icons/light/sun.svg rename to apps/client/src/static/icons/light/sun.svg diff --git a/src/static/icons/light/sunglasses.svg b/apps/client/src/static/icons/light/sunglasses.svg similarity index 100% rename from src/static/icons/light/sunglasses.svg rename to apps/client/src/static/icons/light/sunglasses.svg diff --git a/src/static/icons/light/sunrise.svg b/apps/client/src/static/icons/light/sunrise.svg similarity index 100% rename from src/static/icons/light/sunrise.svg rename to apps/client/src/static/icons/light/sunrise.svg diff --git a/src/static/icons/light/sunset.svg b/apps/client/src/static/icons/light/sunset.svg similarity index 100% rename from src/static/icons/light/sunset.svg rename to apps/client/src/static/icons/light/sunset.svg diff --git a/src/static/icons/light/superscript.svg b/apps/client/src/static/icons/light/superscript.svg similarity index 100% rename from src/static/icons/light/superscript.svg rename to apps/client/src/static/icons/light/superscript.svg diff --git a/src/static/icons/light/surprise.svg b/apps/client/src/static/icons/light/surprise.svg similarity index 100% rename from src/static/icons/light/surprise.svg rename to apps/client/src/static/icons/light/surprise.svg diff --git a/src/static/icons/light/swatchbook.svg b/apps/client/src/static/icons/light/swatchbook.svg similarity index 100% rename from src/static/icons/light/swatchbook.svg rename to apps/client/src/static/icons/light/swatchbook.svg diff --git a/src/static/icons/light/swimmer.svg b/apps/client/src/static/icons/light/swimmer.svg similarity index 100% rename from src/static/icons/light/swimmer.svg rename to apps/client/src/static/icons/light/swimmer.svg diff --git a/src/static/icons/light/swimming-pool.svg b/apps/client/src/static/icons/light/swimming-pool.svg similarity index 100% rename from src/static/icons/light/swimming-pool.svg rename to apps/client/src/static/icons/light/swimming-pool.svg diff --git a/src/static/icons/light/sword-laser-alt.svg b/apps/client/src/static/icons/light/sword-laser-alt.svg similarity index 100% rename from src/static/icons/light/sword-laser-alt.svg rename to apps/client/src/static/icons/light/sword-laser-alt.svg diff --git a/src/static/icons/light/sword-laser.svg b/apps/client/src/static/icons/light/sword-laser.svg similarity index 100% rename from src/static/icons/light/sword-laser.svg rename to apps/client/src/static/icons/light/sword-laser.svg diff --git a/src/static/icons/light/sword.svg b/apps/client/src/static/icons/light/sword.svg similarity index 100% rename from src/static/icons/light/sword.svg rename to apps/client/src/static/icons/light/sword.svg diff --git a/src/static/icons/light/swords-laser.svg b/apps/client/src/static/icons/light/swords-laser.svg similarity index 100% rename from src/static/icons/light/swords-laser.svg rename to apps/client/src/static/icons/light/swords-laser.svg diff --git a/src/static/icons/light/swords.svg b/apps/client/src/static/icons/light/swords.svg similarity index 100% rename from src/static/icons/light/swords.svg rename to apps/client/src/static/icons/light/swords.svg diff --git a/src/static/icons/light/synagogue.svg b/apps/client/src/static/icons/light/synagogue.svg similarity index 100% rename from src/static/icons/light/synagogue.svg rename to apps/client/src/static/icons/light/synagogue.svg diff --git a/src/static/icons/light/sync-alt.svg b/apps/client/src/static/icons/light/sync-alt.svg similarity index 100% rename from src/static/icons/light/sync-alt.svg rename to apps/client/src/static/icons/light/sync-alt.svg diff --git a/src/static/icons/light/sync.svg b/apps/client/src/static/icons/light/sync.svg similarity index 100% rename from src/static/icons/light/sync.svg rename to apps/client/src/static/icons/light/sync.svg diff --git a/src/static/icons/light/syringe.svg b/apps/client/src/static/icons/light/syringe.svg similarity index 100% rename from src/static/icons/light/syringe.svg rename to apps/client/src/static/icons/light/syringe.svg diff --git a/src/static/icons/light/table-tennis.svg b/apps/client/src/static/icons/light/table-tennis.svg similarity index 100% rename from src/static/icons/light/table-tennis.svg rename to apps/client/src/static/icons/light/table-tennis.svg diff --git a/src/static/icons/light/table.svg b/apps/client/src/static/icons/light/table.svg similarity index 100% rename from src/static/icons/light/table.svg rename to apps/client/src/static/icons/light/table.svg diff --git a/src/static/icons/light/tablet-alt.svg b/apps/client/src/static/icons/light/tablet-alt.svg similarity index 100% rename from src/static/icons/light/tablet-alt.svg rename to apps/client/src/static/icons/light/tablet-alt.svg diff --git a/src/static/icons/light/tablet-android-alt.svg b/apps/client/src/static/icons/light/tablet-android-alt.svg similarity index 100% rename from src/static/icons/light/tablet-android-alt.svg rename to apps/client/src/static/icons/light/tablet-android-alt.svg diff --git a/src/static/icons/light/tablet-android.svg b/apps/client/src/static/icons/light/tablet-android.svg similarity index 100% rename from src/static/icons/light/tablet-android.svg rename to apps/client/src/static/icons/light/tablet-android.svg diff --git a/src/static/icons/light/tablet-rugged.svg b/apps/client/src/static/icons/light/tablet-rugged.svg similarity index 100% rename from src/static/icons/light/tablet-rugged.svg rename to apps/client/src/static/icons/light/tablet-rugged.svg diff --git a/src/static/icons/light/tablet.svg b/apps/client/src/static/icons/light/tablet.svg similarity index 100% rename from src/static/icons/light/tablet.svg rename to apps/client/src/static/icons/light/tablet.svg diff --git a/src/static/icons/light/tablets.svg b/apps/client/src/static/icons/light/tablets.svg similarity index 100% rename from src/static/icons/light/tablets.svg rename to apps/client/src/static/icons/light/tablets.svg diff --git a/src/static/icons/light/tachometer-alt-average.svg b/apps/client/src/static/icons/light/tachometer-alt-average.svg similarity index 100% rename from src/static/icons/light/tachometer-alt-average.svg rename to apps/client/src/static/icons/light/tachometer-alt-average.svg diff --git a/src/static/icons/light/tachometer-alt-fast.svg b/apps/client/src/static/icons/light/tachometer-alt-fast.svg similarity index 100% rename from src/static/icons/light/tachometer-alt-fast.svg rename to apps/client/src/static/icons/light/tachometer-alt-fast.svg diff --git a/src/static/icons/light/tachometer-alt-fastest.svg b/apps/client/src/static/icons/light/tachometer-alt-fastest.svg similarity index 100% rename from src/static/icons/light/tachometer-alt-fastest.svg rename to apps/client/src/static/icons/light/tachometer-alt-fastest.svg diff --git a/src/static/icons/light/tachometer-alt-slow.svg b/apps/client/src/static/icons/light/tachometer-alt-slow.svg similarity index 100% rename from src/static/icons/light/tachometer-alt-slow.svg rename to apps/client/src/static/icons/light/tachometer-alt-slow.svg diff --git a/src/static/icons/light/tachometer-alt-slowest.svg b/apps/client/src/static/icons/light/tachometer-alt-slowest.svg similarity index 100% rename from src/static/icons/light/tachometer-alt-slowest.svg rename to apps/client/src/static/icons/light/tachometer-alt-slowest.svg diff --git a/src/static/icons/light/tachometer-alt.svg b/apps/client/src/static/icons/light/tachometer-alt.svg similarity index 100% rename from src/static/icons/light/tachometer-alt.svg rename to apps/client/src/static/icons/light/tachometer-alt.svg diff --git a/src/static/icons/light/tachometer-average.svg b/apps/client/src/static/icons/light/tachometer-average.svg similarity index 100% rename from src/static/icons/light/tachometer-average.svg rename to apps/client/src/static/icons/light/tachometer-average.svg diff --git a/src/static/icons/light/tachometer-fast.svg b/apps/client/src/static/icons/light/tachometer-fast.svg similarity index 100% rename from src/static/icons/light/tachometer-fast.svg rename to apps/client/src/static/icons/light/tachometer-fast.svg diff --git a/src/static/icons/light/tachometer-fastest.svg b/apps/client/src/static/icons/light/tachometer-fastest.svg similarity index 100% rename from src/static/icons/light/tachometer-fastest.svg rename to apps/client/src/static/icons/light/tachometer-fastest.svg diff --git a/src/static/icons/light/tachometer-slow.svg b/apps/client/src/static/icons/light/tachometer-slow.svg similarity index 100% rename from src/static/icons/light/tachometer-slow.svg rename to apps/client/src/static/icons/light/tachometer-slow.svg diff --git a/src/static/icons/light/tachometer-slowest.svg b/apps/client/src/static/icons/light/tachometer-slowest.svg similarity index 100% rename from src/static/icons/light/tachometer-slowest.svg rename to apps/client/src/static/icons/light/tachometer-slowest.svg diff --git a/src/static/icons/light/tachometer.svg b/apps/client/src/static/icons/light/tachometer.svg similarity index 100% rename from src/static/icons/light/tachometer.svg rename to apps/client/src/static/icons/light/tachometer.svg diff --git a/src/static/icons/light/taco.svg b/apps/client/src/static/icons/light/taco.svg similarity index 100% rename from src/static/icons/light/taco.svg rename to apps/client/src/static/icons/light/taco.svg diff --git a/src/static/icons/light/tag.svg b/apps/client/src/static/icons/light/tag.svg similarity index 100% rename from src/static/icons/light/tag.svg rename to apps/client/src/static/icons/light/tag.svg diff --git a/src/static/icons/light/tags.svg b/apps/client/src/static/icons/light/tags.svg similarity index 100% rename from src/static/icons/light/tags.svg rename to apps/client/src/static/icons/light/tags.svg diff --git a/src/static/icons/light/tally.svg b/apps/client/src/static/icons/light/tally.svg similarity index 100% rename from src/static/icons/light/tally.svg rename to apps/client/src/static/icons/light/tally.svg diff --git a/src/static/icons/light/tanakh.svg b/apps/client/src/static/icons/light/tanakh.svg similarity index 100% rename from src/static/icons/light/tanakh.svg rename to apps/client/src/static/icons/light/tanakh.svg diff --git a/src/static/icons/light/tape.svg b/apps/client/src/static/icons/light/tape.svg similarity index 100% rename from src/static/icons/light/tape.svg rename to apps/client/src/static/icons/light/tape.svg diff --git a/src/static/icons/light/tasks-alt.svg b/apps/client/src/static/icons/light/tasks-alt.svg similarity index 100% rename from src/static/icons/light/tasks-alt.svg rename to apps/client/src/static/icons/light/tasks-alt.svg diff --git a/src/static/icons/light/tasks.svg b/apps/client/src/static/icons/light/tasks.svg similarity index 100% rename from src/static/icons/light/tasks.svg rename to apps/client/src/static/icons/light/tasks.svg diff --git a/src/static/icons/light/taxi.svg b/apps/client/src/static/icons/light/taxi.svg similarity index 100% rename from src/static/icons/light/taxi.svg rename to apps/client/src/static/icons/light/taxi.svg diff --git a/src/static/icons/light/teeth-open.svg b/apps/client/src/static/icons/light/teeth-open.svg similarity index 100% rename from src/static/icons/light/teeth-open.svg rename to apps/client/src/static/icons/light/teeth-open.svg diff --git a/src/static/icons/light/teeth.svg b/apps/client/src/static/icons/light/teeth.svg similarity index 100% rename from src/static/icons/light/teeth.svg rename to apps/client/src/static/icons/light/teeth.svg diff --git a/src/static/icons/light/telescope.svg b/apps/client/src/static/icons/light/telescope.svg similarity index 100% rename from src/static/icons/light/telescope.svg rename to apps/client/src/static/icons/light/telescope.svg diff --git a/src/static/icons/light/temperature-down.svg b/apps/client/src/static/icons/light/temperature-down.svg similarity index 100% rename from src/static/icons/light/temperature-down.svg rename to apps/client/src/static/icons/light/temperature-down.svg diff --git a/src/static/icons/light/temperature-frigid.svg b/apps/client/src/static/icons/light/temperature-frigid.svg similarity index 100% rename from src/static/icons/light/temperature-frigid.svg rename to apps/client/src/static/icons/light/temperature-frigid.svg diff --git a/src/static/icons/light/temperature-high.svg b/apps/client/src/static/icons/light/temperature-high.svg similarity index 100% rename from src/static/icons/light/temperature-high.svg rename to apps/client/src/static/icons/light/temperature-high.svg diff --git a/src/static/icons/light/temperature-hot.svg b/apps/client/src/static/icons/light/temperature-hot.svg similarity index 100% rename from src/static/icons/light/temperature-hot.svg rename to apps/client/src/static/icons/light/temperature-hot.svg diff --git a/src/static/icons/light/temperature-low.svg b/apps/client/src/static/icons/light/temperature-low.svg similarity index 100% rename from src/static/icons/light/temperature-low.svg rename to apps/client/src/static/icons/light/temperature-low.svg diff --git a/src/static/icons/light/temperature-up.svg b/apps/client/src/static/icons/light/temperature-up.svg similarity index 100% rename from src/static/icons/light/temperature-up.svg rename to apps/client/src/static/icons/light/temperature-up.svg diff --git a/src/static/icons/light/tenge.svg b/apps/client/src/static/icons/light/tenge.svg similarity index 100% rename from src/static/icons/light/tenge.svg rename to apps/client/src/static/icons/light/tenge.svg diff --git a/src/static/icons/light/tennis-ball.svg b/apps/client/src/static/icons/light/tennis-ball.svg similarity index 100% rename from src/static/icons/light/tennis-ball.svg rename to apps/client/src/static/icons/light/tennis-ball.svg diff --git a/src/static/icons/light/terminal.svg b/apps/client/src/static/icons/light/terminal.svg similarity index 100% rename from src/static/icons/light/terminal.svg rename to apps/client/src/static/icons/light/terminal.svg diff --git a/src/static/icons/light/text-height.svg b/apps/client/src/static/icons/light/text-height.svg similarity index 100% rename from src/static/icons/light/text-height.svg rename to apps/client/src/static/icons/light/text-height.svg diff --git a/src/static/icons/light/text-size.svg b/apps/client/src/static/icons/light/text-size.svg similarity index 100% rename from src/static/icons/light/text-size.svg rename to apps/client/src/static/icons/light/text-size.svg diff --git a/src/static/icons/light/text-width.svg b/apps/client/src/static/icons/light/text-width.svg similarity index 100% rename from src/static/icons/light/text-width.svg rename to apps/client/src/static/icons/light/text-width.svg diff --git a/src/static/icons/light/text.svg b/apps/client/src/static/icons/light/text.svg similarity index 100% rename from src/static/icons/light/text.svg rename to apps/client/src/static/icons/light/text.svg diff --git a/src/static/icons/light/th-large.svg b/apps/client/src/static/icons/light/th-large.svg similarity index 100% rename from src/static/icons/light/th-large.svg rename to apps/client/src/static/icons/light/th-large.svg diff --git a/src/static/icons/light/th-list.svg b/apps/client/src/static/icons/light/th-list.svg similarity index 100% rename from src/static/icons/light/th-list.svg rename to apps/client/src/static/icons/light/th-list.svg diff --git a/src/static/icons/light/th.svg b/apps/client/src/static/icons/light/th.svg similarity index 100% rename from src/static/icons/light/th.svg rename to apps/client/src/static/icons/light/th.svg diff --git a/src/static/icons/light/theater-masks.svg b/apps/client/src/static/icons/light/theater-masks.svg similarity index 100% rename from src/static/icons/light/theater-masks.svg rename to apps/client/src/static/icons/light/theater-masks.svg diff --git a/src/static/icons/light/thermometer-empty.svg b/apps/client/src/static/icons/light/thermometer-empty.svg similarity index 100% rename from src/static/icons/light/thermometer-empty.svg rename to apps/client/src/static/icons/light/thermometer-empty.svg diff --git a/src/static/icons/light/thermometer-full.svg b/apps/client/src/static/icons/light/thermometer-full.svg similarity index 100% rename from src/static/icons/light/thermometer-full.svg rename to apps/client/src/static/icons/light/thermometer-full.svg diff --git a/src/static/icons/light/thermometer-half.svg b/apps/client/src/static/icons/light/thermometer-half.svg similarity index 100% rename from src/static/icons/light/thermometer-half.svg rename to apps/client/src/static/icons/light/thermometer-half.svg diff --git a/src/static/icons/light/thermometer-quarter.svg b/apps/client/src/static/icons/light/thermometer-quarter.svg similarity index 100% rename from src/static/icons/light/thermometer-quarter.svg rename to apps/client/src/static/icons/light/thermometer-quarter.svg diff --git a/src/static/icons/light/thermometer-three-quarters.svg b/apps/client/src/static/icons/light/thermometer-three-quarters.svg similarity index 100% rename from src/static/icons/light/thermometer-three-quarters.svg rename to apps/client/src/static/icons/light/thermometer-three-quarters.svg diff --git a/src/static/icons/light/thermometer.svg b/apps/client/src/static/icons/light/thermometer.svg similarity index 100% rename from src/static/icons/light/thermometer.svg rename to apps/client/src/static/icons/light/thermometer.svg diff --git a/src/static/icons/light/theta.svg b/apps/client/src/static/icons/light/theta.svg similarity index 100% rename from src/static/icons/light/theta.svg rename to apps/client/src/static/icons/light/theta.svg diff --git a/src/static/icons/light/thumbs-down.svg b/apps/client/src/static/icons/light/thumbs-down.svg similarity index 100% rename from src/static/icons/light/thumbs-down.svg rename to apps/client/src/static/icons/light/thumbs-down.svg diff --git a/src/static/icons/light/thumbs-up.svg b/apps/client/src/static/icons/light/thumbs-up.svg similarity index 100% rename from src/static/icons/light/thumbs-up.svg rename to apps/client/src/static/icons/light/thumbs-up.svg diff --git a/src/static/icons/light/thumbtack.svg b/apps/client/src/static/icons/light/thumbtack.svg similarity index 100% rename from src/static/icons/light/thumbtack.svg rename to apps/client/src/static/icons/light/thumbtack.svg diff --git a/src/static/icons/light/thunderstorm-moon.svg b/apps/client/src/static/icons/light/thunderstorm-moon.svg similarity index 100% rename from src/static/icons/light/thunderstorm-moon.svg rename to apps/client/src/static/icons/light/thunderstorm-moon.svg diff --git a/src/static/icons/light/thunderstorm-sun.svg b/apps/client/src/static/icons/light/thunderstorm-sun.svg similarity index 100% rename from src/static/icons/light/thunderstorm-sun.svg rename to apps/client/src/static/icons/light/thunderstorm-sun.svg diff --git a/src/static/icons/light/thunderstorm.svg b/apps/client/src/static/icons/light/thunderstorm.svg similarity index 100% rename from src/static/icons/light/thunderstorm.svg rename to apps/client/src/static/icons/light/thunderstorm.svg diff --git a/src/static/icons/light/ticket-alt.svg b/apps/client/src/static/icons/light/ticket-alt.svg similarity index 100% rename from src/static/icons/light/ticket-alt.svg rename to apps/client/src/static/icons/light/ticket-alt.svg diff --git a/src/static/icons/light/ticket.svg b/apps/client/src/static/icons/light/ticket.svg similarity index 100% rename from src/static/icons/light/ticket.svg rename to apps/client/src/static/icons/light/ticket.svg diff --git a/src/static/icons/light/tilde.svg b/apps/client/src/static/icons/light/tilde.svg similarity index 100% rename from src/static/icons/light/tilde.svg rename to apps/client/src/static/icons/light/tilde.svg diff --git a/src/static/icons/light/times-circle.svg b/apps/client/src/static/icons/light/times-circle.svg similarity index 100% rename from src/static/icons/light/times-circle.svg rename to apps/client/src/static/icons/light/times-circle.svg diff --git a/src/static/icons/light/times-hexagon.svg b/apps/client/src/static/icons/light/times-hexagon.svg similarity index 100% rename from src/static/icons/light/times-hexagon.svg rename to apps/client/src/static/icons/light/times-hexagon.svg diff --git a/src/static/icons/light/times-octagon.svg b/apps/client/src/static/icons/light/times-octagon.svg similarity index 100% rename from src/static/icons/light/times-octagon.svg rename to apps/client/src/static/icons/light/times-octagon.svg diff --git a/src/static/icons/light/times-square.svg b/apps/client/src/static/icons/light/times-square.svg similarity index 100% rename from src/static/icons/light/times-square.svg rename to apps/client/src/static/icons/light/times-square.svg diff --git a/src/static/icons/light/times.svg b/apps/client/src/static/icons/light/times.svg similarity index 100% rename from src/static/icons/light/times.svg rename to apps/client/src/static/icons/light/times.svg diff --git a/src/static/icons/light/tint-slash.svg b/apps/client/src/static/icons/light/tint-slash.svg similarity index 100% rename from src/static/icons/light/tint-slash.svg rename to apps/client/src/static/icons/light/tint-slash.svg diff --git a/src/static/icons/light/tint.svg b/apps/client/src/static/icons/light/tint.svg similarity index 100% rename from src/static/icons/light/tint.svg rename to apps/client/src/static/icons/light/tint.svg diff --git a/src/static/icons/light/tire-flat.svg b/apps/client/src/static/icons/light/tire-flat.svg similarity index 100% rename from src/static/icons/light/tire-flat.svg rename to apps/client/src/static/icons/light/tire-flat.svg diff --git a/src/static/icons/light/tire-pressure-warning.svg b/apps/client/src/static/icons/light/tire-pressure-warning.svg similarity index 100% rename from src/static/icons/light/tire-pressure-warning.svg rename to apps/client/src/static/icons/light/tire-pressure-warning.svg diff --git a/src/static/icons/light/tire-rugged.svg b/apps/client/src/static/icons/light/tire-rugged.svg similarity index 100% rename from src/static/icons/light/tire-rugged.svg rename to apps/client/src/static/icons/light/tire-rugged.svg diff --git a/src/static/icons/light/tire.svg b/apps/client/src/static/icons/light/tire.svg similarity index 100% rename from src/static/icons/light/tire.svg rename to apps/client/src/static/icons/light/tire.svg diff --git a/src/static/icons/light/tired.svg b/apps/client/src/static/icons/light/tired.svg similarity index 100% rename from src/static/icons/light/tired.svg rename to apps/client/src/static/icons/light/tired.svg diff --git a/src/static/icons/light/toggle-off.svg b/apps/client/src/static/icons/light/toggle-off.svg similarity index 100% rename from src/static/icons/light/toggle-off.svg rename to apps/client/src/static/icons/light/toggle-off.svg diff --git a/src/static/icons/light/toggle-on.svg b/apps/client/src/static/icons/light/toggle-on.svg similarity index 100% rename from src/static/icons/light/toggle-on.svg rename to apps/client/src/static/icons/light/toggle-on.svg diff --git a/src/static/icons/light/toilet-paper-alt.svg b/apps/client/src/static/icons/light/toilet-paper-alt.svg similarity index 100% rename from src/static/icons/light/toilet-paper-alt.svg rename to apps/client/src/static/icons/light/toilet-paper-alt.svg diff --git a/src/static/icons/light/toilet-paper.svg b/apps/client/src/static/icons/light/toilet-paper.svg similarity index 100% rename from src/static/icons/light/toilet-paper.svg rename to apps/client/src/static/icons/light/toilet-paper.svg diff --git a/src/static/icons/light/toilet.svg b/apps/client/src/static/icons/light/toilet.svg similarity index 100% rename from src/static/icons/light/toilet.svg rename to apps/client/src/static/icons/light/toilet.svg diff --git a/src/static/icons/light/tombstone-alt.svg b/apps/client/src/static/icons/light/tombstone-alt.svg similarity index 100% rename from src/static/icons/light/tombstone-alt.svg rename to apps/client/src/static/icons/light/tombstone-alt.svg diff --git a/src/static/icons/light/tombstone.svg b/apps/client/src/static/icons/light/tombstone.svg similarity index 100% rename from src/static/icons/light/tombstone.svg rename to apps/client/src/static/icons/light/tombstone.svg diff --git a/src/static/icons/light/toolbox.svg b/apps/client/src/static/icons/light/toolbox.svg similarity index 100% rename from src/static/icons/light/toolbox.svg rename to apps/client/src/static/icons/light/toolbox.svg diff --git a/src/static/icons/light/tools.svg b/apps/client/src/static/icons/light/tools.svg similarity index 100% rename from src/static/icons/light/tools.svg rename to apps/client/src/static/icons/light/tools.svg diff --git a/src/static/icons/light/tooth.svg b/apps/client/src/static/icons/light/tooth.svg similarity index 100% rename from src/static/icons/light/tooth.svg rename to apps/client/src/static/icons/light/tooth.svg diff --git a/src/static/icons/light/toothbrush.svg b/apps/client/src/static/icons/light/toothbrush.svg similarity index 100% rename from src/static/icons/light/toothbrush.svg rename to apps/client/src/static/icons/light/toothbrush.svg diff --git a/src/static/icons/light/torah.svg b/apps/client/src/static/icons/light/torah.svg similarity index 100% rename from src/static/icons/light/torah.svg rename to apps/client/src/static/icons/light/torah.svg diff --git a/src/static/icons/light/torii-gate.svg b/apps/client/src/static/icons/light/torii-gate.svg similarity index 100% rename from src/static/icons/light/torii-gate.svg rename to apps/client/src/static/icons/light/torii-gate.svg diff --git a/src/static/icons/light/tornado.svg b/apps/client/src/static/icons/light/tornado.svg similarity index 100% rename from src/static/icons/light/tornado.svg rename to apps/client/src/static/icons/light/tornado.svg diff --git a/src/static/icons/light/tractor.svg b/apps/client/src/static/icons/light/tractor.svg similarity index 100% rename from src/static/icons/light/tractor.svg rename to apps/client/src/static/icons/light/tractor.svg diff --git a/src/static/icons/light/trademark.svg b/apps/client/src/static/icons/light/trademark.svg similarity index 100% rename from src/static/icons/light/trademark.svg rename to apps/client/src/static/icons/light/trademark.svg diff --git a/src/static/icons/light/traffic-cone.svg b/apps/client/src/static/icons/light/traffic-cone.svg similarity index 100% rename from src/static/icons/light/traffic-cone.svg rename to apps/client/src/static/icons/light/traffic-cone.svg diff --git a/src/static/icons/light/traffic-light-go.svg b/apps/client/src/static/icons/light/traffic-light-go.svg similarity index 100% rename from src/static/icons/light/traffic-light-go.svg rename to apps/client/src/static/icons/light/traffic-light-go.svg diff --git a/src/static/icons/light/traffic-light-slow.svg b/apps/client/src/static/icons/light/traffic-light-slow.svg similarity index 100% rename from src/static/icons/light/traffic-light-slow.svg rename to apps/client/src/static/icons/light/traffic-light-slow.svg diff --git a/src/static/icons/light/traffic-light-stop.svg b/apps/client/src/static/icons/light/traffic-light-stop.svg similarity index 100% rename from src/static/icons/light/traffic-light-stop.svg rename to apps/client/src/static/icons/light/traffic-light-stop.svg diff --git a/src/static/icons/light/traffic-light.svg b/apps/client/src/static/icons/light/traffic-light.svg similarity index 100% rename from src/static/icons/light/traffic-light.svg rename to apps/client/src/static/icons/light/traffic-light.svg diff --git a/src/static/icons/light/trailer.svg b/apps/client/src/static/icons/light/trailer.svg similarity index 100% rename from src/static/icons/light/trailer.svg rename to apps/client/src/static/icons/light/trailer.svg diff --git a/src/static/icons/light/train.svg b/apps/client/src/static/icons/light/train.svg similarity index 100% rename from src/static/icons/light/train.svg rename to apps/client/src/static/icons/light/train.svg diff --git a/src/static/icons/light/tram.svg b/apps/client/src/static/icons/light/tram.svg similarity index 100% rename from src/static/icons/light/tram.svg rename to apps/client/src/static/icons/light/tram.svg diff --git a/src/static/icons/light/transgender-alt.svg b/apps/client/src/static/icons/light/transgender-alt.svg similarity index 100% rename from src/static/icons/light/transgender-alt.svg rename to apps/client/src/static/icons/light/transgender-alt.svg diff --git a/src/static/icons/light/transgender.svg b/apps/client/src/static/icons/light/transgender.svg similarity index 100% rename from src/static/icons/light/transgender.svg rename to apps/client/src/static/icons/light/transgender.svg diff --git a/src/static/icons/light/transporter-1.svg b/apps/client/src/static/icons/light/transporter-1.svg similarity index 100% rename from src/static/icons/light/transporter-1.svg rename to apps/client/src/static/icons/light/transporter-1.svg diff --git a/src/static/icons/light/transporter-2.svg b/apps/client/src/static/icons/light/transporter-2.svg similarity index 100% rename from src/static/icons/light/transporter-2.svg rename to apps/client/src/static/icons/light/transporter-2.svg diff --git a/src/static/icons/light/transporter-3.svg b/apps/client/src/static/icons/light/transporter-3.svg similarity index 100% rename from src/static/icons/light/transporter-3.svg rename to apps/client/src/static/icons/light/transporter-3.svg diff --git a/src/static/icons/light/transporter-empty.svg b/apps/client/src/static/icons/light/transporter-empty.svg similarity index 100% rename from src/static/icons/light/transporter-empty.svg rename to apps/client/src/static/icons/light/transporter-empty.svg diff --git a/src/static/icons/light/transporter.svg b/apps/client/src/static/icons/light/transporter.svg similarity index 100% rename from src/static/icons/light/transporter.svg rename to apps/client/src/static/icons/light/transporter.svg diff --git a/src/static/icons/light/trash-alt.svg b/apps/client/src/static/icons/light/trash-alt.svg similarity index 100% rename from src/static/icons/light/trash-alt.svg rename to apps/client/src/static/icons/light/trash-alt.svg diff --git a/src/static/icons/light/trash-restore-alt.svg b/apps/client/src/static/icons/light/trash-restore-alt.svg similarity index 100% rename from src/static/icons/light/trash-restore-alt.svg rename to apps/client/src/static/icons/light/trash-restore-alt.svg diff --git a/src/static/icons/light/trash-restore.svg b/apps/client/src/static/icons/light/trash-restore.svg similarity index 100% rename from src/static/icons/light/trash-restore.svg rename to apps/client/src/static/icons/light/trash-restore.svg diff --git a/src/static/icons/light/trash-undo-alt.svg b/apps/client/src/static/icons/light/trash-undo-alt.svg similarity index 100% rename from src/static/icons/light/trash-undo-alt.svg rename to apps/client/src/static/icons/light/trash-undo-alt.svg diff --git a/src/static/icons/light/trash-undo.svg b/apps/client/src/static/icons/light/trash-undo.svg similarity index 100% rename from src/static/icons/light/trash-undo.svg rename to apps/client/src/static/icons/light/trash-undo.svg diff --git a/src/static/icons/light/trash.svg b/apps/client/src/static/icons/light/trash.svg similarity index 100% rename from src/static/icons/light/trash.svg rename to apps/client/src/static/icons/light/trash.svg diff --git a/src/static/icons/light/treasure-chest.svg b/apps/client/src/static/icons/light/treasure-chest.svg similarity index 100% rename from src/static/icons/light/treasure-chest.svg rename to apps/client/src/static/icons/light/treasure-chest.svg diff --git a/src/static/icons/light/tree-alt.svg b/apps/client/src/static/icons/light/tree-alt.svg similarity index 100% rename from src/static/icons/light/tree-alt.svg rename to apps/client/src/static/icons/light/tree-alt.svg diff --git a/src/static/icons/light/tree-christmas.svg b/apps/client/src/static/icons/light/tree-christmas.svg similarity index 100% rename from src/static/icons/light/tree-christmas.svg rename to apps/client/src/static/icons/light/tree-christmas.svg diff --git a/src/static/icons/light/tree-decorated.svg b/apps/client/src/static/icons/light/tree-decorated.svg similarity index 100% rename from src/static/icons/light/tree-decorated.svg rename to apps/client/src/static/icons/light/tree-decorated.svg diff --git a/src/static/icons/light/tree-large.svg b/apps/client/src/static/icons/light/tree-large.svg similarity index 100% rename from src/static/icons/light/tree-large.svg rename to apps/client/src/static/icons/light/tree-large.svg diff --git a/src/static/icons/light/tree-palm.svg b/apps/client/src/static/icons/light/tree-palm.svg similarity index 100% rename from src/static/icons/light/tree-palm.svg rename to apps/client/src/static/icons/light/tree-palm.svg diff --git a/src/static/icons/light/tree.svg b/apps/client/src/static/icons/light/tree.svg similarity index 100% rename from src/static/icons/light/tree.svg rename to apps/client/src/static/icons/light/tree.svg diff --git a/src/static/icons/light/trees.svg b/apps/client/src/static/icons/light/trees.svg similarity index 100% rename from src/static/icons/light/trees.svg rename to apps/client/src/static/icons/light/trees.svg diff --git a/src/static/icons/light/triangle-music.svg b/apps/client/src/static/icons/light/triangle-music.svg similarity index 100% rename from src/static/icons/light/triangle-music.svg rename to apps/client/src/static/icons/light/triangle-music.svg diff --git a/src/static/icons/light/triangle.svg b/apps/client/src/static/icons/light/triangle.svg similarity index 100% rename from src/static/icons/light/triangle.svg rename to apps/client/src/static/icons/light/triangle.svg diff --git a/src/static/icons/light/trophy-alt.svg b/apps/client/src/static/icons/light/trophy-alt.svg similarity index 100% rename from src/static/icons/light/trophy-alt.svg rename to apps/client/src/static/icons/light/trophy-alt.svg diff --git a/src/static/icons/light/trophy.svg b/apps/client/src/static/icons/light/trophy.svg similarity index 100% rename from src/static/icons/light/trophy.svg rename to apps/client/src/static/icons/light/trophy.svg diff --git a/src/static/icons/light/truck-container.svg b/apps/client/src/static/icons/light/truck-container.svg similarity index 100% rename from src/static/icons/light/truck-container.svg rename to apps/client/src/static/icons/light/truck-container.svg diff --git a/src/static/icons/light/truck-couch.svg b/apps/client/src/static/icons/light/truck-couch.svg similarity index 100% rename from src/static/icons/light/truck-couch.svg rename to apps/client/src/static/icons/light/truck-couch.svg diff --git a/src/static/icons/light/truck-loading.svg b/apps/client/src/static/icons/light/truck-loading.svg similarity index 100% rename from src/static/icons/light/truck-loading.svg rename to apps/client/src/static/icons/light/truck-loading.svg diff --git a/src/static/icons/light/truck-monster.svg b/apps/client/src/static/icons/light/truck-monster.svg similarity index 100% rename from src/static/icons/light/truck-monster.svg rename to apps/client/src/static/icons/light/truck-monster.svg diff --git a/src/static/icons/light/truck-moving.svg b/apps/client/src/static/icons/light/truck-moving.svg similarity index 100% rename from src/static/icons/light/truck-moving.svg rename to apps/client/src/static/icons/light/truck-moving.svg diff --git a/src/static/icons/light/truck-pickup.svg b/apps/client/src/static/icons/light/truck-pickup.svg similarity index 100% rename from src/static/icons/light/truck-pickup.svg rename to apps/client/src/static/icons/light/truck-pickup.svg diff --git a/src/static/icons/light/truck-plow.svg b/apps/client/src/static/icons/light/truck-plow.svg similarity index 100% rename from src/static/icons/light/truck-plow.svg rename to apps/client/src/static/icons/light/truck-plow.svg diff --git a/src/static/icons/light/truck-ramp.svg b/apps/client/src/static/icons/light/truck-ramp.svg similarity index 100% rename from src/static/icons/light/truck-ramp.svg rename to apps/client/src/static/icons/light/truck-ramp.svg diff --git a/src/static/icons/light/truck.svg b/apps/client/src/static/icons/light/truck.svg similarity index 100% rename from src/static/icons/light/truck.svg rename to apps/client/src/static/icons/light/truck.svg diff --git a/src/static/icons/light/trumpet.svg b/apps/client/src/static/icons/light/trumpet.svg similarity index 100% rename from src/static/icons/light/trumpet.svg rename to apps/client/src/static/icons/light/trumpet.svg diff --git a/src/static/icons/light/tshirt.svg b/apps/client/src/static/icons/light/tshirt.svg similarity index 100% rename from src/static/icons/light/tshirt.svg rename to apps/client/src/static/icons/light/tshirt.svg diff --git a/src/static/icons/light/tty.svg b/apps/client/src/static/icons/light/tty.svg similarity index 100% rename from src/static/icons/light/tty.svg rename to apps/client/src/static/icons/light/tty.svg diff --git a/src/static/icons/light/turkey.svg b/apps/client/src/static/icons/light/turkey.svg similarity index 100% rename from src/static/icons/light/turkey.svg rename to apps/client/src/static/icons/light/turkey.svg diff --git a/src/static/icons/light/turntable.svg b/apps/client/src/static/icons/light/turntable.svg similarity index 100% rename from src/static/icons/light/turntable.svg rename to apps/client/src/static/icons/light/turntable.svg diff --git a/src/static/icons/light/turtle.svg b/apps/client/src/static/icons/light/turtle.svg similarity index 100% rename from src/static/icons/light/turtle.svg rename to apps/client/src/static/icons/light/turtle.svg diff --git a/src/static/icons/light/tv-alt.svg b/apps/client/src/static/icons/light/tv-alt.svg similarity index 100% rename from src/static/icons/light/tv-alt.svg rename to apps/client/src/static/icons/light/tv-alt.svg diff --git a/src/static/icons/light/tv-music.svg b/apps/client/src/static/icons/light/tv-music.svg similarity index 100% rename from src/static/icons/light/tv-music.svg rename to apps/client/src/static/icons/light/tv-music.svg diff --git a/src/static/icons/light/tv-retro.svg b/apps/client/src/static/icons/light/tv-retro.svg similarity index 100% rename from src/static/icons/light/tv-retro.svg rename to apps/client/src/static/icons/light/tv-retro.svg diff --git a/src/static/icons/light/tv.svg b/apps/client/src/static/icons/light/tv.svg similarity index 100% rename from src/static/icons/light/tv.svg rename to apps/client/src/static/icons/light/tv.svg diff --git a/src/static/icons/light/typewriter.svg b/apps/client/src/static/icons/light/typewriter.svg similarity index 100% rename from src/static/icons/light/typewriter.svg rename to apps/client/src/static/icons/light/typewriter.svg diff --git a/src/static/icons/light/ufo-beam.svg b/apps/client/src/static/icons/light/ufo-beam.svg similarity index 100% rename from src/static/icons/light/ufo-beam.svg rename to apps/client/src/static/icons/light/ufo-beam.svg diff --git a/src/static/icons/light/ufo.svg b/apps/client/src/static/icons/light/ufo.svg similarity index 100% rename from src/static/icons/light/ufo.svg rename to apps/client/src/static/icons/light/ufo.svg diff --git a/src/static/icons/light/umbrella-beach.svg b/apps/client/src/static/icons/light/umbrella-beach.svg similarity index 100% rename from src/static/icons/light/umbrella-beach.svg rename to apps/client/src/static/icons/light/umbrella-beach.svg diff --git a/src/static/icons/light/umbrella.svg b/apps/client/src/static/icons/light/umbrella.svg similarity index 100% rename from src/static/icons/light/umbrella.svg rename to apps/client/src/static/icons/light/umbrella.svg diff --git a/src/static/icons/light/underline.svg b/apps/client/src/static/icons/light/underline.svg similarity index 100% rename from src/static/icons/light/underline.svg rename to apps/client/src/static/icons/light/underline.svg diff --git a/src/static/icons/light/undo-alt.svg b/apps/client/src/static/icons/light/undo-alt.svg similarity index 100% rename from src/static/icons/light/undo-alt.svg rename to apps/client/src/static/icons/light/undo-alt.svg diff --git a/src/static/icons/light/undo.svg b/apps/client/src/static/icons/light/undo.svg similarity index 100% rename from src/static/icons/light/undo.svg rename to apps/client/src/static/icons/light/undo.svg diff --git a/src/static/icons/light/unicorn.svg b/apps/client/src/static/icons/light/unicorn.svg similarity index 100% rename from src/static/icons/light/unicorn.svg rename to apps/client/src/static/icons/light/unicorn.svg diff --git a/src/static/icons/light/union.svg b/apps/client/src/static/icons/light/union.svg similarity index 100% rename from src/static/icons/light/union.svg rename to apps/client/src/static/icons/light/union.svg diff --git a/src/static/icons/light/universal-access.svg b/apps/client/src/static/icons/light/universal-access.svg similarity index 100% rename from src/static/icons/light/universal-access.svg rename to apps/client/src/static/icons/light/universal-access.svg diff --git a/src/static/icons/light/university.svg b/apps/client/src/static/icons/light/university.svg similarity index 100% rename from src/static/icons/light/university.svg rename to apps/client/src/static/icons/light/university.svg diff --git a/src/static/icons/light/unlink.svg b/apps/client/src/static/icons/light/unlink.svg similarity index 100% rename from src/static/icons/light/unlink.svg rename to apps/client/src/static/icons/light/unlink.svg diff --git a/src/static/icons/light/unlock-alt.svg b/apps/client/src/static/icons/light/unlock-alt.svg similarity index 100% rename from src/static/icons/light/unlock-alt.svg rename to apps/client/src/static/icons/light/unlock-alt.svg diff --git a/src/static/icons/light/unlock.svg b/apps/client/src/static/icons/light/unlock.svg similarity index 100% rename from src/static/icons/light/unlock.svg rename to apps/client/src/static/icons/light/unlock.svg diff --git a/src/static/icons/light/upload.svg b/apps/client/src/static/icons/light/upload.svg similarity index 100% rename from src/static/icons/light/upload.svg rename to apps/client/src/static/icons/light/upload.svg diff --git a/src/static/icons/light/usb-drive.svg b/apps/client/src/static/icons/light/usb-drive.svg similarity index 100% rename from src/static/icons/light/usb-drive.svg rename to apps/client/src/static/icons/light/usb-drive.svg diff --git a/src/static/icons/light/usd-circle.svg b/apps/client/src/static/icons/light/usd-circle.svg similarity index 100% rename from src/static/icons/light/usd-circle.svg rename to apps/client/src/static/icons/light/usd-circle.svg diff --git a/src/static/icons/light/usd-square.svg b/apps/client/src/static/icons/light/usd-square.svg similarity index 100% rename from src/static/icons/light/usd-square.svg rename to apps/client/src/static/icons/light/usd-square.svg diff --git a/src/static/icons/light/user-alien.svg b/apps/client/src/static/icons/light/user-alien.svg similarity index 100% rename from src/static/icons/light/user-alien.svg rename to apps/client/src/static/icons/light/user-alien.svg diff --git a/src/static/icons/light/user-alt-slash.svg b/apps/client/src/static/icons/light/user-alt-slash.svg similarity index 100% rename from src/static/icons/light/user-alt-slash.svg rename to apps/client/src/static/icons/light/user-alt-slash.svg diff --git a/src/static/icons/light/user-alt.svg b/apps/client/src/static/icons/light/user-alt.svg similarity index 100% rename from src/static/icons/light/user-alt.svg rename to apps/client/src/static/icons/light/user-alt.svg diff --git a/src/static/icons/light/user-astronaut.svg b/apps/client/src/static/icons/light/user-astronaut.svg similarity index 100% rename from src/static/icons/light/user-astronaut.svg rename to apps/client/src/static/icons/light/user-astronaut.svg diff --git a/src/static/icons/light/user-chart.svg b/apps/client/src/static/icons/light/user-chart.svg similarity index 100% rename from src/static/icons/light/user-chart.svg rename to apps/client/src/static/icons/light/user-chart.svg diff --git a/src/static/icons/light/user-check.svg b/apps/client/src/static/icons/light/user-check.svg similarity index 100% rename from src/static/icons/light/user-check.svg rename to apps/client/src/static/icons/light/user-check.svg diff --git a/src/static/icons/light/user-circle.svg b/apps/client/src/static/icons/light/user-circle.svg similarity index 100% rename from src/static/icons/light/user-circle.svg rename to apps/client/src/static/icons/light/user-circle.svg diff --git a/src/static/icons/light/user-clock.svg b/apps/client/src/static/icons/light/user-clock.svg similarity index 100% rename from src/static/icons/light/user-clock.svg rename to apps/client/src/static/icons/light/user-clock.svg diff --git a/src/static/icons/light/user-cog.svg b/apps/client/src/static/icons/light/user-cog.svg similarity index 100% rename from src/static/icons/light/user-cog.svg rename to apps/client/src/static/icons/light/user-cog.svg diff --git a/src/static/icons/light/user-cowboy.svg b/apps/client/src/static/icons/light/user-cowboy.svg similarity index 100% rename from src/static/icons/light/user-cowboy.svg rename to apps/client/src/static/icons/light/user-cowboy.svg diff --git a/src/static/icons/light/user-crown.svg b/apps/client/src/static/icons/light/user-crown.svg similarity index 100% rename from src/static/icons/light/user-crown.svg rename to apps/client/src/static/icons/light/user-crown.svg diff --git a/src/static/icons/light/user-edit.svg b/apps/client/src/static/icons/light/user-edit.svg similarity index 100% rename from src/static/icons/light/user-edit.svg rename to apps/client/src/static/icons/light/user-edit.svg diff --git a/src/static/icons/light/user-friends.svg b/apps/client/src/static/icons/light/user-friends.svg similarity index 100% rename from src/static/icons/light/user-friends.svg rename to apps/client/src/static/icons/light/user-friends.svg diff --git a/src/static/icons/light/user-graduate.svg b/apps/client/src/static/icons/light/user-graduate.svg similarity index 100% rename from src/static/icons/light/user-graduate.svg rename to apps/client/src/static/icons/light/user-graduate.svg diff --git a/src/static/icons/light/user-hard-hat.svg b/apps/client/src/static/icons/light/user-hard-hat.svg similarity index 100% rename from src/static/icons/light/user-hard-hat.svg rename to apps/client/src/static/icons/light/user-hard-hat.svg diff --git a/src/static/icons/light/user-headset.svg b/apps/client/src/static/icons/light/user-headset.svg similarity index 100% rename from src/static/icons/light/user-headset.svg rename to apps/client/src/static/icons/light/user-headset.svg diff --git a/src/static/icons/light/user-injured.svg b/apps/client/src/static/icons/light/user-injured.svg similarity index 100% rename from src/static/icons/light/user-injured.svg rename to apps/client/src/static/icons/light/user-injured.svg diff --git a/src/static/icons/light/user-lock.svg b/apps/client/src/static/icons/light/user-lock.svg similarity index 100% rename from src/static/icons/light/user-lock.svg rename to apps/client/src/static/icons/light/user-lock.svg diff --git a/src/static/icons/light/user-md-chat.svg b/apps/client/src/static/icons/light/user-md-chat.svg similarity index 100% rename from src/static/icons/light/user-md-chat.svg rename to apps/client/src/static/icons/light/user-md-chat.svg diff --git a/src/static/icons/light/user-md.svg b/apps/client/src/static/icons/light/user-md.svg similarity index 100% rename from src/static/icons/light/user-md.svg rename to apps/client/src/static/icons/light/user-md.svg diff --git a/src/static/icons/light/user-minus.svg b/apps/client/src/static/icons/light/user-minus.svg similarity index 100% rename from src/static/icons/light/user-minus.svg rename to apps/client/src/static/icons/light/user-minus.svg diff --git a/src/static/icons/light/user-music.svg b/apps/client/src/static/icons/light/user-music.svg similarity index 100% rename from src/static/icons/light/user-music.svg rename to apps/client/src/static/icons/light/user-music.svg diff --git a/src/static/icons/light/user-ninja.svg b/apps/client/src/static/icons/light/user-ninja.svg similarity index 100% rename from src/static/icons/light/user-ninja.svg rename to apps/client/src/static/icons/light/user-ninja.svg diff --git a/src/static/icons/light/user-nurse.svg b/apps/client/src/static/icons/light/user-nurse.svg similarity index 100% rename from src/static/icons/light/user-nurse.svg rename to apps/client/src/static/icons/light/user-nurse.svg diff --git a/src/static/icons/light/user-plus.svg b/apps/client/src/static/icons/light/user-plus.svg similarity index 100% rename from src/static/icons/light/user-plus.svg rename to apps/client/src/static/icons/light/user-plus.svg diff --git a/src/static/icons/light/user-robot.svg b/apps/client/src/static/icons/light/user-robot.svg similarity index 100% rename from src/static/icons/light/user-robot.svg rename to apps/client/src/static/icons/light/user-robot.svg diff --git a/src/static/icons/light/user-secret.svg b/apps/client/src/static/icons/light/user-secret.svg similarity index 100% rename from src/static/icons/light/user-secret.svg rename to apps/client/src/static/icons/light/user-secret.svg diff --git a/src/static/icons/light/user-shield.svg b/apps/client/src/static/icons/light/user-shield.svg similarity index 100% rename from src/static/icons/light/user-shield.svg rename to apps/client/src/static/icons/light/user-shield.svg diff --git a/src/static/icons/light/user-slash.svg b/apps/client/src/static/icons/light/user-slash.svg similarity index 100% rename from src/static/icons/light/user-slash.svg rename to apps/client/src/static/icons/light/user-slash.svg diff --git a/src/static/icons/light/user-tag.svg b/apps/client/src/static/icons/light/user-tag.svg similarity index 100% rename from src/static/icons/light/user-tag.svg rename to apps/client/src/static/icons/light/user-tag.svg diff --git a/src/static/icons/light/user-tie.svg b/apps/client/src/static/icons/light/user-tie.svg similarity index 100% rename from src/static/icons/light/user-tie.svg rename to apps/client/src/static/icons/light/user-tie.svg diff --git a/src/static/icons/light/user-times.svg b/apps/client/src/static/icons/light/user-times.svg similarity index 100% rename from src/static/icons/light/user-times.svg rename to apps/client/src/static/icons/light/user-times.svg diff --git a/src/static/icons/light/user-visor.svg b/apps/client/src/static/icons/light/user-visor.svg similarity index 100% rename from src/static/icons/light/user-visor.svg rename to apps/client/src/static/icons/light/user-visor.svg diff --git a/src/static/icons/light/user.svg b/apps/client/src/static/icons/light/user.svg similarity index 100% rename from src/static/icons/light/user.svg rename to apps/client/src/static/icons/light/user.svg diff --git a/src/static/icons/light/users-class.svg b/apps/client/src/static/icons/light/users-class.svg similarity index 100% rename from src/static/icons/light/users-class.svg rename to apps/client/src/static/icons/light/users-class.svg diff --git a/src/static/icons/light/users-cog.svg b/apps/client/src/static/icons/light/users-cog.svg similarity index 100% rename from src/static/icons/light/users-cog.svg rename to apps/client/src/static/icons/light/users-cog.svg diff --git a/src/static/icons/light/users-crown.svg b/apps/client/src/static/icons/light/users-crown.svg similarity index 100% rename from src/static/icons/light/users-crown.svg rename to apps/client/src/static/icons/light/users-crown.svg diff --git a/src/static/icons/light/users-medical.svg b/apps/client/src/static/icons/light/users-medical.svg similarity index 100% rename from src/static/icons/light/users-medical.svg rename to apps/client/src/static/icons/light/users-medical.svg diff --git a/src/static/icons/light/users.svg b/apps/client/src/static/icons/light/users.svg similarity index 100% rename from src/static/icons/light/users.svg rename to apps/client/src/static/icons/light/users.svg diff --git a/src/static/icons/light/utensil-fork.svg b/apps/client/src/static/icons/light/utensil-fork.svg similarity index 100% rename from src/static/icons/light/utensil-fork.svg rename to apps/client/src/static/icons/light/utensil-fork.svg diff --git a/src/static/icons/light/utensil-knife.svg b/apps/client/src/static/icons/light/utensil-knife.svg similarity index 100% rename from src/static/icons/light/utensil-knife.svg rename to apps/client/src/static/icons/light/utensil-knife.svg diff --git a/src/static/icons/light/utensil-spoon.svg b/apps/client/src/static/icons/light/utensil-spoon.svg similarity index 100% rename from src/static/icons/light/utensil-spoon.svg rename to apps/client/src/static/icons/light/utensil-spoon.svg diff --git a/src/static/icons/light/utensils-alt.svg b/apps/client/src/static/icons/light/utensils-alt.svg similarity index 100% rename from src/static/icons/light/utensils-alt.svg rename to apps/client/src/static/icons/light/utensils-alt.svg diff --git a/src/static/icons/light/utensils.svg b/apps/client/src/static/icons/light/utensils.svg similarity index 100% rename from src/static/icons/light/utensils.svg rename to apps/client/src/static/icons/light/utensils.svg diff --git a/src/static/icons/light/vacuum-robot.svg b/apps/client/src/static/icons/light/vacuum-robot.svg similarity index 100% rename from src/static/icons/light/vacuum-robot.svg rename to apps/client/src/static/icons/light/vacuum-robot.svg diff --git a/src/static/icons/light/vacuum.svg b/apps/client/src/static/icons/light/vacuum.svg similarity index 100% rename from src/static/icons/light/vacuum.svg rename to apps/client/src/static/icons/light/vacuum.svg diff --git a/src/static/icons/light/value-absolute.svg b/apps/client/src/static/icons/light/value-absolute.svg similarity index 100% rename from src/static/icons/light/value-absolute.svg rename to apps/client/src/static/icons/light/value-absolute.svg diff --git a/src/static/icons/light/vector-square.svg b/apps/client/src/static/icons/light/vector-square.svg similarity index 100% rename from src/static/icons/light/vector-square.svg rename to apps/client/src/static/icons/light/vector-square.svg diff --git a/src/static/icons/light/venus-double.svg b/apps/client/src/static/icons/light/venus-double.svg similarity index 100% rename from src/static/icons/light/venus-double.svg rename to apps/client/src/static/icons/light/venus-double.svg diff --git a/src/static/icons/light/venus-mars.svg b/apps/client/src/static/icons/light/venus-mars.svg similarity index 100% rename from src/static/icons/light/venus-mars.svg rename to apps/client/src/static/icons/light/venus-mars.svg diff --git a/src/static/icons/light/venus.svg b/apps/client/src/static/icons/light/venus.svg similarity index 100% rename from src/static/icons/light/venus.svg rename to apps/client/src/static/icons/light/venus.svg diff --git a/src/static/icons/light/vhs.svg b/apps/client/src/static/icons/light/vhs.svg similarity index 100% rename from src/static/icons/light/vhs.svg rename to apps/client/src/static/icons/light/vhs.svg diff --git a/src/static/icons/light/vial.svg b/apps/client/src/static/icons/light/vial.svg similarity index 100% rename from src/static/icons/light/vial.svg rename to apps/client/src/static/icons/light/vial.svg diff --git a/src/static/icons/light/vials.svg b/apps/client/src/static/icons/light/vials.svg similarity index 100% rename from src/static/icons/light/vials.svg rename to apps/client/src/static/icons/light/vials.svg diff --git a/src/static/icons/light/video-plus.svg b/apps/client/src/static/icons/light/video-plus.svg similarity index 100% rename from src/static/icons/light/video-plus.svg rename to apps/client/src/static/icons/light/video-plus.svg diff --git a/src/static/icons/light/video-slash.svg b/apps/client/src/static/icons/light/video-slash.svg similarity index 100% rename from src/static/icons/light/video-slash.svg rename to apps/client/src/static/icons/light/video-slash.svg diff --git a/src/static/icons/light/video.svg b/apps/client/src/static/icons/light/video.svg similarity index 100% rename from src/static/icons/light/video.svg rename to apps/client/src/static/icons/light/video.svg diff --git a/src/static/icons/light/vihara.svg b/apps/client/src/static/icons/light/vihara.svg similarity index 100% rename from src/static/icons/light/vihara.svg rename to apps/client/src/static/icons/light/vihara.svg diff --git a/src/static/icons/light/violin.svg b/apps/client/src/static/icons/light/violin.svg similarity index 100% rename from src/static/icons/light/violin.svg rename to apps/client/src/static/icons/light/violin.svg diff --git a/src/static/icons/light/voicemail.svg b/apps/client/src/static/icons/light/voicemail.svg similarity index 100% rename from src/static/icons/light/voicemail.svg rename to apps/client/src/static/icons/light/voicemail.svg diff --git a/src/static/icons/light/volcano.svg b/apps/client/src/static/icons/light/volcano.svg similarity index 100% rename from src/static/icons/light/volcano.svg rename to apps/client/src/static/icons/light/volcano.svg diff --git a/src/static/icons/light/volleyball-ball.svg b/apps/client/src/static/icons/light/volleyball-ball.svg similarity index 100% rename from src/static/icons/light/volleyball-ball.svg rename to apps/client/src/static/icons/light/volleyball-ball.svg diff --git a/src/static/icons/light/volume-down.svg b/apps/client/src/static/icons/light/volume-down.svg similarity index 100% rename from src/static/icons/light/volume-down.svg rename to apps/client/src/static/icons/light/volume-down.svg diff --git a/src/static/icons/light/volume-mute.svg b/apps/client/src/static/icons/light/volume-mute.svg similarity index 100% rename from src/static/icons/light/volume-mute.svg rename to apps/client/src/static/icons/light/volume-mute.svg diff --git a/src/static/icons/light/volume-off.svg b/apps/client/src/static/icons/light/volume-off.svg similarity index 100% rename from src/static/icons/light/volume-off.svg rename to apps/client/src/static/icons/light/volume-off.svg diff --git a/src/static/icons/light/volume-slash.svg b/apps/client/src/static/icons/light/volume-slash.svg similarity index 100% rename from src/static/icons/light/volume-slash.svg rename to apps/client/src/static/icons/light/volume-slash.svg diff --git a/src/static/icons/light/volume-up.svg b/apps/client/src/static/icons/light/volume-up.svg similarity index 100% rename from src/static/icons/light/volume-up.svg rename to apps/client/src/static/icons/light/volume-up.svg diff --git a/src/static/icons/light/volume.svg b/apps/client/src/static/icons/light/volume.svg similarity index 100% rename from src/static/icons/light/volume.svg rename to apps/client/src/static/icons/light/volume.svg diff --git a/src/static/icons/light/vote-nay.svg b/apps/client/src/static/icons/light/vote-nay.svg similarity index 100% rename from src/static/icons/light/vote-nay.svg rename to apps/client/src/static/icons/light/vote-nay.svg diff --git a/src/static/icons/light/vote-yea.svg b/apps/client/src/static/icons/light/vote-yea.svg similarity index 100% rename from src/static/icons/light/vote-yea.svg rename to apps/client/src/static/icons/light/vote-yea.svg diff --git a/src/static/icons/light/vr-cardboard.svg b/apps/client/src/static/icons/light/vr-cardboard.svg similarity index 100% rename from src/static/icons/light/vr-cardboard.svg rename to apps/client/src/static/icons/light/vr-cardboard.svg diff --git a/src/static/icons/light/wagon-covered.svg b/apps/client/src/static/icons/light/wagon-covered.svg similarity index 100% rename from src/static/icons/light/wagon-covered.svg rename to apps/client/src/static/icons/light/wagon-covered.svg diff --git a/src/static/icons/light/walker.svg b/apps/client/src/static/icons/light/walker.svg similarity index 100% rename from src/static/icons/light/walker.svg rename to apps/client/src/static/icons/light/walker.svg diff --git a/src/static/icons/light/walkie-talkie.svg b/apps/client/src/static/icons/light/walkie-talkie.svg similarity index 100% rename from src/static/icons/light/walkie-talkie.svg rename to apps/client/src/static/icons/light/walkie-talkie.svg diff --git a/src/static/icons/light/walking.svg b/apps/client/src/static/icons/light/walking.svg similarity index 100% rename from src/static/icons/light/walking.svg rename to apps/client/src/static/icons/light/walking.svg diff --git a/src/static/icons/light/wallet.svg b/apps/client/src/static/icons/light/wallet.svg similarity index 100% rename from src/static/icons/light/wallet.svg rename to apps/client/src/static/icons/light/wallet.svg diff --git a/src/static/icons/light/wand-magic.svg b/apps/client/src/static/icons/light/wand-magic.svg similarity index 100% rename from src/static/icons/light/wand-magic.svg rename to apps/client/src/static/icons/light/wand-magic.svg diff --git a/src/static/icons/light/wand.svg b/apps/client/src/static/icons/light/wand.svg similarity index 100% rename from src/static/icons/light/wand.svg rename to apps/client/src/static/icons/light/wand.svg diff --git a/src/static/icons/light/warehouse-alt.svg b/apps/client/src/static/icons/light/warehouse-alt.svg similarity index 100% rename from src/static/icons/light/warehouse-alt.svg rename to apps/client/src/static/icons/light/warehouse-alt.svg diff --git a/src/static/icons/light/warehouse.svg b/apps/client/src/static/icons/light/warehouse.svg similarity index 100% rename from src/static/icons/light/warehouse.svg rename to apps/client/src/static/icons/light/warehouse.svg diff --git a/src/static/icons/light/washer.svg b/apps/client/src/static/icons/light/washer.svg similarity index 100% rename from src/static/icons/light/washer.svg rename to apps/client/src/static/icons/light/washer.svg diff --git a/src/static/icons/light/watch-calculator.svg b/apps/client/src/static/icons/light/watch-calculator.svg similarity index 100% rename from src/static/icons/light/watch-calculator.svg rename to apps/client/src/static/icons/light/watch-calculator.svg diff --git a/src/static/icons/light/watch-fitness.svg b/apps/client/src/static/icons/light/watch-fitness.svg similarity index 100% rename from src/static/icons/light/watch-fitness.svg rename to apps/client/src/static/icons/light/watch-fitness.svg diff --git a/src/static/icons/light/watch.svg b/apps/client/src/static/icons/light/watch.svg similarity index 100% rename from src/static/icons/light/watch.svg rename to apps/client/src/static/icons/light/watch.svg diff --git a/src/static/icons/light/water-lower.svg b/apps/client/src/static/icons/light/water-lower.svg similarity index 100% rename from src/static/icons/light/water-lower.svg rename to apps/client/src/static/icons/light/water-lower.svg diff --git a/src/static/icons/light/water-rise.svg b/apps/client/src/static/icons/light/water-rise.svg similarity index 100% rename from src/static/icons/light/water-rise.svg rename to apps/client/src/static/icons/light/water-rise.svg diff --git a/src/static/icons/light/water.svg b/apps/client/src/static/icons/light/water.svg similarity index 100% rename from src/static/icons/light/water.svg rename to apps/client/src/static/icons/light/water.svg diff --git a/src/static/icons/light/wave-sine.svg b/apps/client/src/static/icons/light/wave-sine.svg similarity index 100% rename from src/static/icons/light/wave-sine.svg rename to apps/client/src/static/icons/light/wave-sine.svg diff --git a/src/static/icons/light/wave-square.svg b/apps/client/src/static/icons/light/wave-square.svg similarity index 100% rename from src/static/icons/light/wave-square.svg rename to apps/client/src/static/icons/light/wave-square.svg diff --git a/src/static/icons/light/wave-triangle.svg b/apps/client/src/static/icons/light/wave-triangle.svg similarity index 100% rename from src/static/icons/light/wave-triangle.svg rename to apps/client/src/static/icons/light/wave-triangle.svg diff --git a/src/static/icons/light/waveform-path.svg b/apps/client/src/static/icons/light/waveform-path.svg similarity index 100% rename from src/static/icons/light/waveform-path.svg rename to apps/client/src/static/icons/light/waveform-path.svg diff --git a/src/static/icons/light/waveform.svg b/apps/client/src/static/icons/light/waveform.svg similarity index 100% rename from src/static/icons/light/waveform.svg rename to apps/client/src/static/icons/light/waveform.svg diff --git a/src/static/icons/light/webcam-slash.svg b/apps/client/src/static/icons/light/webcam-slash.svg similarity index 100% rename from src/static/icons/light/webcam-slash.svg rename to apps/client/src/static/icons/light/webcam-slash.svg diff --git a/src/static/icons/light/webcam.svg b/apps/client/src/static/icons/light/webcam.svg similarity index 100% rename from src/static/icons/light/webcam.svg rename to apps/client/src/static/icons/light/webcam.svg diff --git a/src/static/icons/light/weight-hanging.svg b/apps/client/src/static/icons/light/weight-hanging.svg similarity index 100% rename from src/static/icons/light/weight-hanging.svg rename to apps/client/src/static/icons/light/weight-hanging.svg diff --git a/src/static/icons/light/weight.svg b/apps/client/src/static/icons/light/weight.svg similarity index 100% rename from src/static/icons/light/weight.svg rename to apps/client/src/static/icons/light/weight.svg diff --git a/src/static/icons/light/whale.svg b/apps/client/src/static/icons/light/whale.svg similarity index 100% rename from src/static/icons/light/whale.svg rename to apps/client/src/static/icons/light/whale.svg diff --git a/src/static/icons/light/wheat.svg b/apps/client/src/static/icons/light/wheat.svg similarity index 100% rename from src/static/icons/light/wheat.svg rename to apps/client/src/static/icons/light/wheat.svg diff --git a/src/static/icons/light/wheelchair.svg b/apps/client/src/static/icons/light/wheelchair.svg similarity index 100% rename from src/static/icons/light/wheelchair.svg rename to apps/client/src/static/icons/light/wheelchair.svg diff --git a/src/static/icons/light/whistle.svg b/apps/client/src/static/icons/light/whistle.svg similarity index 100% rename from src/static/icons/light/whistle.svg rename to apps/client/src/static/icons/light/whistle.svg diff --git a/src/static/icons/light/wifi-1.svg b/apps/client/src/static/icons/light/wifi-1.svg similarity index 100% rename from src/static/icons/light/wifi-1.svg rename to apps/client/src/static/icons/light/wifi-1.svg diff --git a/src/static/icons/light/wifi-2.svg b/apps/client/src/static/icons/light/wifi-2.svg similarity index 100% rename from src/static/icons/light/wifi-2.svg rename to apps/client/src/static/icons/light/wifi-2.svg diff --git a/src/static/icons/light/wifi-slash.svg b/apps/client/src/static/icons/light/wifi-slash.svg similarity index 100% rename from src/static/icons/light/wifi-slash.svg rename to apps/client/src/static/icons/light/wifi-slash.svg diff --git a/src/static/icons/light/wifi.svg b/apps/client/src/static/icons/light/wifi.svg similarity index 100% rename from src/static/icons/light/wifi.svg rename to apps/client/src/static/icons/light/wifi.svg diff --git a/src/static/icons/light/wind-turbine.svg b/apps/client/src/static/icons/light/wind-turbine.svg similarity index 100% rename from src/static/icons/light/wind-turbine.svg rename to apps/client/src/static/icons/light/wind-turbine.svg diff --git a/src/static/icons/light/wind-warning.svg b/apps/client/src/static/icons/light/wind-warning.svg similarity index 100% rename from src/static/icons/light/wind-warning.svg rename to apps/client/src/static/icons/light/wind-warning.svg diff --git a/src/static/icons/light/wind.svg b/apps/client/src/static/icons/light/wind.svg similarity index 100% rename from src/static/icons/light/wind.svg rename to apps/client/src/static/icons/light/wind.svg diff --git a/src/static/icons/light/window-alt.svg b/apps/client/src/static/icons/light/window-alt.svg similarity index 100% rename from src/static/icons/light/window-alt.svg rename to apps/client/src/static/icons/light/window-alt.svg diff --git a/src/static/icons/light/window-close.svg b/apps/client/src/static/icons/light/window-close.svg similarity index 100% rename from src/static/icons/light/window-close.svg rename to apps/client/src/static/icons/light/window-close.svg diff --git a/src/static/icons/light/window-frame-open.svg b/apps/client/src/static/icons/light/window-frame-open.svg similarity index 100% rename from src/static/icons/light/window-frame-open.svg rename to apps/client/src/static/icons/light/window-frame-open.svg diff --git a/src/static/icons/light/window-frame.svg b/apps/client/src/static/icons/light/window-frame.svg similarity index 100% rename from src/static/icons/light/window-frame.svg rename to apps/client/src/static/icons/light/window-frame.svg diff --git a/src/static/icons/light/window-maximize.svg b/apps/client/src/static/icons/light/window-maximize.svg similarity index 100% rename from src/static/icons/light/window-maximize.svg rename to apps/client/src/static/icons/light/window-maximize.svg diff --git a/src/static/icons/light/window-minimize.svg b/apps/client/src/static/icons/light/window-minimize.svg similarity index 100% rename from src/static/icons/light/window-minimize.svg rename to apps/client/src/static/icons/light/window-minimize.svg diff --git a/src/static/icons/light/window-restore.svg b/apps/client/src/static/icons/light/window-restore.svg similarity index 100% rename from src/static/icons/light/window-restore.svg rename to apps/client/src/static/icons/light/window-restore.svg diff --git a/src/static/icons/light/window.svg b/apps/client/src/static/icons/light/window.svg similarity index 100% rename from src/static/icons/light/window.svg rename to apps/client/src/static/icons/light/window.svg diff --git a/src/static/icons/light/windsock.svg b/apps/client/src/static/icons/light/windsock.svg similarity index 100% rename from src/static/icons/light/windsock.svg rename to apps/client/src/static/icons/light/windsock.svg diff --git a/src/static/icons/light/wine-bottle.svg b/apps/client/src/static/icons/light/wine-bottle.svg similarity index 100% rename from src/static/icons/light/wine-bottle.svg rename to apps/client/src/static/icons/light/wine-bottle.svg diff --git a/src/static/icons/light/wine-glass-alt.svg b/apps/client/src/static/icons/light/wine-glass-alt.svg similarity index 100% rename from src/static/icons/light/wine-glass-alt.svg rename to apps/client/src/static/icons/light/wine-glass-alt.svg diff --git a/src/static/icons/light/wine-glass.svg b/apps/client/src/static/icons/light/wine-glass.svg similarity index 100% rename from src/static/icons/light/wine-glass.svg rename to apps/client/src/static/icons/light/wine-glass.svg diff --git a/src/static/icons/light/won-sign.svg b/apps/client/src/static/icons/light/won-sign.svg similarity index 100% rename from src/static/icons/light/won-sign.svg rename to apps/client/src/static/icons/light/won-sign.svg diff --git a/src/static/icons/light/wreath.svg b/apps/client/src/static/icons/light/wreath.svg similarity index 100% rename from src/static/icons/light/wreath.svg rename to apps/client/src/static/icons/light/wreath.svg diff --git a/src/static/icons/light/wrench.svg b/apps/client/src/static/icons/light/wrench.svg similarity index 100% rename from src/static/icons/light/wrench.svg rename to apps/client/src/static/icons/light/wrench.svg diff --git a/src/static/icons/light/x-ray.svg b/apps/client/src/static/icons/light/x-ray.svg similarity index 100% rename from src/static/icons/light/x-ray.svg rename to apps/client/src/static/icons/light/x-ray.svg diff --git a/src/static/icons/light/yen-sign.svg b/apps/client/src/static/icons/light/yen-sign.svg similarity index 100% rename from src/static/icons/light/yen-sign.svg rename to apps/client/src/static/icons/light/yen-sign.svg diff --git a/src/static/icons/light/yin-yang.svg b/apps/client/src/static/icons/light/yin-yang.svg similarity index 100% rename from src/static/icons/light/yin-yang.svg rename to apps/client/src/static/icons/light/yin-yang.svg diff --git a/src/static/icons/regular/abacus.svg b/apps/client/src/static/icons/regular/abacus.svg similarity index 100% rename from src/static/icons/regular/abacus.svg rename to apps/client/src/static/icons/regular/abacus.svg diff --git a/src/static/icons/regular/acorn.svg b/apps/client/src/static/icons/regular/acorn.svg similarity index 100% rename from src/static/icons/regular/acorn.svg rename to apps/client/src/static/icons/regular/acorn.svg diff --git a/src/static/icons/regular/ad.svg b/apps/client/src/static/icons/regular/ad.svg similarity index 100% rename from src/static/icons/regular/ad.svg rename to apps/client/src/static/icons/regular/ad.svg diff --git a/src/static/icons/regular/address-book.svg b/apps/client/src/static/icons/regular/address-book.svg similarity index 100% rename from src/static/icons/regular/address-book.svg rename to apps/client/src/static/icons/regular/address-book.svg diff --git a/src/static/icons/regular/address-card.svg b/apps/client/src/static/icons/regular/address-card.svg similarity index 100% rename from src/static/icons/regular/address-card.svg rename to apps/client/src/static/icons/regular/address-card.svg diff --git a/src/static/icons/regular/adjust.svg b/apps/client/src/static/icons/regular/adjust.svg similarity index 100% rename from src/static/icons/regular/adjust.svg rename to apps/client/src/static/icons/regular/adjust.svg diff --git a/src/static/icons/regular/air-conditioner.svg b/apps/client/src/static/icons/regular/air-conditioner.svg similarity index 100% rename from src/static/icons/regular/air-conditioner.svg rename to apps/client/src/static/icons/regular/air-conditioner.svg diff --git a/src/static/icons/regular/air-freshener.svg b/apps/client/src/static/icons/regular/air-freshener.svg similarity index 100% rename from src/static/icons/regular/air-freshener.svg rename to apps/client/src/static/icons/regular/air-freshener.svg diff --git a/src/static/icons/regular/alarm-clock.svg b/apps/client/src/static/icons/regular/alarm-clock.svg similarity index 100% rename from src/static/icons/regular/alarm-clock.svg rename to apps/client/src/static/icons/regular/alarm-clock.svg diff --git a/src/static/icons/regular/alarm-exclamation.svg b/apps/client/src/static/icons/regular/alarm-exclamation.svg similarity index 100% rename from src/static/icons/regular/alarm-exclamation.svg rename to apps/client/src/static/icons/regular/alarm-exclamation.svg diff --git a/src/static/icons/regular/alarm-plus.svg b/apps/client/src/static/icons/regular/alarm-plus.svg similarity index 100% rename from src/static/icons/regular/alarm-plus.svg rename to apps/client/src/static/icons/regular/alarm-plus.svg diff --git a/src/static/icons/regular/alarm-snooze.svg b/apps/client/src/static/icons/regular/alarm-snooze.svg similarity index 100% rename from src/static/icons/regular/alarm-snooze.svg rename to apps/client/src/static/icons/regular/alarm-snooze.svg diff --git a/src/static/icons/regular/album-collection.svg b/apps/client/src/static/icons/regular/album-collection.svg similarity index 100% rename from src/static/icons/regular/album-collection.svg rename to apps/client/src/static/icons/regular/album-collection.svg diff --git a/src/static/icons/regular/album.svg b/apps/client/src/static/icons/regular/album.svg similarity index 100% rename from src/static/icons/regular/album.svg rename to apps/client/src/static/icons/regular/album.svg diff --git a/src/static/icons/regular/alicorn.svg b/apps/client/src/static/icons/regular/alicorn.svg similarity index 100% rename from src/static/icons/regular/alicorn.svg rename to apps/client/src/static/icons/regular/alicorn.svg diff --git a/src/static/icons/regular/alien-monster.svg b/apps/client/src/static/icons/regular/alien-monster.svg similarity index 100% rename from src/static/icons/regular/alien-monster.svg rename to apps/client/src/static/icons/regular/alien-monster.svg diff --git a/src/static/icons/regular/alien.svg b/apps/client/src/static/icons/regular/alien.svg similarity index 100% rename from src/static/icons/regular/alien.svg rename to apps/client/src/static/icons/regular/alien.svg diff --git a/src/static/icons/regular/align-center.svg b/apps/client/src/static/icons/regular/align-center.svg similarity index 100% rename from src/static/icons/regular/align-center.svg rename to apps/client/src/static/icons/regular/align-center.svg diff --git a/src/static/icons/regular/align-justify.svg b/apps/client/src/static/icons/regular/align-justify.svg similarity index 100% rename from src/static/icons/regular/align-justify.svg rename to apps/client/src/static/icons/regular/align-justify.svg diff --git a/src/static/icons/regular/align-left.svg b/apps/client/src/static/icons/regular/align-left.svg similarity index 100% rename from src/static/icons/regular/align-left.svg rename to apps/client/src/static/icons/regular/align-left.svg diff --git a/src/static/icons/regular/align-right.svg b/apps/client/src/static/icons/regular/align-right.svg similarity index 100% rename from src/static/icons/regular/align-right.svg rename to apps/client/src/static/icons/regular/align-right.svg diff --git a/src/static/icons/regular/align-slash.svg b/apps/client/src/static/icons/regular/align-slash.svg similarity index 100% rename from src/static/icons/regular/align-slash.svg rename to apps/client/src/static/icons/regular/align-slash.svg diff --git a/src/static/icons/regular/allergies.svg b/apps/client/src/static/icons/regular/allergies.svg similarity index 100% rename from src/static/icons/regular/allergies.svg rename to apps/client/src/static/icons/regular/allergies.svg diff --git a/src/static/icons/regular/ambulance.svg b/apps/client/src/static/icons/regular/ambulance.svg similarity index 100% rename from src/static/icons/regular/ambulance.svg rename to apps/client/src/static/icons/regular/ambulance.svg diff --git a/src/static/icons/regular/american-sign-language-interpreting.svg b/apps/client/src/static/icons/regular/american-sign-language-interpreting.svg similarity index 100% rename from src/static/icons/regular/american-sign-language-interpreting.svg rename to apps/client/src/static/icons/regular/american-sign-language-interpreting.svg diff --git a/src/static/icons/regular/amp-guitar.svg b/apps/client/src/static/icons/regular/amp-guitar.svg similarity index 100% rename from src/static/icons/regular/amp-guitar.svg rename to apps/client/src/static/icons/regular/amp-guitar.svg diff --git a/src/static/icons/regular/analytics.svg b/apps/client/src/static/icons/regular/analytics.svg similarity index 100% rename from src/static/icons/regular/analytics.svg rename to apps/client/src/static/icons/regular/analytics.svg diff --git a/src/static/icons/regular/anchor.svg b/apps/client/src/static/icons/regular/anchor.svg similarity index 100% rename from src/static/icons/regular/anchor.svg rename to apps/client/src/static/icons/regular/anchor.svg diff --git a/src/static/icons/regular/angel.svg b/apps/client/src/static/icons/regular/angel.svg similarity index 100% rename from src/static/icons/regular/angel.svg rename to apps/client/src/static/icons/regular/angel.svg diff --git a/src/static/icons/regular/angle-double-down.svg b/apps/client/src/static/icons/regular/angle-double-down.svg similarity index 100% rename from src/static/icons/regular/angle-double-down.svg rename to apps/client/src/static/icons/regular/angle-double-down.svg diff --git a/src/static/icons/regular/angle-double-left.svg b/apps/client/src/static/icons/regular/angle-double-left.svg similarity index 100% rename from src/static/icons/regular/angle-double-left.svg rename to apps/client/src/static/icons/regular/angle-double-left.svg diff --git a/src/static/icons/regular/angle-double-right.svg b/apps/client/src/static/icons/regular/angle-double-right.svg similarity index 100% rename from src/static/icons/regular/angle-double-right.svg rename to apps/client/src/static/icons/regular/angle-double-right.svg diff --git a/src/static/icons/regular/angle-double-up.svg b/apps/client/src/static/icons/regular/angle-double-up.svg similarity index 100% rename from src/static/icons/regular/angle-double-up.svg rename to apps/client/src/static/icons/regular/angle-double-up.svg diff --git a/src/static/icons/regular/angle-down.svg b/apps/client/src/static/icons/regular/angle-down.svg similarity index 100% rename from src/static/icons/regular/angle-down.svg rename to apps/client/src/static/icons/regular/angle-down.svg diff --git a/src/static/icons/regular/angle-left.svg b/apps/client/src/static/icons/regular/angle-left.svg similarity index 100% rename from src/static/icons/regular/angle-left.svg rename to apps/client/src/static/icons/regular/angle-left.svg diff --git a/src/static/icons/regular/angle-right.svg b/apps/client/src/static/icons/regular/angle-right.svg similarity index 100% rename from src/static/icons/regular/angle-right.svg rename to apps/client/src/static/icons/regular/angle-right.svg diff --git a/src/static/icons/regular/angle-up.svg b/apps/client/src/static/icons/regular/angle-up.svg similarity index 100% rename from src/static/icons/regular/angle-up.svg rename to apps/client/src/static/icons/regular/angle-up.svg diff --git a/src/static/icons/regular/angry.svg b/apps/client/src/static/icons/regular/angry.svg similarity index 100% rename from src/static/icons/regular/angry.svg rename to apps/client/src/static/icons/regular/angry.svg diff --git a/src/static/icons/regular/ankh.svg b/apps/client/src/static/icons/regular/ankh.svg similarity index 100% rename from src/static/icons/regular/ankh.svg rename to apps/client/src/static/icons/regular/ankh.svg diff --git a/src/static/icons/regular/apple-alt.svg b/apps/client/src/static/icons/regular/apple-alt.svg similarity index 100% rename from src/static/icons/regular/apple-alt.svg rename to apps/client/src/static/icons/regular/apple-alt.svg diff --git a/src/static/icons/regular/apple-crate.svg b/apps/client/src/static/icons/regular/apple-crate.svg similarity index 100% rename from src/static/icons/regular/apple-crate.svg rename to apps/client/src/static/icons/regular/apple-crate.svg diff --git a/src/static/icons/regular/archive.svg b/apps/client/src/static/icons/regular/archive.svg similarity index 100% rename from src/static/icons/regular/archive.svg rename to apps/client/src/static/icons/regular/archive.svg diff --git a/src/static/icons/regular/archway.svg b/apps/client/src/static/icons/regular/archway.svg similarity index 100% rename from src/static/icons/regular/archway.svg rename to apps/client/src/static/icons/regular/archway.svg diff --git a/src/static/icons/regular/arrow-alt-circle-down.svg b/apps/client/src/static/icons/regular/arrow-alt-circle-down.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-circle-down.svg rename to apps/client/src/static/icons/regular/arrow-alt-circle-down.svg diff --git a/src/static/icons/regular/arrow-alt-circle-left.svg b/apps/client/src/static/icons/regular/arrow-alt-circle-left.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-circle-left.svg rename to apps/client/src/static/icons/regular/arrow-alt-circle-left.svg diff --git a/src/static/icons/regular/arrow-alt-circle-right.svg b/apps/client/src/static/icons/regular/arrow-alt-circle-right.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-circle-right.svg rename to apps/client/src/static/icons/regular/arrow-alt-circle-right.svg diff --git a/src/static/icons/regular/arrow-alt-circle-up.svg b/apps/client/src/static/icons/regular/arrow-alt-circle-up.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-circle-up.svg rename to apps/client/src/static/icons/regular/arrow-alt-circle-up.svg diff --git a/src/static/icons/regular/arrow-alt-down.svg b/apps/client/src/static/icons/regular/arrow-alt-down.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-down.svg rename to apps/client/src/static/icons/regular/arrow-alt-down.svg diff --git a/src/static/icons/regular/arrow-alt-from-bottom.svg b/apps/client/src/static/icons/regular/arrow-alt-from-bottom.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-from-bottom.svg rename to apps/client/src/static/icons/regular/arrow-alt-from-bottom.svg diff --git a/src/static/icons/regular/arrow-alt-from-left.svg b/apps/client/src/static/icons/regular/arrow-alt-from-left.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-from-left.svg rename to apps/client/src/static/icons/regular/arrow-alt-from-left.svg diff --git a/src/static/icons/regular/arrow-alt-from-right.svg b/apps/client/src/static/icons/regular/arrow-alt-from-right.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-from-right.svg rename to apps/client/src/static/icons/regular/arrow-alt-from-right.svg diff --git a/src/static/icons/regular/arrow-alt-from-top.svg b/apps/client/src/static/icons/regular/arrow-alt-from-top.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-from-top.svg rename to apps/client/src/static/icons/regular/arrow-alt-from-top.svg diff --git a/src/static/icons/regular/arrow-alt-left.svg b/apps/client/src/static/icons/regular/arrow-alt-left.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-left.svg rename to apps/client/src/static/icons/regular/arrow-alt-left.svg diff --git a/src/static/icons/regular/arrow-alt-right.svg b/apps/client/src/static/icons/regular/arrow-alt-right.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-right.svg rename to apps/client/src/static/icons/regular/arrow-alt-right.svg diff --git a/src/static/icons/regular/arrow-alt-square-down.svg b/apps/client/src/static/icons/regular/arrow-alt-square-down.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-square-down.svg rename to apps/client/src/static/icons/regular/arrow-alt-square-down.svg diff --git a/src/static/icons/regular/arrow-alt-square-left.svg b/apps/client/src/static/icons/regular/arrow-alt-square-left.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-square-left.svg rename to apps/client/src/static/icons/regular/arrow-alt-square-left.svg diff --git a/src/static/icons/regular/arrow-alt-square-right.svg b/apps/client/src/static/icons/regular/arrow-alt-square-right.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-square-right.svg rename to apps/client/src/static/icons/regular/arrow-alt-square-right.svg diff --git a/src/static/icons/regular/arrow-alt-square-up.svg b/apps/client/src/static/icons/regular/arrow-alt-square-up.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-square-up.svg rename to apps/client/src/static/icons/regular/arrow-alt-square-up.svg diff --git a/src/static/icons/regular/arrow-alt-to-bottom.svg b/apps/client/src/static/icons/regular/arrow-alt-to-bottom.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-to-bottom.svg rename to apps/client/src/static/icons/regular/arrow-alt-to-bottom.svg diff --git a/src/static/icons/regular/arrow-alt-to-left.svg b/apps/client/src/static/icons/regular/arrow-alt-to-left.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-to-left.svg rename to apps/client/src/static/icons/regular/arrow-alt-to-left.svg diff --git a/src/static/icons/regular/arrow-alt-to-right.svg b/apps/client/src/static/icons/regular/arrow-alt-to-right.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-to-right.svg rename to apps/client/src/static/icons/regular/arrow-alt-to-right.svg diff --git a/src/static/icons/regular/arrow-alt-to-top.svg b/apps/client/src/static/icons/regular/arrow-alt-to-top.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-to-top.svg rename to apps/client/src/static/icons/regular/arrow-alt-to-top.svg diff --git a/src/static/icons/regular/arrow-alt-up.svg b/apps/client/src/static/icons/regular/arrow-alt-up.svg similarity index 100% rename from src/static/icons/regular/arrow-alt-up.svg rename to apps/client/src/static/icons/regular/arrow-alt-up.svg diff --git a/src/static/icons/regular/arrow-circle-down.svg b/apps/client/src/static/icons/regular/arrow-circle-down.svg similarity index 100% rename from src/static/icons/regular/arrow-circle-down.svg rename to apps/client/src/static/icons/regular/arrow-circle-down.svg diff --git a/src/static/icons/regular/arrow-circle-left.svg b/apps/client/src/static/icons/regular/arrow-circle-left.svg similarity index 100% rename from src/static/icons/regular/arrow-circle-left.svg rename to apps/client/src/static/icons/regular/arrow-circle-left.svg diff --git a/src/static/icons/regular/arrow-circle-right.svg b/apps/client/src/static/icons/regular/arrow-circle-right.svg similarity index 100% rename from src/static/icons/regular/arrow-circle-right.svg rename to apps/client/src/static/icons/regular/arrow-circle-right.svg diff --git a/src/static/icons/regular/arrow-circle-up.svg b/apps/client/src/static/icons/regular/arrow-circle-up.svg similarity index 100% rename from src/static/icons/regular/arrow-circle-up.svg rename to apps/client/src/static/icons/regular/arrow-circle-up.svg diff --git a/src/static/icons/regular/arrow-down.svg b/apps/client/src/static/icons/regular/arrow-down.svg similarity index 100% rename from src/static/icons/regular/arrow-down.svg rename to apps/client/src/static/icons/regular/arrow-down.svg diff --git a/src/static/icons/regular/arrow-from-bottom.svg b/apps/client/src/static/icons/regular/arrow-from-bottom.svg similarity index 100% rename from src/static/icons/regular/arrow-from-bottom.svg rename to apps/client/src/static/icons/regular/arrow-from-bottom.svg diff --git a/src/static/icons/regular/arrow-from-left.svg b/apps/client/src/static/icons/regular/arrow-from-left.svg similarity index 100% rename from src/static/icons/regular/arrow-from-left.svg rename to apps/client/src/static/icons/regular/arrow-from-left.svg diff --git a/src/static/icons/regular/arrow-from-right.svg b/apps/client/src/static/icons/regular/arrow-from-right.svg similarity index 100% rename from src/static/icons/regular/arrow-from-right.svg rename to apps/client/src/static/icons/regular/arrow-from-right.svg diff --git a/src/static/icons/regular/arrow-from-top.svg b/apps/client/src/static/icons/regular/arrow-from-top.svg similarity index 100% rename from src/static/icons/regular/arrow-from-top.svg rename to apps/client/src/static/icons/regular/arrow-from-top.svg diff --git a/src/static/icons/regular/arrow-left.svg b/apps/client/src/static/icons/regular/arrow-left.svg similarity index 100% rename from src/static/icons/regular/arrow-left.svg rename to apps/client/src/static/icons/regular/arrow-left.svg diff --git a/src/static/icons/regular/arrow-right.svg b/apps/client/src/static/icons/regular/arrow-right.svg similarity index 100% rename from src/static/icons/regular/arrow-right.svg rename to apps/client/src/static/icons/regular/arrow-right.svg diff --git a/src/static/icons/regular/arrow-square-down.svg b/apps/client/src/static/icons/regular/arrow-square-down.svg similarity index 100% rename from src/static/icons/regular/arrow-square-down.svg rename to apps/client/src/static/icons/regular/arrow-square-down.svg diff --git a/src/static/icons/regular/arrow-square-left.svg b/apps/client/src/static/icons/regular/arrow-square-left.svg similarity index 100% rename from src/static/icons/regular/arrow-square-left.svg rename to apps/client/src/static/icons/regular/arrow-square-left.svg diff --git a/src/static/icons/regular/arrow-square-right.svg b/apps/client/src/static/icons/regular/arrow-square-right.svg similarity index 100% rename from src/static/icons/regular/arrow-square-right.svg rename to apps/client/src/static/icons/regular/arrow-square-right.svg diff --git a/src/static/icons/regular/arrow-square-up.svg b/apps/client/src/static/icons/regular/arrow-square-up.svg similarity index 100% rename from src/static/icons/regular/arrow-square-up.svg rename to apps/client/src/static/icons/regular/arrow-square-up.svg diff --git a/src/static/icons/regular/arrow-to-bottom.svg b/apps/client/src/static/icons/regular/arrow-to-bottom.svg similarity index 100% rename from src/static/icons/regular/arrow-to-bottom.svg rename to apps/client/src/static/icons/regular/arrow-to-bottom.svg diff --git a/src/static/icons/regular/arrow-to-left.svg b/apps/client/src/static/icons/regular/arrow-to-left.svg similarity index 100% rename from src/static/icons/regular/arrow-to-left.svg rename to apps/client/src/static/icons/regular/arrow-to-left.svg diff --git a/src/static/icons/regular/arrow-to-right.svg b/apps/client/src/static/icons/regular/arrow-to-right.svg similarity index 100% rename from src/static/icons/regular/arrow-to-right.svg rename to apps/client/src/static/icons/regular/arrow-to-right.svg diff --git a/src/static/icons/regular/arrow-to-top.svg b/apps/client/src/static/icons/regular/arrow-to-top.svg similarity index 100% rename from src/static/icons/regular/arrow-to-top.svg rename to apps/client/src/static/icons/regular/arrow-to-top.svg diff --git a/src/static/icons/regular/arrow-up.svg b/apps/client/src/static/icons/regular/arrow-up.svg similarity index 100% rename from src/static/icons/regular/arrow-up.svg rename to apps/client/src/static/icons/regular/arrow-up.svg diff --git a/src/static/icons/regular/arrows-alt-h.svg b/apps/client/src/static/icons/regular/arrows-alt-h.svg similarity index 100% rename from src/static/icons/regular/arrows-alt-h.svg rename to apps/client/src/static/icons/regular/arrows-alt-h.svg diff --git a/src/static/icons/regular/arrows-alt-v.svg b/apps/client/src/static/icons/regular/arrows-alt-v.svg similarity index 100% rename from src/static/icons/regular/arrows-alt-v.svg rename to apps/client/src/static/icons/regular/arrows-alt-v.svg diff --git a/src/static/icons/regular/arrows-alt.svg b/apps/client/src/static/icons/regular/arrows-alt.svg similarity index 100% rename from src/static/icons/regular/arrows-alt.svg rename to apps/client/src/static/icons/regular/arrows-alt.svg diff --git a/src/static/icons/regular/arrows-h.svg b/apps/client/src/static/icons/regular/arrows-h.svg similarity index 100% rename from src/static/icons/regular/arrows-h.svg rename to apps/client/src/static/icons/regular/arrows-h.svg diff --git a/src/static/icons/regular/arrows-v.svg b/apps/client/src/static/icons/regular/arrows-v.svg similarity index 100% rename from src/static/icons/regular/arrows-v.svg rename to apps/client/src/static/icons/regular/arrows-v.svg diff --git a/src/static/icons/regular/arrows.svg b/apps/client/src/static/icons/regular/arrows.svg similarity index 100% rename from src/static/icons/regular/arrows.svg rename to apps/client/src/static/icons/regular/arrows.svg diff --git a/src/static/icons/regular/assistive-listening-systems.svg b/apps/client/src/static/icons/regular/assistive-listening-systems.svg similarity index 100% rename from src/static/icons/regular/assistive-listening-systems.svg rename to apps/client/src/static/icons/regular/assistive-listening-systems.svg diff --git a/src/static/icons/regular/asterisk.svg b/apps/client/src/static/icons/regular/asterisk.svg similarity index 100% rename from src/static/icons/regular/asterisk.svg rename to apps/client/src/static/icons/regular/asterisk.svg diff --git a/src/static/icons/regular/at.svg b/apps/client/src/static/icons/regular/at.svg similarity index 100% rename from src/static/icons/regular/at.svg rename to apps/client/src/static/icons/regular/at.svg diff --git a/src/static/icons/regular/atlas.svg b/apps/client/src/static/icons/regular/atlas.svg similarity index 100% rename from src/static/icons/regular/atlas.svg rename to apps/client/src/static/icons/regular/atlas.svg diff --git a/src/static/icons/regular/atom-alt.svg b/apps/client/src/static/icons/regular/atom-alt.svg similarity index 100% rename from src/static/icons/regular/atom-alt.svg rename to apps/client/src/static/icons/regular/atom-alt.svg diff --git a/src/static/icons/regular/atom.svg b/apps/client/src/static/icons/regular/atom.svg similarity index 100% rename from src/static/icons/regular/atom.svg rename to apps/client/src/static/icons/regular/atom.svg diff --git a/src/static/icons/regular/audio-description.svg b/apps/client/src/static/icons/regular/audio-description.svg similarity index 100% rename from src/static/icons/regular/audio-description.svg rename to apps/client/src/static/icons/regular/audio-description.svg diff --git a/src/static/icons/regular/award.svg b/apps/client/src/static/icons/regular/award.svg similarity index 100% rename from src/static/icons/regular/award.svg rename to apps/client/src/static/icons/regular/award.svg diff --git a/src/static/icons/regular/axe-battle.svg b/apps/client/src/static/icons/regular/axe-battle.svg similarity index 100% rename from src/static/icons/regular/axe-battle.svg rename to apps/client/src/static/icons/regular/axe-battle.svg diff --git a/src/static/icons/regular/axe.svg b/apps/client/src/static/icons/regular/axe.svg similarity index 100% rename from src/static/icons/regular/axe.svg rename to apps/client/src/static/icons/regular/axe.svg diff --git a/src/static/icons/regular/baby-carriage.svg b/apps/client/src/static/icons/regular/baby-carriage.svg similarity index 100% rename from src/static/icons/regular/baby-carriage.svg rename to apps/client/src/static/icons/regular/baby-carriage.svg diff --git a/src/static/icons/regular/baby.svg b/apps/client/src/static/icons/regular/baby.svg similarity index 100% rename from src/static/icons/regular/baby.svg rename to apps/client/src/static/icons/regular/baby.svg diff --git a/src/static/icons/regular/backpack.svg b/apps/client/src/static/icons/regular/backpack.svg similarity index 100% rename from src/static/icons/regular/backpack.svg rename to apps/client/src/static/icons/regular/backpack.svg diff --git a/src/static/icons/regular/backspace.svg b/apps/client/src/static/icons/regular/backspace.svg similarity index 100% rename from src/static/icons/regular/backspace.svg rename to apps/client/src/static/icons/regular/backspace.svg diff --git a/src/static/icons/regular/backward.svg b/apps/client/src/static/icons/regular/backward.svg similarity index 100% rename from src/static/icons/regular/backward.svg rename to apps/client/src/static/icons/regular/backward.svg diff --git a/src/static/icons/regular/bacon.svg b/apps/client/src/static/icons/regular/bacon.svg similarity index 100% rename from src/static/icons/regular/bacon.svg rename to apps/client/src/static/icons/regular/bacon.svg diff --git a/src/static/icons/regular/badge-check.svg b/apps/client/src/static/icons/regular/badge-check.svg similarity index 100% rename from src/static/icons/regular/badge-check.svg rename to apps/client/src/static/icons/regular/badge-check.svg diff --git a/src/static/icons/regular/badge-dollar.svg b/apps/client/src/static/icons/regular/badge-dollar.svg similarity index 100% rename from src/static/icons/regular/badge-dollar.svg rename to apps/client/src/static/icons/regular/badge-dollar.svg diff --git a/src/static/icons/regular/badge-percent.svg b/apps/client/src/static/icons/regular/badge-percent.svg similarity index 100% rename from src/static/icons/regular/badge-percent.svg rename to apps/client/src/static/icons/regular/badge-percent.svg diff --git a/src/static/icons/regular/badge-sheriff.svg b/apps/client/src/static/icons/regular/badge-sheriff.svg similarity index 100% rename from src/static/icons/regular/badge-sheriff.svg rename to apps/client/src/static/icons/regular/badge-sheriff.svg diff --git a/src/static/icons/regular/badge.svg b/apps/client/src/static/icons/regular/badge.svg similarity index 100% rename from src/static/icons/regular/badge.svg rename to apps/client/src/static/icons/regular/badge.svg diff --git a/src/static/icons/regular/badger-honey.svg b/apps/client/src/static/icons/regular/badger-honey.svg similarity index 100% rename from src/static/icons/regular/badger-honey.svg rename to apps/client/src/static/icons/regular/badger-honey.svg diff --git a/src/static/icons/regular/bags-shopping.svg b/apps/client/src/static/icons/regular/bags-shopping.svg similarity index 100% rename from src/static/icons/regular/bags-shopping.svg rename to apps/client/src/static/icons/regular/bags-shopping.svg diff --git a/src/static/icons/regular/bahai.svg b/apps/client/src/static/icons/regular/bahai.svg similarity index 100% rename from src/static/icons/regular/bahai.svg rename to apps/client/src/static/icons/regular/bahai.svg diff --git a/src/static/icons/regular/balance-scale-left.svg b/apps/client/src/static/icons/regular/balance-scale-left.svg similarity index 100% rename from src/static/icons/regular/balance-scale-left.svg rename to apps/client/src/static/icons/regular/balance-scale-left.svg diff --git a/src/static/icons/regular/balance-scale-right.svg b/apps/client/src/static/icons/regular/balance-scale-right.svg similarity index 100% rename from src/static/icons/regular/balance-scale-right.svg rename to apps/client/src/static/icons/regular/balance-scale-right.svg diff --git a/src/static/icons/regular/balance-scale.svg b/apps/client/src/static/icons/regular/balance-scale.svg similarity index 100% rename from src/static/icons/regular/balance-scale.svg rename to apps/client/src/static/icons/regular/balance-scale.svg diff --git a/src/static/icons/regular/ball-pile.svg b/apps/client/src/static/icons/regular/ball-pile.svg similarity index 100% rename from src/static/icons/regular/ball-pile.svg rename to apps/client/src/static/icons/regular/ball-pile.svg diff --git a/src/static/icons/regular/ballot-check.svg b/apps/client/src/static/icons/regular/ballot-check.svg similarity index 100% rename from src/static/icons/regular/ballot-check.svg rename to apps/client/src/static/icons/regular/ballot-check.svg diff --git a/src/static/icons/regular/ballot.svg b/apps/client/src/static/icons/regular/ballot.svg similarity index 100% rename from src/static/icons/regular/ballot.svg rename to apps/client/src/static/icons/regular/ballot.svg diff --git a/src/static/icons/regular/ban.svg b/apps/client/src/static/icons/regular/ban.svg similarity index 100% rename from src/static/icons/regular/ban.svg rename to apps/client/src/static/icons/regular/ban.svg diff --git a/src/static/icons/regular/band-aid.svg b/apps/client/src/static/icons/regular/band-aid.svg similarity index 100% rename from src/static/icons/regular/band-aid.svg rename to apps/client/src/static/icons/regular/band-aid.svg diff --git a/src/static/icons/regular/banjo.svg b/apps/client/src/static/icons/regular/banjo.svg similarity index 100% rename from src/static/icons/regular/banjo.svg rename to apps/client/src/static/icons/regular/banjo.svg diff --git a/src/static/icons/regular/barcode-alt.svg b/apps/client/src/static/icons/regular/barcode-alt.svg similarity index 100% rename from src/static/icons/regular/barcode-alt.svg rename to apps/client/src/static/icons/regular/barcode-alt.svg diff --git a/src/static/icons/regular/barcode-read.svg b/apps/client/src/static/icons/regular/barcode-read.svg similarity index 100% rename from src/static/icons/regular/barcode-read.svg rename to apps/client/src/static/icons/regular/barcode-read.svg diff --git a/src/static/icons/regular/barcode-scan.svg b/apps/client/src/static/icons/regular/barcode-scan.svg similarity index 100% rename from src/static/icons/regular/barcode-scan.svg rename to apps/client/src/static/icons/regular/barcode-scan.svg diff --git a/src/static/icons/regular/barcode.svg b/apps/client/src/static/icons/regular/barcode.svg similarity index 100% rename from src/static/icons/regular/barcode.svg rename to apps/client/src/static/icons/regular/barcode.svg diff --git a/src/static/icons/regular/bars.svg b/apps/client/src/static/icons/regular/bars.svg similarity index 100% rename from src/static/icons/regular/bars.svg rename to apps/client/src/static/icons/regular/bars.svg diff --git a/src/static/icons/regular/baseball-ball.svg b/apps/client/src/static/icons/regular/baseball-ball.svg similarity index 100% rename from src/static/icons/regular/baseball-ball.svg rename to apps/client/src/static/icons/regular/baseball-ball.svg diff --git a/src/static/icons/regular/baseball.svg b/apps/client/src/static/icons/regular/baseball.svg similarity index 100% rename from src/static/icons/regular/baseball.svg rename to apps/client/src/static/icons/regular/baseball.svg diff --git a/src/static/icons/regular/basketball-ball.svg b/apps/client/src/static/icons/regular/basketball-ball.svg similarity index 100% rename from src/static/icons/regular/basketball-ball.svg rename to apps/client/src/static/icons/regular/basketball-ball.svg diff --git a/src/static/icons/regular/basketball-hoop.svg b/apps/client/src/static/icons/regular/basketball-hoop.svg similarity index 100% rename from src/static/icons/regular/basketball-hoop.svg rename to apps/client/src/static/icons/regular/basketball-hoop.svg diff --git a/src/static/icons/regular/bat.svg b/apps/client/src/static/icons/regular/bat.svg similarity index 100% rename from src/static/icons/regular/bat.svg rename to apps/client/src/static/icons/regular/bat.svg diff --git a/src/static/icons/regular/bath.svg b/apps/client/src/static/icons/regular/bath.svg similarity index 100% rename from src/static/icons/regular/bath.svg rename to apps/client/src/static/icons/regular/bath.svg diff --git a/src/static/icons/regular/battery-bolt.svg b/apps/client/src/static/icons/regular/battery-bolt.svg similarity index 100% rename from src/static/icons/regular/battery-bolt.svg rename to apps/client/src/static/icons/regular/battery-bolt.svg diff --git a/src/static/icons/regular/battery-empty.svg b/apps/client/src/static/icons/regular/battery-empty.svg similarity index 100% rename from src/static/icons/regular/battery-empty.svg rename to apps/client/src/static/icons/regular/battery-empty.svg diff --git a/src/static/icons/regular/battery-full.svg b/apps/client/src/static/icons/regular/battery-full.svg similarity index 100% rename from src/static/icons/regular/battery-full.svg rename to apps/client/src/static/icons/regular/battery-full.svg diff --git a/src/static/icons/regular/battery-half.svg b/apps/client/src/static/icons/regular/battery-half.svg similarity index 100% rename from src/static/icons/regular/battery-half.svg rename to apps/client/src/static/icons/regular/battery-half.svg diff --git a/src/static/icons/regular/battery-quarter.svg b/apps/client/src/static/icons/regular/battery-quarter.svg similarity index 100% rename from src/static/icons/regular/battery-quarter.svg rename to apps/client/src/static/icons/regular/battery-quarter.svg diff --git a/src/static/icons/regular/battery-slash.svg b/apps/client/src/static/icons/regular/battery-slash.svg similarity index 100% rename from src/static/icons/regular/battery-slash.svg rename to apps/client/src/static/icons/regular/battery-slash.svg diff --git a/src/static/icons/regular/battery-three-quarters.svg b/apps/client/src/static/icons/regular/battery-three-quarters.svg similarity index 100% rename from src/static/icons/regular/battery-three-quarters.svg rename to apps/client/src/static/icons/regular/battery-three-quarters.svg diff --git a/src/static/icons/regular/bed-alt.svg b/apps/client/src/static/icons/regular/bed-alt.svg similarity index 100% rename from src/static/icons/regular/bed-alt.svg rename to apps/client/src/static/icons/regular/bed-alt.svg diff --git a/src/static/icons/regular/bed-bunk.svg b/apps/client/src/static/icons/regular/bed-bunk.svg similarity index 100% rename from src/static/icons/regular/bed-bunk.svg rename to apps/client/src/static/icons/regular/bed-bunk.svg diff --git a/src/static/icons/regular/bed-empty.svg b/apps/client/src/static/icons/regular/bed-empty.svg similarity index 100% rename from src/static/icons/regular/bed-empty.svg rename to apps/client/src/static/icons/regular/bed-empty.svg diff --git a/src/static/icons/regular/bed.svg b/apps/client/src/static/icons/regular/bed.svg similarity index 100% rename from src/static/icons/regular/bed.svg rename to apps/client/src/static/icons/regular/bed.svg diff --git a/src/static/icons/regular/beer.svg b/apps/client/src/static/icons/regular/beer.svg similarity index 100% rename from src/static/icons/regular/beer.svg rename to apps/client/src/static/icons/regular/beer.svg diff --git a/src/static/icons/regular/bell-exclamation.svg b/apps/client/src/static/icons/regular/bell-exclamation.svg similarity index 100% rename from src/static/icons/regular/bell-exclamation.svg rename to apps/client/src/static/icons/regular/bell-exclamation.svg diff --git a/src/static/icons/regular/bell-on.svg b/apps/client/src/static/icons/regular/bell-on.svg similarity index 100% rename from src/static/icons/regular/bell-on.svg rename to apps/client/src/static/icons/regular/bell-on.svg diff --git a/src/static/icons/regular/bell-plus.svg b/apps/client/src/static/icons/regular/bell-plus.svg similarity index 100% rename from src/static/icons/regular/bell-plus.svg rename to apps/client/src/static/icons/regular/bell-plus.svg diff --git a/src/static/icons/regular/bell-school-slash.svg b/apps/client/src/static/icons/regular/bell-school-slash.svg similarity index 100% rename from src/static/icons/regular/bell-school-slash.svg rename to apps/client/src/static/icons/regular/bell-school-slash.svg diff --git a/src/static/icons/regular/bell-school.svg b/apps/client/src/static/icons/regular/bell-school.svg similarity index 100% rename from src/static/icons/regular/bell-school.svg rename to apps/client/src/static/icons/regular/bell-school.svg diff --git a/src/static/icons/regular/bell-slash.svg b/apps/client/src/static/icons/regular/bell-slash.svg similarity index 100% rename from src/static/icons/regular/bell-slash.svg rename to apps/client/src/static/icons/regular/bell-slash.svg diff --git a/src/static/icons/regular/bell.svg b/apps/client/src/static/icons/regular/bell.svg similarity index 100% rename from src/static/icons/regular/bell.svg rename to apps/client/src/static/icons/regular/bell.svg diff --git a/src/static/icons/regular/bells.svg b/apps/client/src/static/icons/regular/bells.svg similarity index 100% rename from src/static/icons/regular/bells.svg rename to apps/client/src/static/icons/regular/bells.svg diff --git a/src/static/icons/regular/betamax.svg b/apps/client/src/static/icons/regular/betamax.svg similarity index 100% rename from src/static/icons/regular/betamax.svg rename to apps/client/src/static/icons/regular/betamax.svg diff --git a/src/static/icons/regular/bezier-curve.svg b/apps/client/src/static/icons/regular/bezier-curve.svg similarity index 100% rename from src/static/icons/regular/bezier-curve.svg rename to apps/client/src/static/icons/regular/bezier-curve.svg diff --git a/src/static/icons/regular/bible.svg b/apps/client/src/static/icons/regular/bible.svg similarity index 100% rename from src/static/icons/regular/bible.svg rename to apps/client/src/static/icons/regular/bible.svg diff --git a/src/static/icons/regular/bicycle.svg b/apps/client/src/static/icons/regular/bicycle.svg similarity index 100% rename from src/static/icons/regular/bicycle.svg rename to apps/client/src/static/icons/regular/bicycle.svg diff --git a/src/static/icons/regular/biking-mountain.svg b/apps/client/src/static/icons/regular/biking-mountain.svg similarity index 100% rename from src/static/icons/regular/biking-mountain.svg rename to apps/client/src/static/icons/regular/biking-mountain.svg diff --git a/src/static/icons/regular/biking.svg b/apps/client/src/static/icons/regular/biking.svg similarity index 100% rename from src/static/icons/regular/biking.svg rename to apps/client/src/static/icons/regular/biking.svg diff --git a/src/static/icons/regular/binoculars.svg b/apps/client/src/static/icons/regular/binoculars.svg similarity index 100% rename from src/static/icons/regular/binoculars.svg rename to apps/client/src/static/icons/regular/binoculars.svg diff --git a/src/static/icons/regular/biohazard.svg b/apps/client/src/static/icons/regular/biohazard.svg similarity index 100% rename from src/static/icons/regular/biohazard.svg rename to apps/client/src/static/icons/regular/biohazard.svg diff --git a/src/static/icons/regular/birthday-cake.svg b/apps/client/src/static/icons/regular/birthday-cake.svg similarity index 100% rename from src/static/icons/regular/birthday-cake.svg rename to apps/client/src/static/icons/regular/birthday-cake.svg diff --git a/src/static/icons/regular/blanket.svg b/apps/client/src/static/icons/regular/blanket.svg similarity index 100% rename from src/static/icons/regular/blanket.svg rename to apps/client/src/static/icons/regular/blanket.svg diff --git a/src/static/icons/regular/blender-phone.svg b/apps/client/src/static/icons/regular/blender-phone.svg similarity index 100% rename from src/static/icons/regular/blender-phone.svg rename to apps/client/src/static/icons/regular/blender-phone.svg diff --git a/src/static/icons/regular/blender.svg b/apps/client/src/static/icons/regular/blender.svg similarity index 100% rename from src/static/icons/regular/blender.svg rename to apps/client/src/static/icons/regular/blender.svg diff --git a/src/static/icons/regular/blind.svg b/apps/client/src/static/icons/regular/blind.svg similarity index 100% rename from src/static/icons/regular/blind.svg rename to apps/client/src/static/icons/regular/blind.svg diff --git a/src/static/icons/regular/blinds-open.svg b/apps/client/src/static/icons/regular/blinds-open.svg similarity index 100% rename from src/static/icons/regular/blinds-open.svg rename to apps/client/src/static/icons/regular/blinds-open.svg diff --git a/src/static/icons/regular/blinds-raised.svg b/apps/client/src/static/icons/regular/blinds-raised.svg similarity index 100% rename from src/static/icons/regular/blinds-raised.svg rename to apps/client/src/static/icons/regular/blinds-raised.svg diff --git a/src/static/icons/regular/blinds.svg b/apps/client/src/static/icons/regular/blinds.svg similarity index 100% rename from src/static/icons/regular/blinds.svg rename to apps/client/src/static/icons/regular/blinds.svg diff --git a/src/static/icons/regular/blog.svg b/apps/client/src/static/icons/regular/blog.svg similarity index 100% rename from src/static/icons/regular/blog.svg rename to apps/client/src/static/icons/regular/blog.svg diff --git a/src/static/icons/regular/bold.svg b/apps/client/src/static/icons/regular/bold.svg similarity index 100% rename from src/static/icons/regular/bold.svg rename to apps/client/src/static/icons/regular/bold.svg diff --git a/src/static/icons/regular/bolt.svg b/apps/client/src/static/icons/regular/bolt.svg similarity index 100% rename from src/static/icons/regular/bolt.svg rename to apps/client/src/static/icons/regular/bolt.svg diff --git a/src/static/icons/regular/bomb.svg b/apps/client/src/static/icons/regular/bomb.svg similarity index 100% rename from src/static/icons/regular/bomb.svg rename to apps/client/src/static/icons/regular/bomb.svg diff --git a/src/static/icons/regular/bone-break.svg b/apps/client/src/static/icons/regular/bone-break.svg similarity index 100% rename from src/static/icons/regular/bone-break.svg rename to apps/client/src/static/icons/regular/bone-break.svg diff --git a/src/static/icons/regular/bone.svg b/apps/client/src/static/icons/regular/bone.svg similarity index 100% rename from src/static/icons/regular/bone.svg rename to apps/client/src/static/icons/regular/bone.svg diff --git a/src/static/icons/regular/bong.svg b/apps/client/src/static/icons/regular/bong.svg similarity index 100% rename from src/static/icons/regular/bong.svg rename to apps/client/src/static/icons/regular/bong.svg diff --git a/src/static/icons/regular/book-alt.svg b/apps/client/src/static/icons/regular/book-alt.svg similarity index 100% rename from src/static/icons/regular/book-alt.svg rename to apps/client/src/static/icons/regular/book-alt.svg diff --git a/src/static/icons/regular/book-dead.svg b/apps/client/src/static/icons/regular/book-dead.svg similarity index 100% rename from src/static/icons/regular/book-dead.svg rename to apps/client/src/static/icons/regular/book-dead.svg diff --git a/src/static/icons/regular/book-heart.svg b/apps/client/src/static/icons/regular/book-heart.svg similarity index 100% rename from src/static/icons/regular/book-heart.svg rename to apps/client/src/static/icons/regular/book-heart.svg diff --git a/src/static/icons/regular/book-medical.svg b/apps/client/src/static/icons/regular/book-medical.svg similarity index 100% rename from src/static/icons/regular/book-medical.svg rename to apps/client/src/static/icons/regular/book-medical.svg diff --git a/src/static/icons/regular/book-open.svg b/apps/client/src/static/icons/regular/book-open.svg similarity index 100% rename from src/static/icons/regular/book-open.svg rename to apps/client/src/static/icons/regular/book-open.svg diff --git a/src/static/icons/regular/book-reader.svg b/apps/client/src/static/icons/regular/book-reader.svg similarity index 100% rename from src/static/icons/regular/book-reader.svg rename to apps/client/src/static/icons/regular/book-reader.svg diff --git a/src/static/icons/regular/book-spells.svg b/apps/client/src/static/icons/regular/book-spells.svg similarity index 100% rename from src/static/icons/regular/book-spells.svg rename to apps/client/src/static/icons/regular/book-spells.svg diff --git a/src/static/icons/regular/book-user.svg b/apps/client/src/static/icons/regular/book-user.svg similarity index 100% rename from src/static/icons/regular/book-user.svg rename to apps/client/src/static/icons/regular/book-user.svg diff --git a/src/static/icons/regular/book.svg b/apps/client/src/static/icons/regular/book.svg similarity index 100% rename from src/static/icons/regular/book.svg rename to apps/client/src/static/icons/regular/book.svg diff --git a/src/static/icons/regular/bookmark.svg b/apps/client/src/static/icons/regular/bookmark.svg similarity index 100% rename from src/static/icons/regular/bookmark.svg rename to apps/client/src/static/icons/regular/bookmark.svg diff --git a/src/static/icons/regular/books-medical.svg b/apps/client/src/static/icons/regular/books-medical.svg similarity index 100% rename from src/static/icons/regular/books-medical.svg rename to apps/client/src/static/icons/regular/books-medical.svg diff --git a/src/static/icons/regular/books.svg b/apps/client/src/static/icons/regular/books.svg similarity index 100% rename from src/static/icons/regular/books.svg rename to apps/client/src/static/icons/regular/books.svg diff --git a/src/static/icons/regular/boombox.svg b/apps/client/src/static/icons/regular/boombox.svg similarity index 100% rename from src/static/icons/regular/boombox.svg rename to apps/client/src/static/icons/regular/boombox.svg diff --git a/src/static/icons/regular/boot.svg b/apps/client/src/static/icons/regular/boot.svg similarity index 100% rename from src/static/icons/regular/boot.svg rename to apps/client/src/static/icons/regular/boot.svg diff --git a/src/static/icons/regular/booth-curtain.svg b/apps/client/src/static/icons/regular/booth-curtain.svg similarity index 100% rename from src/static/icons/regular/booth-curtain.svg rename to apps/client/src/static/icons/regular/booth-curtain.svg diff --git a/src/static/icons/regular/border-all.svg b/apps/client/src/static/icons/regular/border-all.svg similarity index 100% rename from src/static/icons/regular/border-all.svg rename to apps/client/src/static/icons/regular/border-all.svg diff --git a/src/static/icons/regular/border-bottom.svg b/apps/client/src/static/icons/regular/border-bottom.svg similarity index 100% rename from src/static/icons/regular/border-bottom.svg rename to apps/client/src/static/icons/regular/border-bottom.svg diff --git a/src/static/icons/regular/border-center-h.svg b/apps/client/src/static/icons/regular/border-center-h.svg similarity index 100% rename from src/static/icons/regular/border-center-h.svg rename to apps/client/src/static/icons/regular/border-center-h.svg diff --git a/src/static/icons/regular/border-center-v.svg b/apps/client/src/static/icons/regular/border-center-v.svg similarity index 100% rename from src/static/icons/regular/border-center-v.svg rename to apps/client/src/static/icons/regular/border-center-v.svg diff --git a/src/static/icons/regular/border-inner.svg b/apps/client/src/static/icons/regular/border-inner.svg similarity index 100% rename from src/static/icons/regular/border-inner.svg rename to apps/client/src/static/icons/regular/border-inner.svg diff --git a/src/static/icons/regular/border-left.svg b/apps/client/src/static/icons/regular/border-left.svg similarity index 100% rename from src/static/icons/regular/border-left.svg rename to apps/client/src/static/icons/regular/border-left.svg diff --git a/src/static/icons/regular/border-none.svg b/apps/client/src/static/icons/regular/border-none.svg similarity index 100% rename from src/static/icons/regular/border-none.svg rename to apps/client/src/static/icons/regular/border-none.svg diff --git a/src/static/icons/regular/border-outer.svg b/apps/client/src/static/icons/regular/border-outer.svg similarity index 100% rename from src/static/icons/regular/border-outer.svg rename to apps/client/src/static/icons/regular/border-outer.svg diff --git a/src/static/icons/regular/border-right.svg b/apps/client/src/static/icons/regular/border-right.svg similarity index 100% rename from src/static/icons/regular/border-right.svg rename to apps/client/src/static/icons/regular/border-right.svg diff --git a/src/static/icons/regular/border-style-alt.svg b/apps/client/src/static/icons/regular/border-style-alt.svg similarity index 100% rename from src/static/icons/regular/border-style-alt.svg rename to apps/client/src/static/icons/regular/border-style-alt.svg diff --git a/src/static/icons/regular/border-style.svg b/apps/client/src/static/icons/regular/border-style.svg similarity index 100% rename from src/static/icons/regular/border-style.svg rename to apps/client/src/static/icons/regular/border-style.svg diff --git a/src/static/icons/regular/border-top.svg b/apps/client/src/static/icons/regular/border-top.svg similarity index 100% rename from src/static/icons/regular/border-top.svg rename to apps/client/src/static/icons/regular/border-top.svg diff --git a/src/static/icons/regular/bow-arrow.svg b/apps/client/src/static/icons/regular/bow-arrow.svg similarity index 100% rename from src/static/icons/regular/bow-arrow.svg rename to apps/client/src/static/icons/regular/bow-arrow.svg diff --git a/src/static/icons/regular/bowling-ball.svg b/apps/client/src/static/icons/regular/bowling-ball.svg similarity index 100% rename from src/static/icons/regular/bowling-ball.svg rename to apps/client/src/static/icons/regular/bowling-ball.svg diff --git a/src/static/icons/regular/bowling-pins.svg b/apps/client/src/static/icons/regular/bowling-pins.svg similarity index 100% rename from src/static/icons/regular/bowling-pins.svg rename to apps/client/src/static/icons/regular/bowling-pins.svg diff --git a/src/static/icons/regular/box-alt.svg b/apps/client/src/static/icons/regular/box-alt.svg similarity index 100% rename from src/static/icons/regular/box-alt.svg rename to apps/client/src/static/icons/regular/box-alt.svg diff --git a/src/static/icons/regular/box-ballot.svg b/apps/client/src/static/icons/regular/box-ballot.svg similarity index 100% rename from src/static/icons/regular/box-ballot.svg rename to apps/client/src/static/icons/regular/box-ballot.svg diff --git a/src/static/icons/regular/box-check.svg b/apps/client/src/static/icons/regular/box-check.svg similarity index 100% rename from src/static/icons/regular/box-check.svg rename to apps/client/src/static/icons/regular/box-check.svg diff --git a/src/static/icons/regular/box-fragile.svg b/apps/client/src/static/icons/regular/box-fragile.svg similarity index 100% rename from src/static/icons/regular/box-fragile.svg rename to apps/client/src/static/icons/regular/box-fragile.svg diff --git a/src/static/icons/regular/box-full.svg b/apps/client/src/static/icons/regular/box-full.svg similarity index 100% rename from src/static/icons/regular/box-full.svg rename to apps/client/src/static/icons/regular/box-full.svg diff --git a/src/static/icons/regular/box-heart.svg b/apps/client/src/static/icons/regular/box-heart.svg similarity index 100% rename from src/static/icons/regular/box-heart.svg rename to apps/client/src/static/icons/regular/box-heart.svg diff --git a/src/static/icons/regular/box-open.svg b/apps/client/src/static/icons/regular/box-open.svg similarity index 100% rename from src/static/icons/regular/box-open.svg rename to apps/client/src/static/icons/regular/box-open.svg diff --git a/src/static/icons/regular/box-up.svg b/apps/client/src/static/icons/regular/box-up.svg similarity index 100% rename from src/static/icons/regular/box-up.svg rename to apps/client/src/static/icons/regular/box-up.svg diff --git a/src/static/icons/regular/box-usd.svg b/apps/client/src/static/icons/regular/box-usd.svg similarity index 100% rename from src/static/icons/regular/box-usd.svg rename to apps/client/src/static/icons/regular/box-usd.svg diff --git a/src/static/icons/regular/box.svg b/apps/client/src/static/icons/regular/box.svg similarity index 100% rename from src/static/icons/regular/box.svg rename to apps/client/src/static/icons/regular/box.svg diff --git a/src/static/icons/regular/boxes-alt.svg b/apps/client/src/static/icons/regular/boxes-alt.svg similarity index 100% rename from src/static/icons/regular/boxes-alt.svg rename to apps/client/src/static/icons/regular/boxes-alt.svg diff --git a/src/static/icons/regular/boxes.svg b/apps/client/src/static/icons/regular/boxes.svg similarity index 100% rename from src/static/icons/regular/boxes.svg rename to apps/client/src/static/icons/regular/boxes.svg diff --git a/src/static/icons/regular/boxing-glove.svg b/apps/client/src/static/icons/regular/boxing-glove.svg similarity index 100% rename from src/static/icons/regular/boxing-glove.svg rename to apps/client/src/static/icons/regular/boxing-glove.svg diff --git a/src/static/icons/regular/brackets-curly.svg b/apps/client/src/static/icons/regular/brackets-curly.svg similarity index 100% rename from src/static/icons/regular/brackets-curly.svg rename to apps/client/src/static/icons/regular/brackets-curly.svg diff --git a/src/static/icons/regular/brackets.svg b/apps/client/src/static/icons/regular/brackets.svg similarity index 100% rename from src/static/icons/regular/brackets.svg rename to apps/client/src/static/icons/regular/brackets.svg diff --git a/src/static/icons/regular/braille.svg b/apps/client/src/static/icons/regular/braille.svg similarity index 100% rename from src/static/icons/regular/braille.svg rename to apps/client/src/static/icons/regular/braille.svg diff --git a/src/static/icons/regular/brain.svg b/apps/client/src/static/icons/regular/brain.svg similarity index 100% rename from src/static/icons/regular/brain.svg rename to apps/client/src/static/icons/regular/brain.svg diff --git a/src/static/icons/regular/bread-loaf.svg b/apps/client/src/static/icons/regular/bread-loaf.svg similarity index 100% rename from src/static/icons/regular/bread-loaf.svg rename to apps/client/src/static/icons/regular/bread-loaf.svg diff --git a/src/static/icons/regular/bread-slice.svg b/apps/client/src/static/icons/regular/bread-slice.svg similarity index 100% rename from src/static/icons/regular/bread-slice.svg rename to apps/client/src/static/icons/regular/bread-slice.svg diff --git a/src/static/icons/regular/briefcase-medical.svg b/apps/client/src/static/icons/regular/briefcase-medical.svg similarity index 100% rename from src/static/icons/regular/briefcase-medical.svg rename to apps/client/src/static/icons/regular/briefcase-medical.svg diff --git a/src/static/icons/regular/briefcase.svg b/apps/client/src/static/icons/regular/briefcase.svg similarity index 100% rename from src/static/icons/regular/briefcase.svg rename to apps/client/src/static/icons/regular/briefcase.svg diff --git a/src/static/icons/regular/bring-forward.svg b/apps/client/src/static/icons/regular/bring-forward.svg similarity index 100% rename from src/static/icons/regular/bring-forward.svg rename to apps/client/src/static/icons/regular/bring-forward.svg diff --git a/src/static/icons/regular/bring-front.svg b/apps/client/src/static/icons/regular/bring-front.svg similarity index 100% rename from src/static/icons/regular/bring-front.svg rename to apps/client/src/static/icons/regular/bring-front.svg diff --git a/src/static/icons/regular/broadcast-tower.svg b/apps/client/src/static/icons/regular/broadcast-tower.svg similarity index 100% rename from src/static/icons/regular/broadcast-tower.svg rename to apps/client/src/static/icons/regular/broadcast-tower.svg diff --git a/src/static/icons/regular/broom.svg b/apps/client/src/static/icons/regular/broom.svg similarity index 100% rename from src/static/icons/regular/broom.svg rename to apps/client/src/static/icons/regular/broom.svg diff --git a/src/static/icons/regular/browser.svg b/apps/client/src/static/icons/regular/browser.svg similarity index 100% rename from src/static/icons/regular/browser.svg rename to apps/client/src/static/icons/regular/browser.svg diff --git a/src/static/icons/regular/brush.svg b/apps/client/src/static/icons/regular/brush.svg similarity index 100% rename from src/static/icons/regular/brush.svg rename to apps/client/src/static/icons/regular/brush.svg diff --git a/src/static/icons/regular/bug.svg b/apps/client/src/static/icons/regular/bug.svg similarity index 100% rename from src/static/icons/regular/bug.svg rename to apps/client/src/static/icons/regular/bug.svg diff --git a/src/static/icons/regular/building.svg b/apps/client/src/static/icons/regular/building.svg similarity index 100% rename from src/static/icons/regular/building.svg rename to apps/client/src/static/icons/regular/building.svg diff --git a/src/static/icons/regular/bullhorn.svg b/apps/client/src/static/icons/regular/bullhorn.svg similarity index 100% rename from src/static/icons/regular/bullhorn.svg rename to apps/client/src/static/icons/regular/bullhorn.svg diff --git a/src/static/icons/regular/bullseye-arrow.svg b/apps/client/src/static/icons/regular/bullseye-arrow.svg similarity index 100% rename from src/static/icons/regular/bullseye-arrow.svg rename to apps/client/src/static/icons/regular/bullseye-arrow.svg diff --git a/src/static/icons/regular/bullseye-pointer.svg b/apps/client/src/static/icons/regular/bullseye-pointer.svg similarity index 100% rename from src/static/icons/regular/bullseye-pointer.svg rename to apps/client/src/static/icons/regular/bullseye-pointer.svg diff --git a/src/static/icons/regular/bullseye.svg b/apps/client/src/static/icons/regular/bullseye.svg similarity index 100% rename from src/static/icons/regular/bullseye.svg rename to apps/client/src/static/icons/regular/bullseye.svg diff --git a/src/static/icons/regular/burger-soda.svg b/apps/client/src/static/icons/regular/burger-soda.svg similarity index 100% rename from src/static/icons/regular/burger-soda.svg rename to apps/client/src/static/icons/regular/burger-soda.svg diff --git a/src/static/icons/regular/burn.svg b/apps/client/src/static/icons/regular/burn.svg similarity index 100% rename from src/static/icons/regular/burn.svg rename to apps/client/src/static/icons/regular/burn.svg diff --git a/src/static/icons/regular/burrito.svg b/apps/client/src/static/icons/regular/burrito.svg similarity index 100% rename from src/static/icons/regular/burrito.svg rename to apps/client/src/static/icons/regular/burrito.svg diff --git a/src/static/icons/regular/bus-alt.svg b/apps/client/src/static/icons/regular/bus-alt.svg similarity index 100% rename from src/static/icons/regular/bus-alt.svg rename to apps/client/src/static/icons/regular/bus-alt.svg diff --git a/src/static/icons/regular/bus-school.svg b/apps/client/src/static/icons/regular/bus-school.svg similarity index 100% rename from src/static/icons/regular/bus-school.svg rename to apps/client/src/static/icons/regular/bus-school.svg diff --git a/src/static/icons/regular/bus.svg b/apps/client/src/static/icons/regular/bus.svg similarity index 100% rename from src/static/icons/regular/bus.svg rename to apps/client/src/static/icons/regular/bus.svg diff --git a/src/static/icons/regular/business-time.svg b/apps/client/src/static/icons/regular/business-time.svg similarity index 100% rename from src/static/icons/regular/business-time.svg rename to apps/client/src/static/icons/regular/business-time.svg diff --git a/src/static/icons/regular/cabinet-filing.svg b/apps/client/src/static/icons/regular/cabinet-filing.svg similarity index 100% rename from src/static/icons/regular/cabinet-filing.svg rename to apps/client/src/static/icons/regular/cabinet-filing.svg diff --git a/src/static/icons/regular/cactus.svg b/apps/client/src/static/icons/regular/cactus.svg similarity index 100% rename from src/static/icons/regular/cactus.svg rename to apps/client/src/static/icons/regular/cactus.svg diff --git a/src/static/icons/regular/calculator-alt.svg b/apps/client/src/static/icons/regular/calculator-alt.svg similarity index 100% rename from src/static/icons/regular/calculator-alt.svg rename to apps/client/src/static/icons/regular/calculator-alt.svg diff --git a/src/static/icons/regular/calculator.svg b/apps/client/src/static/icons/regular/calculator.svg similarity index 100% rename from src/static/icons/regular/calculator.svg rename to apps/client/src/static/icons/regular/calculator.svg diff --git a/src/static/icons/regular/calendar-alt.svg b/apps/client/src/static/icons/regular/calendar-alt.svg similarity index 100% rename from src/static/icons/regular/calendar-alt.svg rename to apps/client/src/static/icons/regular/calendar-alt.svg diff --git a/src/static/icons/regular/calendar-check.svg b/apps/client/src/static/icons/regular/calendar-check.svg similarity index 100% rename from src/static/icons/regular/calendar-check.svg rename to apps/client/src/static/icons/regular/calendar-check.svg diff --git a/src/static/icons/regular/calendar-day.svg b/apps/client/src/static/icons/regular/calendar-day.svg similarity index 100% rename from src/static/icons/regular/calendar-day.svg rename to apps/client/src/static/icons/regular/calendar-day.svg diff --git a/src/static/icons/regular/calendar-edit.svg b/apps/client/src/static/icons/regular/calendar-edit.svg similarity index 100% rename from src/static/icons/regular/calendar-edit.svg rename to apps/client/src/static/icons/regular/calendar-edit.svg diff --git a/src/static/icons/regular/calendar-exclamation.svg b/apps/client/src/static/icons/regular/calendar-exclamation.svg similarity index 100% rename from src/static/icons/regular/calendar-exclamation.svg rename to apps/client/src/static/icons/regular/calendar-exclamation.svg diff --git a/src/static/icons/regular/calendar-minus.svg b/apps/client/src/static/icons/regular/calendar-minus.svg similarity index 100% rename from src/static/icons/regular/calendar-minus.svg rename to apps/client/src/static/icons/regular/calendar-minus.svg diff --git a/src/static/icons/regular/calendar-plus.svg b/apps/client/src/static/icons/regular/calendar-plus.svg similarity index 100% rename from src/static/icons/regular/calendar-plus.svg rename to apps/client/src/static/icons/regular/calendar-plus.svg diff --git a/src/static/icons/regular/calendar-star.svg b/apps/client/src/static/icons/regular/calendar-star.svg similarity index 100% rename from src/static/icons/regular/calendar-star.svg rename to apps/client/src/static/icons/regular/calendar-star.svg diff --git a/src/static/icons/regular/calendar-times.svg b/apps/client/src/static/icons/regular/calendar-times.svg similarity index 100% rename from src/static/icons/regular/calendar-times.svg rename to apps/client/src/static/icons/regular/calendar-times.svg diff --git a/src/static/icons/regular/calendar-week.svg b/apps/client/src/static/icons/regular/calendar-week.svg similarity index 100% rename from src/static/icons/regular/calendar-week.svg rename to apps/client/src/static/icons/regular/calendar-week.svg diff --git a/src/static/icons/regular/calendar.svg b/apps/client/src/static/icons/regular/calendar.svg similarity index 100% rename from src/static/icons/regular/calendar.svg rename to apps/client/src/static/icons/regular/calendar.svg diff --git a/src/static/icons/regular/camcorder.svg b/apps/client/src/static/icons/regular/camcorder.svg similarity index 100% rename from src/static/icons/regular/camcorder.svg rename to apps/client/src/static/icons/regular/camcorder.svg diff --git a/src/static/icons/regular/camera-alt.svg b/apps/client/src/static/icons/regular/camera-alt.svg similarity index 100% rename from src/static/icons/regular/camera-alt.svg rename to apps/client/src/static/icons/regular/camera-alt.svg diff --git a/src/static/icons/regular/camera-home.svg b/apps/client/src/static/icons/regular/camera-home.svg similarity index 100% rename from src/static/icons/regular/camera-home.svg rename to apps/client/src/static/icons/regular/camera-home.svg diff --git a/src/static/icons/regular/camera-movie.svg b/apps/client/src/static/icons/regular/camera-movie.svg similarity index 100% rename from src/static/icons/regular/camera-movie.svg rename to apps/client/src/static/icons/regular/camera-movie.svg diff --git a/src/static/icons/regular/camera-polaroid.svg b/apps/client/src/static/icons/regular/camera-polaroid.svg similarity index 100% rename from src/static/icons/regular/camera-polaroid.svg rename to apps/client/src/static/icons/regular/camera-polaroid.svg diff --git a/src/static/icons/regular/camera-retro.svg b/apps/client/src/static/icons/regular/camera-retro.svg similarity index 100% rename from src/static/icons/regular/camera-retro.svg rename to apps/client/src/static/icons/regular/camera-retro.svg diff --git a/src/static/icons/regular/camera.svg b/apps/client/src/static/icons/regular/camera.svg similarity index 100% rename from src/static/icons/regular/camera.svg rename to apps/client/src/static/icons/regular/camera.svg diff --git a/src/static/icons/regular/campfire.svg b/apps/client/src/static/icons/regular/campfire.svg similarity index 100% rename from src/static/icons/regular/campfire.svg rename to apps/client/src/static/icons/regular/campfire.svg diff --git a/src/static/icons/regular/campground.svg b/apps/client/src/static/icons/regular/campground.svg similarity index 100% rename from src/static/icons/regular/campground.svg rename to apps/client/src/static/icons/regular/campground.svg diff --git a/src/static/icons/regular/candle-holder.svg b/apps/client/src/static/icons/regular/candle-holder.svg similarity index 100% rename from src/static/icons/regular/candle-holder.svg rename to apps/client/src/static/icons/regular/candle-holder.svg diff --git a/src/static/icons/regular/candy-cane.svg b/apps/client/src/static/icons/regular/candy-cane.svg similarity index 100% rename from src/static/icons/regular/candy-cane.svg rename to apps/client/src/static/icons/regular/candy-cane.svg diff --git a/src/static/icons/regular/candy-corn.svg b/apps/client/src/static/icons/regular/candy-corn.svg similarity index 100% rename from src/static/icons/regular/candy-corn.svg rename to apps/client/src/static/icons/regular/candy-corn.svg diff --git a/src/static/icons/regular/cannabis.svg b/apps/client/src/static/icons/regular/cannabis.svg similarity index 100% rename from src/static/icons/regular/cannabis.svg rename to apps/client/src/static/icons/regular/cannabis.svg diff --git a/src/static/icons/regular/capsules.svg b/apps/client/src/static/icons/regular/capsules.svg similarity index 100% rename from src/static/icons/regular/capsules.svg rename to apps/client/src/static/icons/regular/capsules.svg diff --git a/src/static/icons/regular/car-alt.svg b/apps/client/src/static/icons/regular/car-alt.svg similarity index 100% rename from src/static/icons/regular/car-alt.svg rename to apps/client/src/static/icons/regular/car-alt.svg diff --git a/src/static/icons/regular/car-battery.svg b/apps/client/src/static/icons/regular/car-battery.svg similarity index 100% rename from src/static/icons/regular/car-battery.svg rename to apps/client/src/static/icons/regular/car-battery.svg diff --git a/src/static/icons/regular/car-building.svg b/apps/client/src/static/icons/regular/car-building.svg similarity index 100% rename from src/static/icons/regular/car-building.svg rename to apps/client/src/static/icons/regular/car-building.svg diff --git a/src/static/icons/regular/car-bump.svg b/apps/client/src/static/icons/regular/car-bump.svg similarity index 100% rename from src/static/icons/regular/car-bump.svg rename to apps/client/src/static/icons/regular/car-bump.svg diff --git a/src/static/icons/regular/car-bus.svg b/apps/client/src/static/icons/regular/car-bus.svg similarity index 100% rename from src/static/icons/regular/car-bus.svg rename to apps/client/src/static/icons/regular/car-bus.svg diff --git a/src/static/icons/regular/car-crash.svg b/apps/client/src/static/icons/regular/car-crash.svg similarity index 100% rename from src/static/icons/regular/car-crash.svg rename to apps/client/src/static/icons/regular/car-crash.svg diff --git a/src/static/icons/regular/car-garage.svg b/apps/client/src/static/icons/regular/car-garage.svg similarity index 100% rename from src/static/icons/regular/car-garage.svg rename to apps/client/src/static/icons/regular/car-garage.svg diff --git a/src/static/icons/regular/car-mechanic.svg b/apps/client/src/static/icons/regular/car-mechanic.svg similarity index 100% rename from src/static/icons/regular/car-mechanic.svg rename to apps/client/src/static/icons/regular/car-mechanic.svg diff --git a/src/static/icons/regular/car-side.svg b/apps/client/src/static/icons/regular/car-side.svg similarity index 100% rename from src/static/icons/regular/car-side.svg rename to apps/client/src/static/icons/regular/car-side.svg diff --git a/src/static/icons/regular/car-tilt.svg b/apps/client/src/static/icons/regular/car-tilt.svg similarity index 100% rename from src/static/icons/regular/car-tilt.svg rename to apps/client/src/static/icons/regular/car-tilt.svg diff --git a/src/static/icons/regular/car-wash.svg b/apps/client/src/static/icons/regular/car-wash.svg similarity index 100% rename from src/static/icons/regular/car-wash.svg rename to apps/client/src/static/icons/regular/car-wash.svg diff --git a/src/static/icons/regular/car.svg b/apps/client/src/static/icons/regular/car.svg similarity index 100% rename from src/static/icons/regular/car.svg rename to apps/client/src/static/icons/regular/car.svg diff --git a/src/static/icons/regular/caravan-alt.svg b/apps/client/src/static/icons/regular/caravan-alt.svg similarity index 100% rename from src/static/icons/regular/caravan-alt.svg rename to apps/client/src/static/icons/regular/caravan-alt.svg diff --git a/src/static/icons/regular/caravan.svg b/apps/client/src/static/icons/regular/caravan.svg similarity index 100% rename from src/static/icons/regular/caravan.svg rename to apps/client/src/static/icons/regular/caravan.svg diff --git a/src/static/icons/regular/caret-circle-down.svg b/apps/client/src/static/icons/regular/caret-circle-down.svg similarity index 100% rename from src/static/icons/regular/caret-circle-down.svg rename to apps/client/src/static/icons/regular/caret-circle-down.svg diff --git a/src/static/icons/regular/caret-circle-left.svg b/apps/client/src/static/icons/regular/caret-circle-left.svg similarity index 100% rename from src/static/icons/regular/caret-circle-left.svg rename to apps/client/src/static/icons/regular/caret-circle-left.svg diff --git a/src/static/icons/regular/caret-circle-right.svg b/apps/client/src/static/icons/regular/caret-circle-right.svg similarity index 100% rename from src/static/icons/regular/caret-circle-right.svg rename to apps/client/src/static/icons/regular/caret-circle-right.svg diff --git a/src/static/icons/regular/caret-circle-up.svg b/apps/client/src/static/icons/regular/caret-circle-up.svg similarity index 100% rename from src/static/icons/regular/caret-circle-up.svg rename to apps/client/src/static/icons/regular/caret-circle-up.svg diff --git a/src/static/icons/regular/caret-down.svg b/apps/client/src/static/icons/regular/caret-down.svg similarity index 100% rename from src/static/icons/regular/caret-down.svg rename to apps/client/src/static/icons/regular/caret-down.svg diff --git a/src/static/icons/regular/caret-left.svg b/apps/client/src/static/icons/regular/caret-left.svg similarity index 100% rename from src/static/icons/regular/caret-left.svg rename to apps/client/src/static/icons/regular/caret-left.svg diff --git a/src/static/icons/regular/caret-right.svg b/apps/client/src/static/icons/regular/caret-right.svg similarity index 100% rename from src/static/icons/regular/caret-right.svg rename to apps/client/src/static/icons/regular/caret-right.svg diff --git a/src/static/icons/regular/caret-square-down.svg b/apps/client/src/static/icons/regular/caret-square-down.svg similarity index 100% rename from src/static/icons/regular/caret-square-down.svg rename to apps/client/src/static/icons/regular/caret-square-down.svg diff --git a/src/static/icons/regular/caret-square-left.svg b/apps/client/src/static/icons/regular/caret-square-left.svg similarity index 100% rename from src/static/icons/regular/caret-square-left.svg rename to apps/client/src/static/icons/regular/caret-square-left.svg diff --git a/src/static/icons/regular/caret-square-right.svg b/apps/client/src/static/icons/regular/caret-square-right.svg similarity index 100% rename from src/static/icons/regular/caret-square-right.svg rename to apps/client/src/static/icons/regular/caret-square-right.svg diff --git a/src/static/icons/regular/caret-square-up.svg b/apps/client/src/static/icons/regular/caret-square-up.svg similarity index 100% rename from src/static/icons/regular/caret-square-up.svg rename to apps/client/src/static/icons/regular/caret-square-up.svg diff --git a/src/static/icons/regular/caret-up.svg b/apps/client/src/static/icons/regular/caret-up.svg similarity index 100% rename from src/static/icons/regular/caret-up.svg rename to apps/client/src/static/icons/regular/caret-up.svg diff --git a/src/static/icons/regular/carrot.svg b/apps/client/src/static/icons/regular/carrot.svg similarity index 100% rename from src/static/icons/regular/carrot.svg rename to apps/client/src/static/icons/regular/carrot.svg diff --git a/src/static/icons/regular/cars.svg b/apps/client/src/static/icons/regular/cars.svg similarity index 100% rename from src/static/icons/regular/cars.svg rename to apps/client/src/static/icons/regular/cars.svg diff --git a/src/static/icons/regular/cart-arrow-down.svg b/apps/client/src/static/icons/regular/cart-arrow-down.svg similarity index 100% rename from src/static/icons/regular/cart-arrow-down.svg rename to apps/client/src/static/icons/regular/cart-arrow-down.svg diff --git a/src/static/icons/regular/cart-plus.svg b/apps/client/src/static/icons/regular/cart-plus.svg similarity index 100% rename from src/static/icons/regular/cart-plus.svg rename to apps/client/src/static/icons/regular/cart-plus.svg diff --git a/src/static/icons/regular/cash-register.svg b/apps/client/src/static/icons/regular/cash-register.svg similarity index 100% rename from src/static/icons/regular/cash-register.svg rename to apps/client/src/static/icons/regular/cash-register.svg diff --git a/src/static/icons/regular/cassette-tape.svg b/apps/client/src/static/icons/regular/cassette-tape.svg similarity index 100% rename from src/static/icons/regular/cassette-tape.svg rename to apps/client/src/static/icons/regular/cassette-tape.svg diff --git a/src/static/icons/regular/cat-space.svg b/apps/client/src/static/icons/regular/cat-space.svg similarity index 100% rename from src/static/icons/regular/cat-space.svg rename to apps/client/src/static/icons/regular/cat-space.svg diff --git a/src/static/icons/regular/cat.svg b/apps/client/src/static/icons/regular/cat.svg similarity index 100% rename from src/static/icons/regular/cat.svg rename to apps/client/src/static/icons/regular/cat.svg diff --git a/src/static/icons/regular/cauldron.svg b/apps/client/src/static/icons/regular/cauldron.svg similarity index 100% rename from src/static/icons/regular/cauldron.svg rename to apps/client/src/static/icons/regular/cauldron.svg diff --git a/src/static/icons/regular/cctv.svg b/apps/client/src/static/icons/regular/cctv.svg similarity index 100% rename from src/static/icons/regular/cctv.svg rename to apps/client/src/static/icons/regular/cctv.svg diff --git a/src/static/icons/regular/certificate.svg b/apps/client/src/static/icons/regular/certificate.svg similarity index 100% rename from src/static/icons/regular/certificate.svg rename to apps/client/src/static/icons/regular/certificate.svg diff --git a/src/static/icons/regular/chair-office.svg b/apps/client/src/static/icons/regular/chair-office.svg similarity index 100% rename from src/static/icons/regular/chair-office.svg rename to apps/client/src/static/icons/regular/chair-office.svg diff --git a/src/static/icons/regular/chair.svg b/apps/client/src/static/icons/regular/chair.svg similarity index 100% rename from src/static/icons/regular/chair.svg rename to apps/client/src/static/icons/regular/chair.svg diff --git a/src/static/icons/regular/chalkboard-teacher.svg b/apps/client/src/static/icons/regular/chalkboard-teacher.svg similarity index 100% rename from src/static/icons/regular/chalkboard-teacher.svg rename to apps/client/src/static/icons/regular/chalkboard-teacher.svg diff --git a/src/static/icons/regular/chalkboard.svg b/apps/client/src/static/icons/regular/chalkboard.svg similarity index 100% rename from src/static/icons/regular/chalkboard.svg rename to apps/client/src/static/icons/regular/chalkboard.svg diff --git a/src/static/icons/regular/charging-station.svg b/apps/client/src/static/icons/regular/charging-station.svg similarity index 100% rename from src/static/icons/regular/charging-station.svg rename to apps/client/src/static/icons/regular/charging-station.svg diff --git a/src/static/icons/regular/chart-area.svg b/apps/client/src/static/icons/regular/chart-area.svg similarity index 100% rename from src/static/icons/regular/chart-area.svg rename to apps/client/src/static/icons/regular/chart-area.svg diff --git a/src/static/icons/regular/chart-bar.svg b/apps/client/src/static/icons/regular/chart-bar.svg similarity index 100% rename from src/static/icons/regular/chart-bar.svg rename to apps/client/src/static/icons/regular/chart-bar.svg diff --git a/src/static/icons/regular/chart-line-down.svg b/apps/client/src/static/icons/regular/chart-line-down.svg similarity index 100% rename from src/static/icons/regular/chart-line-down.svg rename to apps/client/src/static/icons/regular/chart-line-down.svg diff --git a/src/static/icons/regular/chart-line.svg b/apps/client/src/static/icons/regular/chart-line.svg similarity index 100% rename from src/static/icons/regular/chart-line.svg rename to apps/client/src/static/icons/regular/chart-line.svg diff --git a/src/static/icons/regular/chart-network.svg b/apps/client/src/static/icons/regular/chart-network.svg similarity index 100% rename from src/static/icons/regular/chart-network.svg rename to apps/client/src/static/icons/regular/chart-network.svg diff --git a/src/static/icons/regular/chart-pie-alt.svg b/apps/client/src/static/icons/regular/chart-pie-alt.svg similarity index 100% rename from src/static/icons/regular/chart-pie-alt.svg rename to apps/client/src/static/icons/regular/chart-pie-alt.svg diff --git a/src/static/icons/regular/chart-pie.svg b/apps/client/src/static/icons/regular/chart-pie.svg similarity index 100% rename from src/static/icons/regular/chart-pie.svg rename to apps/client/src/static/icons/regular/chart-pie.svg diff --git a/src/static/icons/regular/chart-scatter.svg b/apps/client/src/static/icons/regular/chart-scatter.svg similarity index 100% rename from src/static/icons/regular/chart-scatter.svg rename to apps/client/src/static/icons/regular/chart-scatter.svg diff --git a/src/static/icons/regular/check-circle.svg b/apps/client/src/static/icons/regular/check-circle.svg similarity index 100% rename from src/static/icons/regular/check-circle.svg rename to apps/client/src/static/icons/regular/check-circle.svg diff --git a/src/static/icons/regular/check-double.svg b/apps/client/src/static/icons/regular/check-double.svg similarity index 100% rename from src/static/icons/regular/check-double.svg rename to apps/client/src/static/icons/regular/check-double.svg diff --git a/src/static/icons/regular/check-square.svg b/apps/client/src/static/icons/regular/check-square.svg similarity index 100% rename from src/static/icons/regular/check-square.svg rename to apps/client/src/static/icons/regular/check-square.svg diff --git a/src/static/icons/regular/check.svg b/apps/client/src/static/icons/regular/check.svg similarity index 100% rename from src/static/icons/regular/check.svg rename to apps/client/src/static/icons/regular/check.svg diff --git a/src/static/icons/regular/cheese-swiss.svg b/apps/client/src/static/icons/regular/cheese-swiss.svg similarity index 100% rename from src/static/icons/regular/cheese-swiss.svg rename to apps/client/src/static/icons/regular/cheese-swiss.svg diff --git a/src/static/icons/regular/cheese.svg b/apps/client/src/static/icons/regular/cheese.svg similarity index 100% rename from src/static/icons/regular/cheese.svg rename to apps/client/src/static/icons/regular/cheese.svg diff --git a/src/static/icons/regular/cheeseburger.svg b/apps/client/src/static/icons/regular/cheeseburger.svg similarity index 100% rename from src/static/icons/regular/cheeseburger.svg rename to apps/client/src/static/icons/regular/cheeseburger.svg diff --git a/src/static/icons/regular/chess-bishop-alt.svg b/apps/client/src/static/icons/regular/chess-bishop-alt.svg similarity index 100% rename from src/static/icons/regular/chess-bishop-alt.svg rename to apps/client/src/static/icons/regular/chess-bishop-alt.svg diff --git a/src/static/icons/regular/chess-bishop.svg b/apps/client/src/static/icons/regular/chess-bishop.svg similarity index 100% rename from src/static/icons/regular/chess-bishop.svg rename to apps/client/src/static/icons/regular/chess-bishop.svg diff --git a/src/static/icons/regular/chess-board.svg b/apps/client/src/static/icons/regular/chess-board.svg similarity index 100% rename from src/static/icons/regular/chess-board.svg rename to apps/client/src/static/icons/regular/chess-board.svg diff --git a/src/static/icons/regular/chess-clock-alt.svg b/apps/client/src/static/icons/regular/chess-clock-alt.svg similarity index 100% rename from src/static/icons/regular/chess-clock-alt.svg rename to apps/client/src/static/icons/regular/chess-clock-alt.svg diff --git a/src/static/icons/regular/chess-clock.svg b/apps/client/src/static/icons/regular/chess-clock.svg similarity index 100% rename from src/static/icons/regular/chess-clock.svg rename to apps/client/src/static/icons/regular/chess-clock.svg diff --git a/src/static/icons/regular/chess-king-alt.svg b/apps/client/src/static/icons/regular/chess-king-alt.svg similarity index 100% rename from src/static/icons/regular/chess-king-alt.svg rename to apps/client/src/static/icons/regular/chess-king-alt.svg diff --git a/src/static/icons/regular/chess-king.svg b/apps/client/src/static/icons/regular/chess-king.svg similarity index 100% rename from src/static/icons/regular/chess-king.svg rename to apps/client/src/static/icons/regular/chess-king.svg diff --git a/src/static/icons/regular/chess-knight-alt.svg b/apps/client/src/static/icons/regular/chess-knight-alt.svg similarity index 100% rename from src/static/icons/regular/chess-knight-alt.svg rename to apps/client/src/static/icons/regular/chess-knight-alt.svg diff --git a/src/static/icons/regular/chess-knight.svg b/apps/client/src/static/icons/regular/chess-knight.svg similarity index 100% rename from src/static/icons/regular/chess-knight.svg rename to apps/client/src/static/icons/regular/chess-knight.svg diff --git a/src/static/icons/regular/chess-pawn-alt.svg b/apps/client/src/static/icons/regular/chess-pawn-alt.svg similarity index 100% rename from src/static/icons/regular/chess-pawn-alt.svg rename to apps/client/src/static/icons/regular/chess-pawn-alt.svg diff --git a/src/static/icons/regular/chess-pawn.svg b/apps/client/src/static/icons/regular/chess-pawn.svg similarity index 100% rename from src/static/icons/regular/chess-pawn.svg rename to apps/client/src/static/icons/regular/chess-pawn.svg diff --git a/src/static/icons/regular/chess-queen-alt.svg b/apps/client/src/static/icons/regular/chess-queen-alt.svg similarity index 100% rename from src/static/icons/regular/chess-queen-alt.svg rename to apps/client/src/static/icons/regular/chess-queen-alt.svg diff --git a/src/static/icons/regular/chess-queen.svg b/apps/client/src/static/icons/regular/chess-queen.svg similarity index 100% rename from src/static/icons/regular/chess-queen.svg rename to apps/client/src/static/icons/regular/chess-queen.svg diff --git a/src/static/icons/regular/chess-rook-alt.svg b/apps/client/src/static/icons/regular/chess-rook-alt.svg similarity index 100% rename from src/static/icons/regular/chess-rook-alt.svg rename to apps/client/src/static/icons/regular/chess-rook-alt.svg diff --git a/src/static/icons/regular/chess-rook.svg b/apps/client/src/static/icons/regular/chess-rook.svg similarity index 100% rename from src/static/icons/regular/chess-rook.svg rename to apps/client/src/static/icons/regular/chess-rook.svg diff --git a/src/static/icons/regular/chess.svg b/apps/client/src/static/icons/regular/chess.svg similarity index 100% rename from src/static/icons/regular/chess.svg rename to apps/client/src/static/icons/regular/chess.svg diff --git a/src/static/icons/regular/chevron-circle-down.svg b/apps/client/src/static/icons/regular/chevron-circle-down.svg similarity index 100% rename from src/static/icons/regular/chevron-circle-down.svg rename to apps/client/src/static/icons/regular/chevron-circle-down.svg diff --git a/src/static/icons/regular/chevron-circle-left.svg b/apps/client/src/static/icons/regular/chevron-circle-left.svg similarity index 100% rename from src/static/icons/regular/chevron-circle-left.svg rename to apps/client/src/static/icons/regular/chevron-circle-left.svg diff --git a/src/static/icons/regular/chevron-circle-right.svg b/apps/client/src/static/icons/regular/chevron-circle-right.svg similarity index 100% rename from src/static/icons/regular/chevron-circle-right.svg rename to apps/client/src/static/icons/regular/chevron-circle-right.svg diff --git a/src/static/icons/regular/chevron-circle-up.svg b/apps/client/src/static/icons/regular/chevron-circle-up.svg similarity index 100% rename from src/static/icons/regular/chevron-circle-up.svg rename to apps/client/src/static/icons/regular/chevron-circle-up.svg diff --git a/src/static/icons/regular/chevron-double-down.svg b/apps/client/src/static/icons/regular/chevron-double-down.svg similarity index 100% rename from src/static/icons/regular/chevron-double-down.svg rename to apps/client/src/static/icons/regular/chevron-double-down.svg diff --git a/src/static/icons/regular/chevron-double-left.svg b/apps/client/src/static/icons/regular/chevron-double-left.svg similarity index 100% rename from src/static/icons/regular/chevron-double-left.svg rename to apps/client/src/static/icons/regular/chevron-double-left.svg diff --git a/src/static/icons/regular/chevron-double-right.svg b/apps/client/src/static/icons/regular/chevron-double-right.svg similarity index 100% rename from src/static/icons/regular/chevron-double-right.svg rename to apps/client/src/static/icons/regular/chevron-double-right.svg diff --git a/src/static/icons/regular/chevron-double-up.svg b/apps/client/src/static/icons/regular/chevron-double-up.svg similarity index 100% rename from src/static/icons/regular/chevron-double-up.svg rename to apps/client/src/static/icons/regular/chevron-double-up.svg diff --git a/src/static/icons/regular/chevron-down.svg b/apps/client/src/static/icons/regular/chevron-down.svg similarity index 100% rename from src/static/icons/regular/chevron-down.svg rename to apps/client/src/static/icons/regular/chevron-down.svg diff --git a/src/static/icons/regular/chevron-left.svg b/apps/client/src/static/icons/regular/chevron-left.svg similarity index 100% rename from src/static/icons/regular/chevron-left.svg rename to apps/client/src/static/icons/regular/chevron-left.svg diff --git a/src/static/icons/regular/chevron-right.svg b/apps/client/src/static/icons/regular/chevron-right.svg similarity index 100% rename from src/static/icons/regular/chevron-right.svg rename to apps/client/src/static/icons/regular/chevron-right.svg diff --git a/src/static/icons/regular/chevron-square-down.svg b/apps/client/src/static/icons/regular/chevron-square-down.svg similarity index 100% rename from src/static/icons/regular/chevron-square-down.svg rename to apps/client/src/static/icons/regular/chevron-square-down.svg diff --git a/src/static/icons/regular/chevron-square-left.svg b/apps/client/src/static/icons/regular/chevron-square-left.svg similarity index 100% rename from src/static/icons/regular/chevron-square-left.svg rename to apps/client/src/static/icons/regular/chevron-square-left.svg diff --git a/src/static/icons/regular/chevron-square-right.svg b/apps/client/src/static/icons/regular/chevron-square-right.svg similarity index 100% rename from src/static/icons/regular/chevron-square-right.svg rename to apps/client/src/static/icons/regular/chevron-square-right.svg diff --git a/src/static/icons/regular/chevron-square-up.svg b/apps/client/src/static/icons/regular/chevron-square-up.svg similarity index 100% rename from src/static/icons/regular/chevron-square-up.svg rename to apps/client/src/static/icons/regular/chevron-square-up.svg diff --git a/src/static/icons/regular/chevron-up.svg b/apps/client/src/static/icons/regular/chevron-up.svg similarity index 100% rename from src/static/icons/regular/chevron-up.svg rename to apps/client/src/static/icons/regular/chevron-up.svg diff --git a/src/static/icons/regular/child.svg b/apps/client/src/static/icons/regular/child.svg similarity index 100% rename from src/static/icons/regular/child.svg rename to apps/client/src/static/icons/regular/child.svg diff --git a/src/static/icons/regular/chimney.svg b/apps/client/src/static/icons/regular/chimney.svg similarity index 100% rename from src/static/icons/regular/chimney.svg rename to apps/client/src/static/icons/regular/chimney.svg diff --git a/src/static/icons/regular/church.svg b/apps/client/src/static/icons/regular/church.svg similarity index 100% rename from src/static/icons/regular/church.svg rename to apps/client/src/static/icons/regular/church.svg diff --git a/src/static/icons/regular/circle-notch.svg b/apps/client/src/static/icons/regular/circle-notch.svg similarity index 100% rename from src/static/icons/regular/circle-notch.svg rename to apps/client/src/static/icons/regular/circle-notch.svg diff --git a/src/static/icons/regular/circle.svg b/apps/client/src/static/icons/regular/circle.svg similarity index 100% rename from src/static/icons/regular/circle.svg rename to apps/client/src/static/icons/regular/circle.svg diff --git a/src/static/icons/regular/city.svg b/apps/client/src/static/icons/regular/city.svg similarity index 100% rename from src/static/icons/regular/city.svg rename to apps/client/src/static/icons/regular/city.svg diff --git a/src/static/icons/regular/clarinet.svg b/apps/client/src/static/icons/regular/clarinet.svg similarity index 100% rename from src/static/icons/regular/clarinet.svg rename to apps/client/src/static/icons/regular/clarinet.svg diff --git a/src/static/icons/regular/claw-marks.svg b/apps/client/src/static/icons/regular/claw-marks.svg similarity index 100% rename from src/static/icons/regular/claw-marks.svg rename to apps/client/src/static/icons/regular/claw-marks.svg diff --git a/src/static/icons/regular/clinic-medical.svg b/apps/client/src/static/icons/regular/clinic-medical.svg similarity index 100% rename from src/static/icons/regular/clinic-medical.svg rename to apps/client/src/static/icons/regular/clinic-medical.svg diff --git a/src/static/icons/regular/clipboard-check.svg b/apps/client/src/static/icons/regular/clipboard-check.svg similarity index 100% rename from src/static/icons/regular/clipboard-check.svg rename to apps/client/src/static/icons/regular/clipboard-check.svg diff --git a/src/static/icons/regular/clipboard-list-check.svg b/apps/client/src/static/icons/regular/clipboard-list-check.svg similarity index 100% rename from src/static/icons/regular/clipboard-list-check.svg rename to apps/client/src/static/icons/regular/clipboard-list-check.svg diff --git a/src/static/icons/regular/clipboard-list.svg b/apps/client/src/static/icons/regular/clipboard-list.svg similarity index 100% rename from src/static/icons/regular/clipboard-list.svg rename to apps/client/src/static/icons/regular/clipboard-list.svg diff --git a/src/static/icons/regular/clipboard-prescription.svg b/apps/client/src/static/icons/regular/clipboard-prescription.svg similarity index 100% rename from src/static/icons/regular/clipboard-prescription.svg rename to apps/client/src/static/icons/regular/clipboard-prescription.svg diff --git a/src/static/icons/regular/clipboard-user.svg b/apps/client/src/static/icons/regular/clipboard-user.svg similarity index 100% rename from src/static/icons/regular/clipboard-user.svg rename to apps/client/src/static/icons/regular/clipboard-user.svg diff --git a/src/static/icons/regular/clipboard.svg b/apps/client/src/static/icons/regular/clipboard.svg similarity index 100% rename from src/static/icons/regular/clipboard.svg rename to apps/client/src/static/icons/regular/clipboard.svg diff --git a/src/static/icons/regular/clock.svg b/apps/client/src/static/icons/regular/clock.svg similarity index 100% rename from src/static/icons/regular/clock.svg rename to apps/client/src/static/icons/regular/clock.svg diff --git a/src/static/icons/regular/clone.svg b/apps/client/src/static/icons/regular/clone.svg similarity index 100% rename from src/static/icons/regular/clone.svg rename to apps/client/src/static/icons/regular/clone.svg diff --git a/src/static/icons/regular/closed-captioning.svg b/apps/client/src/static/icons/regular/closed-captioning.svg similarity index 100% rename from src/static/icons/regular/closed-captioning.svg rename to apps/client/src/static/icons/regular/closed-captioning.svg diff --git a/src/static/icons/regular/cloud-download-alt.svg b/apps/client/src/static/icons/regular/cloud-download-alt.svg similarity index 100% rename from src/static/icons/regular/cloud-download-alt.svg rename to apps/client/src/static/icons/regular/cloud-download-alt.svg diff --git a/src/static/icons/regular/cloud-download.svg b/apps/client/src/static/icons/regular/cloud-download.svg similarity index 100% rename from src/static/icons/regular/cloud-download.svg rename to apps/client/src/static/icons/regular/cloud-download.svg diff --git a/src/static/icons/regular/cloud-drizzle.svg b/apps/client/src/static/icons/regular/cloud-drizzle.svg similarity index 100% rename from src/static/icons/regular/cloud-drizzle.svg rename to apps/client/src/static/icons/regular/cloud-drizzle.svg diff --git a/src/static/icons/regular/cloud-hail-mixed.svg b/apps/client/src/static/icons/regular/cloud-hail-mixed.svg similarity index 100% rename from src/static/icons/regular/cloud-hail-mixed.svg rename to apps/client/src/static/icons/regular/cloud-hail-mixed.svg diff --git a/src/static/icons/regular/cloud-hail.svg b/apps/client/src/static/icons/regular/cloud-hail.svg similarity index 100% rename from src/static/icons/regular/cloud-hail.svg rename to apps/client/src/static/icons/regular/cloud-hail.svg diff --git a/src/static/icons/regular/cloud-meatball.svg b/apps/client/src/static/icons/regular/cloud-meatball.svg similarity index 100% rename from src/static/icons/regular/cloud-meatball.svg rename to apps/client/src/static/icons/regular/cloud-meatball.svg diff --git a/src/static/icons/regular/cloud-moon-rain.svg b/apps/client/src/static/icons/regular/cloud-moon-rain.svg similarity index 100% rename from src/static/icons/regular/cloud-moon-rain.svg rename to apps/client/src/static/icons/regular/cloud-moon-rain.svg diff --git a/src/static/icons/regular/cloud-moon.svg b/apps/client/src/static/icons/regular/cloud-moon.svg similarity index 100% rename from src/static/icons/regular/cloud-moon.svg rename to apps/client/src/static/icons/regular/cloud-moon.svg diff --git a/src/static/icons/regular/cloud-music.svg b/apps/client/src/static/icons/regular/cloud-music.svg similarity index 100% rename from src/static/icons/regular/cloud-music.svg rename to apps/client/src/static/icons/regular/cloud-music.svg diff --git a/src/static/icons/regular/cloud-rain.svg b/apps/client/src/static/icons/regular/cloud-rain.svg similarity index 100% rename from src/static/icons/regular/cloud-rain.svg rename to apps/client/src/static/icons/regular/cloud-rain.svg diff --git a/src/static/icons/regular/cloud-rainbow.svg b/apps/client/src/static/icons/regular/cloud-rainbow.svg similarity index 100% rename from src/static/icons/regular/cloud-rainbow.svg rename to apps/client/src/static/icons/regular/cloud-rainbow.svg diff --git a/src/static/icons/regular/cloud-showers-heavy.svg b/apps/client/src/static/icons/regular/cloud-showers-heavy.svg similarity index 100% rename from src/static/icons/regular/cloud-showers-heavy.svg rename to apps/client/src/static/icons/regular/cloud-showers-heavy.svg diff --git a/src/static/icons/regular/cloud-showers.svg b/apps/client/src/static/icons/regular/cloud-showers.svg similarity index 100% rename from src/static/icons/regular/cloud-showers.svg rename to apps/client/src/static/icons/regular/cloud-showers.svg diff --git a/src/static/icons/regular/cloud-sleet.svg b/apps/client/src/static/icons/regular/cloud-sleet.svg similarity index 100% rename from src/static/icons/regular/cloud-sleet.svg rename to apps/client/src/static/icons/regular/cloud-sleet.svg diff --git a/src/static/icons/regular/cloud-snow.svg b/apps/client/src/static/icons/regular/cloud-snow.svg similarity index 100% rename from src/static/icons/regular/cloud-snow.svg rename to apps/client/src/static/icons/regular/cloud-snow.svg diff --git a/src/static/icons/regular/cloud-sun-rain.svg b/apps/client/src/static/icons/regular/cloud-sun-rain.svg similarity index 100% rename from src/static/icons/regular/cloud-sun-rain.svg rename to apps/client/src/static/icons/regular/cloud-sun-rain.svg diff --git a/src/static/icons/regular/cloud-sun.svg b/apps/client/src/static/icons/regular/cloud-sun.svg similarity index 100% rename from src/static/icons/regular/cloud-sun.svg rename to apps/client/src/static/icons/regular/cloud-sun.svg diff --git a/src/static/icons/regular/cloud-upload-alt.svg b/apps/client/src/static/icons/regular/cloud-upload-alt.svg similarity index 100% rename from src/static/icons/regular/cloud-upload-alt.svg rename to apps/client/src/static/icons/regular/cloud-upload-alt.svg diff --git a/src/static/icons/regular/cloud-upload.svg b/apps/client/src/static/icons/regular/cloud-upload.svg similarity index 100% rename from src/static/icons/regular/cloud-upload.svg rename to apps/client/src/static/icons/regular/cloud-upload.svg diff --git a/src/static/icons/regular/cloud.svg b/apps/client/src/static/icons/regular/cloud.svg similarity index 100% rename from src/static/icons/regular/cloud.svg rename to apps/client/src/static/icons/regular/cloud.svg diff --git a/src/static/icons/regular/clouds-moon.svg b/apps/client/src/static/icons/regular/clouds-moon.svg similarity index 100% rename from src/static/icons/regular/clouds-moon.svg rename to apps/client/src/static/icons/regular/clouds-moon.svg diff --git a/src/static/icons/regular/clouds-sun.svg b/apps/client/src/static/icons/regular/clouds-sun.svg similarity index 100% rename from src/static/icons/regular/clouds-sun.svg rename to apps/client/src/static/icons/regular/clouds-sun.svg diff --git a/src/static/icons/regular/clouds.svg b/apps/client/src/static/icons/regular/clouds.svg similarity index 100% rename from src/static/icons/regular/clouds.svg rename to apps/client/src/static/icons/regular/clouds.svg diff --git a/src/static/icons/regular/club.svg b/apps/client/src/static/icons/regular/club.svg similarity index 100% rename from src/static/icons/regular/club.svg rename to apps/client/src/static/icons/regular/club.svg diff --git a/src/static/icons/regular/cocktail.svg b/apps/client/src/static/icons/regular/cocktail.svg similarity index 100% rename from src/static/icons/regular/cocktail.svg rename to apps/client/src/static/icons/regular/cocktail.svg diff --git a/src/static/icons/regular/code-branch.svg b/apps/client/src/static/icons/regular/code-branch.svg similarity index 100% rename from src/static/icons/regular/code-branch.svg rename to apps/client/src/static/icons/regular/code-branch.svg diff --git a/src/static/icons/regular/code-commit.svg b/apps/client/src/static/icons/regular/code-commit.svg similarity index 100% rename from src/static/icons/regular/code-commit.svg rename to apps/client/src/static/icons/regular/code-commit.svg diff --git a/src/static/icons/regular/code-merge.svg b/apps/client/src/static/icons/regular/code-merge.svg similarity index 100% rename from src/static/icons/regular/code-merge.svg rename to apps/client/src/static/icons/regular/code-merge.svg diff --git a/src/static/icons/regular/code.svg b/apps/client/src/static/icons/regular/code.svg similarity index 100% rename from src/static/icons/regular/code.svg rename to apps/client/src/static/icons/regular/code.svg diff --git a/src/static/icons/regular/coffee-pot.svg b/apps/client/src/static/icons/regular/coffee-pot.svg similarity index 100% rename from src/static/icons/regular/coffee-pot.svg rename to apps/client/src/static/icons/regular/coffee-pot.svg diff --git a/src/static/icons/regular/coffee-togo.svg b/apps/client/src/static/icons/regular/coffee-togo.svg similarity index 100% rename from src/static/icons/regular/coffee-togo.svg rename to apps/client/src/static/icons/regular/coffee-togo.svg diff --git a/src/static/icons/regular/coffee.svg b/apps/client/src/static/icons/regular/coffee.svg similarity index 100% rename from src/static/icons/regular/coffee.svg rename to apps/client/src/static/icons/regular/coffee.svg diff --git a/src/static/icons/regular/coffin.svg b/apps/client/src/static/icons/regular/coffin.svg similarity index 100% rename from src/static/icons/regular/coffin.svg rename to apps/client/src/static/icons/regular/coffin.svg diff --git a/src/static/icons/regular/cog.svg b/apps/client/src/static/icons/regular/cog.svg similarity index 100% rename from src/static/icons/regular/cog.svg rename to apps/client/src/static/icons/regular/cog.svg diff --git a/src/static/icons/regular/cogs.svg b/apps/client/src/static/icons/regular/cogs.svg similarity index 100% rename from src/static/icons/regular/cogs.svg rename to apps/client/src/static/icons/regular/cogs.svg diff --git a/src/static/icons/regular/coin.svg b/apps/client/src/static/icons/regular/coin.svg similarity index 100% rename from src/static/icons/regular/coin.svg rename to apps/client/src/static/icons/regular/coin.svg diff --git a/src/static/icons/regular/coins.svg b/apps/client/src/static/icons/regular/coins.svg similarity index 100% rename from src/static/icons/regular/coins.svg rename to apps/client/src/static/icons/regular/coins.svg diff --git a/src/static/icons/regular/columns.svg b/apps/client/src/static/icons/regular/columns.svg similarity index 100% rename from src/static/icons/regular/columns.svg rename to apps/client/src/static/icons/regular/columns.svg diff --git a/src/static/icons/regular/comet.svg b/apps/client/src/static/icons/regular/comet.svg similarity index 100% rename from src/static/icons/regular/comet.svg rename to apps/client/src/static/icons/regular/comet.svg diff --git a/src/static/icons/regular/comment-alt-check.svg b/apps/client/src/static/icons/regular/comment-alt-check.svg similarity index 100% rename from src/static/icons/regular/comment-alt-check.svg rename to apps/client/src/static/icons/regular/comment-alt-check.svg diff --git a/src/static/icons/regular/comment-alt-dollar.svg b/apps/client/src/static/icons/regular/comment-alt-dollar.svg similarity index 100% rename from src/static/icons/regular/comment-alt-dollar.svg rename to apps/client/src/static/icons/regular/comment-alt-dollar.svg diff --git a/src/static/icons/regular/comment-alt-dots.svg b/apps/client/src/static/icons/regular/comment-alt-dots.svg similarity index 100% rename from src/static/icons/regular/comment-alt-dots.svg rename to apps/client/src/static/icons/regular/comment-alt-dots.svg diff --git a/src/static/icons/regular/comment-alt-edit.svg b/apps/client/src/static/icons/regular/comment-alt-edit.svg similarity index 100% rename from src/static/icons/regular/comment-alt-edit.svg rename to apps/client/src/static/icons/regular/comment-alt-edit.svg diff --git a/src/static/icons/regular/comment-alt-exclamation.svg b/apps/client/src/static/icons/regular/comment-alt-exclamation.svg similarity index 100% rename from src/static/icons/regular/comment-alt-exclamation.svg rename to apps/client/src/static/icons/regular/comment-alt-exclamation.svg diff --git a/src/static/icons/regular/comment-alt-lines.svg b/apps/client/src/static/icons/regular/comment-alt-lines.svg similarity index 100% rename from src/static/icons/regular/comment-alt-lines.svg rename to apps/client/src/static/icons/regular/comment-alt-lines.svg diff --git a/src/static/icons/regular/comment-alt-medical.svg b/apps/client/src/static/icons/regular/comment-alt-medical.svg similarity index 100% rename from src/static/icons/regular/comment-alt-medical.svg rename to apps/client/src/static/icons/regular/comment-alt-medical.svg diff --git a/src/static/icons/regular/comment-alt-minus.svg b/apps/client/src/static/icons/regular/comment-alt-minus.svg similarity index 100% rename from src/static/icons/regular/comment-alt-minus.svg rename to apps/client/src/static/icons/regular/comment-alt-minus.svg diff --git a/src/static/icons/regular/comment-alt-music.svg b/apps/client/src/static/icons/regular/comment-alt-music.svg similarity index 100% rename from src/static/icons/regular/comment-alt-music.svg rename to apps/client/src/static/icons/regular/comment-alt-music.svg diff --git a/src/static/icons/regular/comment-alt-plus.svg b/apps/client/src/static/icons/regular/comment-alt-plus.svg similarity index 100% rename from src/static/icons/regular/comment-alt-plus.svg rename to apps/client/src/static/icons/regular/comment-alt-plus.svg diff --git a/src/static/icons/regular/comment-alt-slash.svg b/apps/client/src/static/icons/regular/comment-alt-slash.svg similarity index 100% rename from src/static/icons/regular/comment-alt-slash.svg rename to apps/client/src/static/icons/regular/comment-alt-slash.svg diff --git a/src/static/icons/regular/comment-alt-smile.svg b/apps/client/src/static/icons/regular/comment-alt-smile.svg similarity index 100% rename from src/static/icons/regular/comment-alt-smile.svg rename to apps/client/src/static/icons/regular/comment-alt-smile.svg diff --git a/src/static/icons/regular/comment-alt-times.svg b/apps/client/src/static/icons/regular/comment-alt-times.svg similarity index 100% rename from src/static/icons/regular/comment-alt-times.svg rename to apps/client/src/static/icons/regular/comment-alt-times.svg diff --git a/src/static/icons/regular/comment-alt.svg b/apps/client/src/static/icons/regular/comment-alt.svg similarity index 100% rename from src/static/icons/regular/comment-alt.svg rename to apps/client/src/static/icons/regular/comment-alt.svg diff --git a/src/static/icons/regular/comment-check.svg b/apps/client/src/static/icons/regular/comment-check.svg similarity index 100% rename from src/static/icons/regular/comment-check.svg rename to apps/client/src/static/icons/regular/comment-check.svg diff --git a/src/static/icons/regular/comment-dollar.svg b/apps/client/src/static/icons/regular/comment-dollar.svg similarity index 100% rename from src/static/icons/regular/comment-dollar.svg rename to apps/client/src/static/icons/regular/comment-dollar.svg diff --git a/src/static/icons/regular/comment-dots.svg b/apps/client/src/static/icons/regular/comment-dots.svg similarity index 100% rename from src/static/icons/regular/comment-dots.svg rename to apps/client/src/static/icons/regular/comment-dots.svg diff --git a/src/static/icons/regular/comment-edit.svg b/apps/client/src/static/icons/regular/comment-edit.svg similarity index 100% rename from src/static/icons/regular/comment-edit.svg rename to apps/client/src/static/icons/regular/comment-edit.svg diff --git a/src/static/icons/regular/comment-exclamation.svg b/apps/client/src/static/icons/regular/comment-exclamation.svg similarity index 100% rename from src/static/icons/regular/comment-exclamation.svg rename to apps/client/src/static/icons/regular/comment-exclamation.svg diff --git a/src/static/icons/regular/comment-lines.svg b/apps/client/src/static/icons/regular/comment-lines.svg similarity index 100% rename from src/static/icons/regular/comment-lines.svg rename to apps/client/src/static/icons/regular/comment-lines.svg diff --git a/src/static/icons/regular/comment-medical.svg b/apps/client/src/static/icons/regular/comment-medical.svg similarity index 100% rename from src/static/icons/regular/comment-medical.svg rename to apps/client/src/static/icons/regular/comment-medical.svg diff --git a/src/static/icons/regular/comment-minus.svg b/apps/client/src/static/icons/regular/comment-minus.svg similarity index 100% rename from src/static/icons/regular/comment-minus.svg rename to apps/client/src/static/icons/regular/comment-minus.svg diff --git a/src/static/icons/regular/comment-music.svg b/apps/client/src/static/icons/regular/comment-music.svg similarity index 100% rename from src/static/icons/regular/comment-music.svg rename to apps/client/src/static/icons/regular/comment-music.svg diff --git a/src/static/icons/regular/comment-plus.svg b/apps/client/src/static/icons/regular/comment-plus.svg similarity index 100% rename from src/static/icons/regular/comment-plus.svg rename to apps/client/src/static/icons/regular/comment-plus.svg diff --git a/src/static/icons/regular/comment-slash.svg b/apps/client/src/static/icons/regular/comment-slash.svg similarity index 100% rename from src/static/icons/regular/comment-slash.svg rename to apps/client/src/static/icons/regular/comment-slash.svg diff --git a/src/static/icons/regular/comment-smile.svg b/apps/client/src/static/icons/regular/comment-smile.svg similarity index 100% rename from src/static/icons/regular/comment-smile.svg rename to apps/client/src/static/icons/regular/comment-smile.svg diff --git a/src/static/icons/regular/comment-times.svg b/apps/client/src/static/icons/regular/comment-times.svg similarity index 100% rename from src/static/icons/regular/comment-times.svg rename to apps/client/src/static/icons/regular/comment-times.svg diff --git a/src/static/icons/regular/comment.svg b/apps/client/src/static/icons/regular/comment.svg similarity index 100% rename from src/static/icons/regular/comment.svg rename to apps/client/src/static/icons/regular/comment.svg diff --git a/src/static/icons/regular/comments-alt-dollar.svg b/apps/client/src/static/icons/regular/comments-alt-dollar.svg similarity index 100% rename from src/static/icons/regular/comments-alt-dollar.svg rename to apps/client/src/static/icons/regular/comments-alt-dollar.svg diff --git a/src/static/icons/regular/comments-alt.svg b/apps/client/src/static/icons/regular/comments-alt.svg similarity index 100% rename from src/static/icons/regular/comments-alt.svg rename to apps/client/src/static/icons/regular/comments-alt.svg diff --git a/src/static/icons/regular/comments-dollar.svg b/apps/client/src/static/icons/regular/comments-dollar.svg similarity index 100% rename from src/static/icons/regular/comments-dollar.svg rename to apps/client/src/static/icons/regular/comments-dollar.svg diff --git a/src/static/icons/regular/comments.svg b/apps/client/src/static/icons/regular/comments.svg similarity index 100% rename from src/static/icons/regular/comments.svg rename to apps/client/src/static/icons/regular/comments.svg diff --git a/src/static/icons/regular/compact-disc.svg b/apps/client/src/static/icons/regular/compact-disc.svg similarity index 100% rename from src/static/icons/regular/compact-disc.svg rename to apps/client/src/static/icons/regular/compact-disc.svg diff --git a/src/static/icons/regular/compass-slash.svg b/apps/client/src/static/icons/regular/compass-slash.svg similarity index 100% rename from src/static/icons/regular/compass-slash.svg rename to apps/client/src/static/icons/regular/compass-slash.svg diff --git a/src/static/icons/regular/compass.svg b/apps/client/src/static/icons/regular/compass.svg similarity index 100% rename from src/static/icons/regular/compass.svg rename to apps/client/src/static/icons/regular/compass.svg diff --git a/src/static/icons/regular/compress-alt.svg b/apps/client/src/static/icons/regular/compress-alt.svg similarity index 100% rename from src/static/icons/regular/compress-alt.svg rename to apps/client/src/static/icons/regular/compress-alt.svg diff --git a/src/static/icons/regular/compress-arrows-alt.svg b/apps/client/src/static/icons/regular/compress-arrows-alt.svg similarity index 100% rename from src/static/icons/regular/compress-arrows-alt.svg rename to apps/client/src/static/icons/regular/compress-arrows-alt.svg diff --git a/src/static/icons/regular/compress-wide.svg b/apps/client/src/static/icons/regular/compress-wide.svg similarity index 100% rename from src/static/icons/regular/compress-wide.svg rename to apps/client/src/static/icons/regular/compress-wide.svg diff --git a/src/static/icons/regular/compress.svg b/apps/client/src/static/icons/regular/compress.svg similarity index 100% rename from src/static/icons/regular/compress.svg rename to apps/client/src/static/icons/regular/compress.svg diff --git a/src/static/icons/regular/computer-classic.svg b/apps/client/src/static/icons/regular/computer-classic.svg similarity index 100% rename from src/static/icons/regular/computer-classic.svg rename to apps/client/src/static/icons/regular/computer-classic.svg diff --git a/src/static/icons/regular/computer-speaker.svg b/apps/client/src/static/icons/regular/computer-speaker.svg similarity index 100% rename from src/static/icons/regular/computer-speaker.svg rename to apps/client/src/static/icons/regular/computer-speaker.svg diff --git a/src/static/icons/regular/concierge-bell.svg b/apps/client/src/static/icons/regular/concierge-bell.svg similarity index 100% rename from src/static/icons/regular/concierge-bell.svg rename to apps/client/src/static/icons/regular/concierge-bell.svg diff --git a/src/static/icons/regular/construction.svg b/apps/client/src/static/icons/regular/construction.svg similarity index 100% rename from src/static/icons/regular/construction.svg rename to apps/client/src/static/icons/regular/construction.svg diff --git a/src/static/icons/regular/container-storage.svg b/apps/client/src/static/icons/regular/container-storage.svg similarity index 100% rename from src/static/icons/regular/container-storage.svg rename to apps/client/src/static/icons/regular/container-storage.svg diff --git a/src/static/icons/regular/conveyor-belt-alt.svg b/apps/client/src/static/icons/regular/conveyor-belt-alt.svg similarity index 100% rename from src/static/icons/regular/conveyor-belt-alt.svg rename to apps/client/src/static/icons/regular/conveyor-belt-alt.svg diff --git a/src/static/icons/regular/conveyor-belt.svg b/apps/client/src/static/icons/regular/conveyor-belt.svg similarity index 100% rename from src/static/icons/regular/conveyor-belt.svg rename to apps/client/src/static/icons/regular/conveyor-belt.svg diff --git a/src/static/icons/regular/cookie-bite.svg b/apps/client/src/static/icons/regular/cookie-bite.svg similarity index 100% rename from src/static/icons/regular/cookie-bite.svg rename to apps/client/src/static/icons/regular/cookie-bite.svg diff --git a/src/static/icons/regular/cookie.svg b/apps/client/src/static/icons/regular/cookie.svg similarity index 100% rename from src/static/icons/regular/cookie.svg rename to apps/client/src/static/icons/regular/cookie.svg diff --git a/src/static/icons/regular/copy.svg b/apps/client/src/static/icons/regular/copy.svg similarity index 100% rename from src/static/icons/regular/copy.svg rename to apps/client/src/static/icons/regular/copy.svg diff --git a/src/static/icons/regular/copyright.svg b/apps/client/src/static/icons/regular/copyright.svg similarity index 100% rename from src/static/icons/regular/copyright.svg rename to apps/client/src/static/icons/regular/copyright.svg diff --git a/src/static/icons/regular/corn.svg b/apps/client/src/static/icons/regular/corn.svg similarity index 100% rename from src/static/icons/regular/corn.svg rename to apps/client/src/static/icons/regular/corn.svg diff --git a/src/static/icons/regular/couch.svg b/apps/client/src/static/icons/regular/couch.svg similarity index 100% rename from src/static/icons/regular/couch.svg rename to apps/client/src/static/icons/regular/couch.svg diff --git a/src/static/icons/regular/cow.svg b/apps/client/src/static/icons/regular/cow.svg similarity index 100% rename from src/static/icons/regular/cow.svg rename to apps/client/src/static/icons/regular/cow.svg diff --git a/src/static/icons/regular/cowbell-more.svg b/apps/client/src/static/icons/regular/cowbell-more.svg similarity index 100% rename from src/static/icons/regular/cowbell-more.svg rename to apps/client/src/static/icons/regular/cowbell-more.svg diff --git a/src/static/icons/regular/cowbell.svg b/apps/client/src/static/icons/regular/cowbell.svg similarity index 100% rename from src/static/icons/regular/cowbell.svg rename to apps/client/src/static/icons/regular/cowbell.svg diff --git a/src/static/icons/regular/credit-card-blank.svg b/apps/client/src/static/icons/regular/credit-card-blank.svg similarity index 100% rename from src/static/icons/regular/credit-card-blank.svg rename to apps/client/src/static/icons/regular/credit-card-blank.svg diff --git a/src/static/icons/regular/credit-card-front.svg b/apps/client/src/static/icons/regular/credit-card-front.svg similarity index 100% rename from src/static/icons/regular/credit-card-front.svg rename to apps/client/src/static/icons/regular/credit-card-front.svg diff --git a/src/static/icons/regular/credit-card.svg b/apps/client/src/static/icons/regular/credit-card.svg similarity index 100% rename from src/static/icons/regular/credit-card.svg rename to apps/client/src/static/icons/regular/credit-card.svg diff --git a/src/static/icons/regular/cricket.svg b/apps/client/src/static/icons/regular/cricket.svg similarity index 100% rename from src/static/icons/regular/cricket.svg rename to apps/client/src/static/icons/regular/cricket.svg diff --git a/src/static/icons/regular/croissant.svg b/apps/client/src/static/icons/regular/croissant.svg similarity index 100% rename from src/static/icons/regular/croissant.svg rename to apps/client/src/static/icons/regular/croissant.svg diff --git a/src/static/icons/regular/crop-alt.svg b/apps/client/src/static/icons/regular/crop-alt.svg similarity index 100% rename from src/static/icons/regular/crop-alt.svg rename to apps/client/src/static/icons/regular/crop-alt.svg diff --git a/src/static/icons/regular/crop.svg b/apps/client/src/static/icons/regular/crop.svg similarity index 100% rename from src/static/icons/regular/crop.svg rename to apps/client/src/static/icons/regular/crop.svg diff --git a/src/static/icons/regular/cross.svg b/apps/client/src/static/icons/regular/cross.svg similarity index 100% rename from src/static/icons/regular/cross.svg rename to apps/client/src/static/icons/regular/cross.svg diff --git a/src/static/icons/regular/crosshairs.svg b/apps/client/src/static/icons/regular/crosshairs.svg similarity index 100% rename from src/static/icons/regular/crosshairs.svg rename to apps/client/src/static/icons/regular/crosshairs.svg diff --git a/src/static/icons/regular/crow.svg b/apps/client/src/static/icons/regular/crow.svg similarity index 100% rename from src/static/icons/regular/crow.svg rename to apps/client/src/static/icons/regular/crow.svg diff --git a/src/static/icons/regular/crown.svg b/apps/client/src/static/icons/regular/crown.svg similarity index 100% rename from src/static/icons/regular/crown.svg rename to apps/client/src/static/icons/regular/crown.svg diff --git a/src/static/icons/regular/crutch.svg b/apps/client/src/static/icons/regular/crutch.svg similarity index 100% rename from src/static/icons/regular/crutch.svg rename to apps/client/src/static/icons/regular/crutch.svg diff --git a/src/static/icons/regular/crutches.svg b/apps/client/src/static/icons/regular/crutches.svg similarity index 100% rename from src/static/icons/regular/crutches.svg rename to apps/client/src/static/icons/regular/crutches.svg diff --git a/src/static/icons/regular/cube.svg b/apps/client/src/static/icons/regular/cube.svg similarity index 100% rename from src/static/icons/regular/cube.svg rename to apps/client/src/static/icons/regular/cube.svg diff --git a/src/static/icons/regular/cubes.svg b/apps/client/src/static/icons/regular/cubes.svg similarity index 100% rename from src/static/icons/regular/cubes.svg rename to apps/client/src/static/icons/regular/cubes.svg diff --git a/src/static/icons/regular/curling.svg b/apps/client/src/static/icons/regular/curling.svg similarity index 100% rename from src/static/icons/regular/curling.svg rename to apps/client/src/static/icons/regular/curling.svg diff --git a/src/static/icons/regular/cut.svg b/apps/client/src/static/icons/regular/cut.svg similarity index 100% rename from src/static/icons/regular/cut.svg rename to apps/client/src/static/icons/regular/cut.svg diff --git a/src/static/icons/regular/dagger.svg b/apps/client/src/static/icons/regular/dagger.svg similarity index 100% rename from src/static/icons/regular/dagger.svg rename to apps/client/src/static/icons/regular/dagger.svg diff --git a/src/static/icons/regular/database.svg b/apps/client/src/static/icons/regular/database.svg similarity index 100% rename from src/static/icons/regular/database.svg rename to apps/client/src/static/icons/regular/database.svg diff --git a/src/static/icons/regular/deaf.svg b/apps/client/src/static/icons/regular/deaf.svg similarity index 100% rename from src/static/icons/regular/deaf.svg rename to apps/client/src/static/icons/regular/deaf.svg diff --git a/src/static/icons/regular/debug.svg b/apps/client/src/static/icons/regular/debug.svg similarity index 100% rename from src/static/icons/regular/debug.svg rename to apps/client/src/static/icons/regular/debug.svg diff --git a/src/static/icons/regular/deer-rudolph.svg b/apps/client/src/static/icons/regular/deer-rudolph.svg similarity index 100% rename from src/static/icons/regular/deer-rudolph.svg rename to apps/client/src/static/icons/regular/deer-rudolph.svg diff --git a/src/static/icons/regular/deer.svg b/apps/client/src/static/icons/regular/deer.svg similarity index 100% rename from src/static/icons/regular/deer.svg rename to apps/client/src/static/icons/regular/deer.svg diff --git a/src/static/icons/regular/democrat.svg b/apps/client/src/static/icons/regular/democrat.svg similarity index 100% rename from src/static/icons/regular/democrat.svg rename to apps/client/src/static/icons/regular/democrat.svg diff --git a/src/static/icons/regular/desktop-alt.svg b/apps/client/src/static/icons/regular/desktop-alt.svg similarity index 100% rename from src/static/icons/regular/desktop-alt.svg rename to apps/client/src/static/icons/regular/desktop-alt.svg diff --git a/src/static/icons/regular/desktop.svg b/apps/client/src/static/icons/regular/desktop.svg similarity index 100% rename from src/static/icons/regular/desktop.svg rename to apps/client/src/static/icons/regular/desktop.svg diff --git a/src/static/icons/regular/dewpoint.svg b/apps/client/src/static/icons/regular/dewpoint.svg similarity index 100% rename from src/static/icons/regular/dewpoint.svg rename to apps/client/src/static/icons/regular/dewpoint.svg diff --git a/src/static/icons/regular/dharmachakra.svg b/apps/client/src/static/icons/regular/dharmachakra.svg similarity index 100% rename from src/static/icons/regular/dharmachakra.svg rename to apps/client/src/static/icons/regular/dharmachakra.svg diff --git a/src/static/icons/regular/diagnoses.svg b/apps/client/src/static/icons/regular/diagnoses.svg similarity index 100% rename from src/static/icons/regular/diagnoses.svg rename to apps/client/src/static/icons/regular/diagnoses.svg diff --git a/src/static/icons/regular/diamond.svg b/apps/client/src/static/icons/regular/diamond.svg similarity index 100% rename from src/static/icons/regular/diamond.svg rename to apps/client/src/static/icons/regular/diamond.svg diff --git a/src/static/icons/regular/dice-d10.svg b/apps/client/src/static/icons/regular/dice-d10.svg similarity index 100% rename from src/static/icons/regular/dice-d10.svg rename to apps/client/src/static/icons/regular/dice-d10.svg diff --git a/src/static/icons/regular/dice-d12.svg b/apps/client/src/static/icons/regular/dice-d12.svg similarity index 100% rename from src/static/icons/regular/dice-d12.svg rename to apps/client/src/static/icons/regular/dice-d12.svg diff --git a/src/static/icons/regular/dice-d20.svg b/apps/client/src/static/icons/regular/dice-d20.svg similarity index 100% rename from src/static/icons/regular/dice-d20.svg rename to apps/client/src/static/icons/regular/dice-d20.svg diff --git a/src/static/icons/regular/dice-d4.svg b/apps/client/src/static/icons/regular/dice-d4.svg similarity index 100% rename from src/static/icons/regular/dice-d4.svg rename to apps/client/src/static/icons/regular/dice-d4.svg diff --git a/src/static/icons/regular/dice-d6.svg b/apps/client/src/static/icons/regular/dice-d6.svg similarity index 100% rename from src/static/icons/regular/dice-d6.svg rename to apps/client/src/static/icons/regular/dice-d6.svg diff --git a/src/static/icons/regular/dice-d8.svg b/apps/client/src/static/icons/regular/dice-d8.svg similarity index 100% rename from src/static/icons/regular/dice-d8.svg rename to apps/client/src/static/icons/regular/dice-d8.svg diff --git a/src/static/icons/regular/dice-five.svg b/apps/client/src/static/icons/regular/dice-five.svg similarity index 100% rename from src/static/icons/regular/dice-five.svg rename to apps/client/src/static/icons/regular/dice-five.svg diff --git a/src/static/icons/regular/dice-four.svg b/apps/client/src/static/icons/regular/dice-four.svg similarity index 100% rename from src/static/icons/regular/dice-four.svg rename to apps/client/src/static/icons/regular/dice-four.svg diff --git a/src/static/icons/regular/dice-one.svg b/apps/client/src/static/icons/regular/dice-one.svg similarity index 100% rename from src/static/icons/regular/dice-one.svg rename to apps/client/src/static/icons/regular/dice-one.svg diff --git a/src/static/icons/regular/dice-six.svg b/apps/client/src/static/icons/regular/dice-six.svg similarity index 100% rename from src/static/icons/regular/dice-six.svg rename to apps/client/src/static/icons/regular/dice-six.svg diff --git a/src/static/icons/regular/dice-three.svg b/apps/client/src/static/icons/regular/dice-three.svg similarity index 100% rename from src/static/icons/regular/dice-three.svg rename to apps/client/src/static/icons/regular/dice-three.svg diff --git a/src/static/icons/regular/dice-two.svg b/apps/client/src/static/icons/regular/dice-two.svg similarity index 100% rename from src/static/icons/regular/dice-two.svg rename to apps/client/src/static/icons/regular/dice-two.svg diff --git a/src/static/icons/regular/dice.svg b/apps/client/src/static/icons/regular/dice.svg similarity index 100% rename from src/static/icons/regular/dice.svg rename to apps/client/src/static/icons/regular/dice.svg diff --git a/src/static/icons/regular/digging.svg b/apps/client/src/static/icons/regular/digging.svg similarity index 100% rename from src/static/icons/regular/digging.svg rename to apps/client/src/static/icons/regular/digging.svg diff --git a/src/static/icons/regular/digital-tachograph.svg b/apps/client/src/static/icons/regular/digital-tachograph.svg similarity index 100% rename from src/static/icons/regular/digital-tachograph.svg rename to apps/client/src/static/icons/regular/digital-tachograph.svg diff --git a/src/static/icons/regular/diploma.svg b/apps/client/src/static/icons/regular/diploma.svg similarity index 100% rename from src/static/icons/regular/diploma.svg rename to apps/client/src/static/icons/regular/diploma.svg diff --git a/src/static/icons/regular/directions.svg b/apps/client/src/static/icons/regular/directions.svg similarity index 100% rename from src/static/icons/regular/directions.svg rename to apps/client/src/static/icons/regular/directions.svg diff --git a/src/static/icons/regular/disc-drive.svg b/apps/client/src/static/icons/regular/disc-drive.svg similarity index 100% rename from src/static/icons/regular/disc-drive.svg rename to apps/client/src/static/icons/regular/disc-drive.svg diff --git a/src/static/icons/regular/disease.svg b/apps/client/src/static/icons/regular/disease.svg similarity index 100% rename from src/static/icons/regular/disease.svg rename to apps/client/src/static/icons/regular/disease.svg diff --git a/src/static/icons/regular/divide.svg b/apps/client/src/static/icons/regular/divide.svg similarity index 100% rename from src/static/icons/regular/divide.svg rename to apps/client/src/static/icons/regular/divide.svg diff --git a/src/static/icons/regular/dizzy.svg b/apps/client/src/static/icons/regular/dizzy.svg similarity index 100% rename from src/static/icons/regular/dizzy.svg rename to apps/client/src/static/icons/regular/dizzy.svg diff --git a/src/static/icons/regular/dna.svg b/apps/client/src/static/icons/regular/dna.svg similarity index 100% rename from src/static/icons/regular/dna.svg rename to apps/client/src/static/icons/regular/dna.svg diff --git a/src/static/icons/regular/do-not-enter.svg b/apps/client/src/static/icons/regular/do-not-enter.svg similarity index 100% rename from src/static/icons/regular/do-not-enter.svg rename to apps/client/src/static/icons/regular/do-not-enter.svg diff --git a/src/static/icons/regular/dog-leashed.svg b/apps/client/src/static/icons/regular/dog-leashed.svg similarity index 100% rename from src/static/icons/regular/dog-leashed.svg rename to apps/client/src/static/icons/regular/dog-leashed.svg diff --git a/src/static/icons/regular/dog.svg b/apps/client/src/static/icons/regular/dog.svg similarity index 100% rename from src/static/icons/regular/dog.svg rename to apps/client/src/static/icons/regular/dog.svg diff --git a/src/static/icons/regular/dollar-sign.svg b/apps/client/src/static/icons/regular/dollar-sign.svg similarity index 100% rename from src/static/icons/regular/dollar-sign.svg rename to apps/client/src/static/icons/regular/dollar-sign.svg diff --git a/src/static/icons/regular/dolly-empty.svg b/apps/client/src/static/icons/regular/dolly-empty.svg similarity index 100% rename from src/static/icons/regular/dolly-empty.svg rename to apps/client/src/static/icons/regular/dolly-empty.svg diff --git a/src/static/icons/regular/dolly-flatbed-alt.svg b/apps/client/src/static/icons/regular/dolly-flatbed-alt.svg similarity index 100% rename from src/static/icons/regular/dolly-flatbed-alt.svg rename to apps/client/src/static/icons/regular/dolly-flatbed-alt.svg diff --git a/src/static/icons/regular/dolly-flatbed-empty.svg b/apps/client/src/static/icons/regular/dolly-flatbed-empty.svg similarity index 100% rename from src/static/icons/regular/dolly-flatbed-empty.svg rename to apps/client/src/static/icons/regular/dolly-flatbed-empty.svg diff --git a/src/static/icons/regular/dolly-flatbed.svg b/apps/client/src/static/icons/regular/dolly-flatbed.svg similarity index 100% rename from src/static/icons/regular/dolly-flatbed.svg rename to apps/client/src/static/icons/regular/dolly-flatbed.svg diff --git a/src/static/icons/regular/dolly.svg b/apps/client/src/static/icons/regular/dolly.svg similarity index 100% rename from src/static/icons/regular/dolly.svg rename to apps/client/src/static/icons/regular/dolly.svg diff --git a/src/static/icons/regular/donate.svg b/apps/client/src/static/icons/regular/donate.svg similarity index 100% rename from src/static/icons/regular/donate.svg rename to apps/client/src/static/icons/regular/donate.svg diff --git a/src/static/icons/regular/door-closed.svg b/apps/client/src/static/icons/regular/door-closed.svg similarity index 100% rename from src/static/icons/regular/door-closed.svg rename to apps/client/src/static/icons/regular/door-closed.svg diff --git a/src/static/icons/regular/door-open.svg b/apps/client/src/static/icons/regular/door-open.svg similarity index 100% rename from src/static/icons/regular/door-open.svg rename to apps/client/src/static/icons/regular/door-open.svg diff --git a/src/static/icons/regular/dot-circle.svg b/apps/client/src/static/icons/regular/dot-circle.svg similarity index 100% rename from src/static/icons/regular/dot-circle.svg rename to apps/client/src/static/icons/regular/dot-circle.svg diff --git a/src/static/icons/regular/dove.svg b/apps/client/src/static/icons/regular/dove.svg similarity index 100% rename from src/static/icons/regular/dove.svg rename to apps/client/src/static/icons/regular/dove.svg diff --git a/src/static/icons/regular/download.svg b/apps/client/src/static/icons/regular/download.svg similarity index 100% rename from src/static/icons/regular/download.svg rename to apps/client/src/static/icons/regular/download.svg diff --git a/src/static/icons/regular/drafting-compass.svg b/apps/client/src/static/icons/regular/drafting-compass.svg similarity index 100% rename from src/static/icons/regular/drafting-compass.svg rename to apps/client/src/static/icons/regular/drafting-compass.svg diff --git a/src/static/icons/regular/dragon.svg b/apps/client/src/static/icons/regular/dragon.svg similarity index 100% rename from src/static/icons/regular/dragon.svg rename to apps/client/src/static/icons/regular/dragon.svg diff --git a/src/static/icons/regular/draw-circle.svg b/apps/client/src/static/icons/regular/draw-circle.svg similarity index 100% rename from src/static/icons/regular/draw-circle.svg rename to apps/client/src/static/icons/regular/draw-circle.svg diff --git a/src/static/icons/regular/draw-polygon.svg b/apps/client/src/static/icons/regular/draw-polygon.svg similarity index 100% rename from src/static/icons/regular/draw-polygon.svg rename to apps/client/src/static/icons/regular/draw-polygon.svg diff --git a/src/static/icons/regular/draw-square.svg b/apps/client/src/static/icons/regular/draw-square.svg similarity index 100% rename from src/static/icons/regular/draw-square.svg rename to apps/client/src/static/icons/regular/draw-square.svg diff --git a/src/static/icons/regular/dreidel.svg b/apps/client/src/static/icons/regular/dreidel.svg similarity index 100% rename from src/static/icons/regular/dreidel.svg rename to apps/client/src/static/icons/regular/dreidel.svg diff --git a/src/static/icons/regular/drone-alt.svg b/apps/client/src/static/icons/regular/drone-alt.svg similarity index 100% rename from src/static/icons/regular/drone-alt.svg rename to apps/client/src/static/icons/regular/drone-alt.svg diff --git a/src/static/icons/regular/drone.svg b/apps/client/src/static/icons/regular/drone.svg similarity index 100% rename from src/static/icons/regular/drone.svg rename to apps/client/src/static/icons/regular/drone.svg diff --git a/src/static/icons/regular/drum-steelpan.svg b/apps/client/src/static/icons/regular/drum-steelpan.svg similarity index 100% rename from src/static/icons/regular/drum-steelpan.svg rename to apps/client/src/static/icons/regular/drum-steelpan.svg diff --git a/src/static/icons/regular/drum.svg b/apps/client/src/static/icons/regular/drum.svg similarity index 100% rename from src/static/icons/regular/drum.svg rename to apps/client/src/static/icons/regular/drum.svg diff --git a/src/static/icons/regular/drumstick-bite.svg b/apps/client/src/static/icons/regular/drumstick-bite.svg similarity index 100% rename from src/static/icons/regular/drumstick-bite.svg rename to apps/client/src/static/icons/regular/drumstick-bite.svg diff --git a/src/static/icons/regular/drumstick.svg b/apps/client/src/static/icons/regular/drumstick.svg similarity index 100% rename from src/static/icons/regular/drumstick.svg rename to apps/client/src/static/icons/regular/drumstick.svg diff --git a/src/static/icons/regular/dryer-alt.svg b/apps/client/src/static/icons/regular/dryer-alt.svg similarity index 100% rename from src/static/icons/regular/dryer-alt.svg rename to apps/client/src/static/icons/regular/dryer-alt.svg diff --git a/src/static/icons/regular/dryer.svg b/apps/client/src/static/icons/regular/dryer.svg similarity index 100% rename from src/static/icons/regular/dryer.svg rename to apps/client/src/static/icons/regular/dryer.svg diff --git a/src/static/icons/regular/duck.svg b/apps/client/src/static/icons/regular/duck.svg similarity index 100% rename from src/static/icons/regular/duck.svg rename to apps/client/src/static/icons/regular/duck.svg diff --git a/src/static/icons/regular/dumbbell.svg b/apps/client/src/static/icons/regular/dumbbell.svg similarity index 100% rename from src/static/icons/regular/dumbbell.svg rename to apps/client/src/static/icons/regular/dumbbell.svg diff --git a/src/static/icons/regular/dumpster-fire.svg b/apps/client/src/static/icons/regular/dumpster-fire.svg similarity index 100% rename from src/static/icons/regular/dumpster-fire.svg rename to apps/client/src/static/icons/regular/dumpster-fire.svg diff --git a/src/static/icons/regular/dumpster.svg b/apps/client/src/static/icons/regular/dumpster.svg similarity index 100% rename from src/static/icons/regular/dumpster.svg rename to apps/client/src/static/icons/regular/dumpster.svg diff --git a/src/static/icons/regular/dungeon.svg b/apps/client/src/static/icons/regular/dungeon.svg similarity index 100% rename from src/static/icons/regular/dungeon.svg rename to apps/client/src/static/icons/regular/dungeon.svg diff --git a/src/static/icons/regular/ear-muffs.svg b/apps/client/src/static/icons/regular/ear-muffs.svg similarity index 100% rename from src/static/icons/regular/ear-muffs.svg rename to apps/client/src/static/icons/regular/ear-muffs.svg diff --git a/src/static/icons/regular/ear.svg b/apps/client/src/static/icons/regular/ear.svg similarity index 100% rename from src/static/icons/regular/ear.svg rename to apps/client/src/static/icons/regular/ear.svg diff --git a/src/static/icons/regular/eclipse-alt.svg b/apps/client/src/static/icons/regular/eclipse-alt.svg similarity index 100% rename from src/static/icons/regular/eclipse-alt.svg rename to apps/client/src/static/icons/regular/eclipse-alt.svg diff --git a/src/static/icons/regular/eclipse.svg b/apps/client/src/static/icons/regular/eclipse.svg similarity index 100% rename from src/static/icons/regular/eclipse.svg rename to apps/client/src/static/icons/regular/eclipse.svg diff --git a/src/static/icons/regular/edit.svg b/apps/client/src/static/icons/regular/edit.svg similarity index 100% rename from src/static/icons/regular/edit.svg rename to apps/client/src/static/icons/regular/edit.svg diff --git a/src/static/icons/regular/egg-fried.svg b/apps/client/src/static/icons/regular/egg-fried.svg similarity index 100% rename from src/static/icons/regular/egg-fried.svg rename to apps/client/src/static/icons/regular/egg-fried.svg diff --git a/src/static/icons/regular/egg.svg b/apps/client/src/static/icons/regular/egg.svg similarity index 100% rename from src/static/icons/regular/egg.svg rename to apps/client/src/static/icons/regular/egg.svg diff --git a/src/static/icons/regular/eject.svg b/apps/client/src/static/icons/regular/eject.svg similarity index 100% rename from src/static/icons/regular/eject.svg rename to apps/client/src/static/icons/regular/eject.svg diff --git a/src/static/icons/regular/elephant.svg b/apps/client/src/static/icons/regular/elephant.svg similarity index 100% rename from src/static/icons/regular/elephant.svg rename to apps/client/src/static/icons/regular/elephant.svg diff --git a/src/static/icons/regular/ellipsis-h-alt.svg b/apps/client/src/static/icons/regular/ellipsis-h-alt.svg similarity index 100% rename from src/static/icons/regular/ellipsis-h-alt.svg rename to apps/client/src/static/icons/regular/ellipsis-h-alt.svg diff --git a/src/static/icons/regular/ellipsis-h.svg b/apps/client/src/static/icons/regular/ellipsis-h.svg similarity index 100% rename from src/static/icons/regular/ellipsis-h.svg rename to apps/client/src/static/icons/regular/ellipsis-h.svg diff --git a/src/static/icons/regular/ellipsis-v-alt.svg b/apps/client/src/static/icons/regular/ellipsis-v-alt.svg similarity index 100% rename from src/static/icons/regular/ellipsis-v-alt.svg rename to apps/client/src/static/icons/regular/ellipsis-v-alt.svg diff --git a/src/static/icons/regular/ellipsis-v.svg b/apps/client/src/static/icons/regular/ellipsis-v.svg similarity index 100% rename from src/static/icons/regular/ellipsis-v.svg rename to apps/client/src/static/icons/regular/ellipsis-v.svg diff --git a/src/static/icons/regular/empty-set.svg b/apps/client/src/static/icons/regular/empty-set.svg similarity index 100% rename from src/static/icons/regular/empty-set.svg rename to apps/client/src/static/icons/regular/empty-set.svg diff --git a/src/static/icons/regular/engine-warning.svg b/apps/client/src/static/icons/regular/engine-warning.svg similarity index 100% rename from src/static/icons/regular/engine-warning.svg rename to apps/client/src/static/icons/regular/engine-warning.svg diff --git a/src/static/icons/regular/envelope-open-dollar.svg b/apps/client/src/static/icons/regular/envelope-open-dollar.svg similarity index 100% rename from src/static/icons/regular/envelope-open-dollar.svg rename to apps/client/src/static/icons/regular/envelope-open-dollar.svg diff --git a/src/static/icons/regular/envelope-open-text.svg b/apps/client/src/static/icons/regular/envelope-open-text.svg similarity index 100% rename from src/static/icons/regular/envelope-open-text.svg rename to apps/client/src/static/icons/regular/envelope-open-text.svg diff --git a/src/static/icons/regular/envelope-open.svg b/apps/client/src/static/icons/regular/envelope-open.svg similarity index 100% rename from src/static/icons/regular/envelope-open.svg rename to apps/client/src/static/icons/regular/envelope-open.svg diff --git a/src/static/icons/regular/envelope-square.svg b/apps/client/src/static/icons/regular/envelope-square.svg similarity index 100% rename from src/static/icons/regular/envelope-square.svg rename to apps/client/src/static/icons/regular/envelope-square.svg diff --git a/src/static/icons/regular/envelope.svg b/apps/client/src/static/icons/regular/envelope.svg similarity index 100% rename from src/static/icons/regular/envelope.svg rename to apps/client/src/static/icons/regular/envelope.svg diff --git a/src/static/icons/regular/equals.svg b/apps/client/src/static/icons/regular/equals.svg similarity index 100% rename from src/static/icons/regular/equals.svg rename to apps/client/src/static/icons/regular/equals.svg diff --git a/src/static/icons/regular/eraser.svg b/apps/client/src/static/icons/regular/eraser.svg similarity index 100% rename from src/static/icons/regular/eraser.svg rename to apps/client/src/static/icons/regular/eraser.svg diff --git a/src/static/icons/regular/ethernet.svg b/apps/client/src/static/icons/regular/ethernet.svg similarity index 100% rename from src/static/icons/regular/ethernet.svg rename to apps/client/src/static/icons/regular/ethernet.svg diff --git a/src/static/icons/regular/euro-sign.svg b/apps/client/src/static/icons/regular/euro-sign.svg similarity index 100% rename from src/static/icons/regular/euro-sign.svg rename to apps/client/src/static/icons/regular/euro-sign.svg diff --git a/src/static/icons/regular/exchange-alt.svg b/apps/client/src/static/icons/regular/exchange-alt.svg similarity index 100% rename from src/static/icons/regular/exchange-alt.svg rename to apps/client/src/static/icons/regular/exchange-alt.svg diff --git a/src/static/icons/regular/exchange.svg b/apps/client/src/static/icons/regular/exchange.svg similarity index 100% rename from src/static/icons/regular/exchange.svg rename to apps/client/src/static/icons/regular/exchange.svg diff --git a/src/static/icons/regular/exclamation-circle.svg b/apps/client/src/static/icons/regular/exclamation-circle.svg similarity index 100% rename from src/static/icons/regular/exclamation-circle.svg rename to apps/client/src/static/icons/regular/exclamation-circle.svg diff --git a/src/static/icons/regular/exclamation-square.svg b/apps/client/src/static/icons/regular/exclamation-square.svg similarity index 100% rename from src/static/icons/regular/exclamation-square.svg rename to apps/client/src/static/icons/regular/exclamation-square.svg diff --git a/src/static/icons/regular/exclamation-triangle.svg b/apps/client/src/static/icons/regular/exclamation-triangle.svg similarity index 100% rename from src/static/icons/regular/exclamation-triangle.svg rename to apps/client/src/static/icons/regular/exclamation-triangle.svg diff --git a/src/static/icons/regular/exclamation.svg b/apps/client/src/static/icons/regular/exclamation.svg similarity index 100% rename from src/static/icons/regular/exclamation.svg rename to apps/client/src/static/icons/regular/exclamation.svg diff --git a/src/static/icons/regular/expand-alt.svg b/apps/client/src/static/icons/regular/expand-alt.svg similarity index 100% rename from src/static/icons/regular/expand-alt.svg rename to apps/client/src/static/icons/regular/expand-alt.svg diff --git a/src/static/icons/regular/expand-arrows-alt.svg b/apps/client/src/static/icons/regular/expand-arrows-alt.svg similarity index 100% rename from src/static/icons/regular/expand-arrows-alt.svg rename to apps/client/src/static/icons/regular/expand-arrows-alt.svg diff --git a/src/static/icons/regular/expand-arrows.svg b/apps/client/src/static/icons/regular/expand-arrows.svg similarity index 100% rename from src/static/icons/regular/expand-arrows.svg rename to apps/client/src/static/icons/regular/expand-arrows.svg diff --git a/src/static/icons/regular/expand-wide.svg b/apps/client/src/static/icons/regular/expand-wide.svg similarity index 100% rename from src/static/icons/regular/expand-wide.svg rename to apps/client/src/static/icons/regular/expand-wide.svg diff --git a/src/static/icons/regular/expand.svg b/apps/client/src/static/icons/regular/expand.svg similarity index 100% rename from src/static/icons/regular/expand.svg rename to apps/client/src/static/icons/regular/expand.svg diff --git a/src/static/icons/regular/external-link-alt.svg b/apps/client/src/static/icons/regular/external-link-alt.svg similarity index 100% rename from src/static/icons/regular/external-link-alt.svg rename to apps/client/src/static/icons/regular/external-link-alt.svg diff --git a/src/static/icons/regular/external-link-square-alt.svg b/apps/client/src/static/icons/regular/external-link-square-alt.svg similarity index 100% rename from src/static/icons/regular/external-link-square-alt.svg rename to apps/client/src/static/icons/regular/external-link-square-alt.svg diff --git a/src/static/icons/regular/external-link-square.svg b/apps/client/src/static/icons/regular/external-link-square.svg similarity index 100% rename from src/static/icons/regular/external-link-square.svg rename to apps/client/src/static/icons/regular/external-link-square.svg diff --git a/src/static/icons/regular/external-link.svg b/apps/client/src/static/icons/regular/external-link.svg similarity index 100% rename from src/static/icons/regular/external-link.svg rename to apps/client/src/static/icons/regular/external-link.svg diff --git a/src/static/icons/regular/eye-dropper.svg b/apps/client/src/static/icons/regular/eye-dropper.svg similarity index 100% rename from src/static/icons/regular/eye-dropper.svg rename to apps/client/src/static/icons/regular/eye-dropper.svg diff --git a/src/static/icons/regular/eye-evil.svg b/apps/client/src/static/icons/regular/eye-evil.svg similarity index 100% rename from src/static/icons/regular/eye-evil.svg rename to apps/client/src/static/icons/regular/eye-evil.svg diff --git a/src/static/icons/regular/eye-slash.svg b/apps/client/src/static/icons/regular/eye-slash.svg similarity index 100% rename from src/static/icons/regular/eye-slash.svg rename to apps/client/src/static/icons/regular/eye-slash.svg diff --git a/src/static/icons/regular/eye.svg b/apps/client/src/static/icons/regular/eye.svg similarity index 100% rename from src/static/icons/regular/eye.svg rename to apps/client/src/static/icons/regular/eye.svg diff --git a/src/static/icons/regular/fan-table.svg b/apps/client/src/static/icons/regular/fan-table.svg similarity index 100% rename from src/static/icons/regular/fan-table.svg rename to apps/client/src/static/icons/regular/fan-table.svg diff --git a/src/static/icons/regular/fan.svg b/apps/client/src/static/icons/regular/fan.svg similarity index 100% rename from src/static/icons/regular/fan.svg rename to apps/client/src/static/icons/regular/fan.svg diff --git a/src/static/icons/regular/farm.svg b/apps/client/src/static/icons/regular/farm.svg similarity index 100% rename from src/static/icons/regular/farm.svg rename to apps/client/src/static/icons/regular/farm.svg diff --git a/src/static/icons/regular/fast-backward.svg b/apps/client/src/static/icons/regular/fast-backward.svg similarity index 100% rename from src/static/icons/regular/fast-backward.svg rename to apps/client/src/static/icons/regular/fast-backward.svg diff --git a/src/static/icons/regular/fast-forward.svg b/apps/client/src/static/icons/regular/fast-forward.svg similarity index 100% rename from src/static/icons/regular/fast-forward.svg rename to apps/client/src/static/icons/regular/fast-forward.svg diff --git a/src/static/icons/regular/faucet-drip.svg b/apps/client/src/static/icons/regular/faucet-drip.svg similarity index 100% rename from src/static/icons/regular/faucet-drip.svg rename to apps/client/src/static/icons/regular/faucet-drip.svg diff --git a/src/static/icons/regular/faucet.svg b/apps/client/src/static/icons/regular/faucet.svg similarity index 100% rename from src/static/icons/regular/faucet.svg rename to apps/client/src/static/icons/regular/faucet.svg diff --git a/src/static/icons/regular/fax.svg b/apps/client/src/static/icons/regular/fax.svg similarity index 100% rename from src/static/icons/regular/fax.svg rename to apps/client/src/static/icons/regular/fax.svg diff --git a/src/static/icons/regular/feather-alt.svg b/apps/client/src/static/icons/regular/feather-alt.svg similarity index 100% rename from src/static/icons/regular/feather-alt.svg rename to apps/client/src/static/icons/regular/feather-alt.svg diff --git a/src/static/icons/regular/feather.svg b/apps/client/src/static/icons/regular/feather.svg similarity index 100% rename from src/static/icons/regular/feather.svg rename to apps/client/src/static/icons/regular/feather.svg diff --git a/src/static/icons/regular/female.svg b/apps/client/src/static/icons/regular/female.svg similarity index 100% rename from src/static/icons/regular/female.svg rename to apps/client/src/static/icons/regular/female.svg diff --git a/src/static/icons/regular/field-hockey.svg b/apps/client/src/static/icons/regular/field-hockey.svg similarity index 100% rename from src/static/icons/regular/field-hockey.svg rename to apps/client/src/static/icons/regular/field-hockey.svg diff --git a/src/static/icons/regular/fighter-jet.svg b/apps/client/src/static/icons/regular/fighter-jet.svg similarity index 100% rename from src/static/icons/regular/fighter-jet.svg rename to apps/client/src/static/icons/regular/fighter-jet.svg diff --git a/src/static/icons/regular/file-alt.svg b/apps/client/src/static/icons/regular/file-alt.svg similarity index 100% rename from src/static/icons/regular/file-alt.svg rename to apps/client/src/static/icons/regular/file-alt.svg diff --git a/src/static/icons/regular/file-archive.svg b/apps/client/src/static/icons/regular/file-archive.svg similarity index 100% rename from src/static/icons/regular/file-archive.svg rename to apps/client/src/static/icons/regular/file-archive.svg diff --git a/src/static/icons/regular/file-audio.svg b/apps/client/src/static/icons/regular/file-audio.svg similarity index 100% rename from src/static/icons/regular/file-audio.svg rename to apps/client/src/static/icons/regular/file-audio.svg diff --git a/src/static/icons/regular/file-certificate.svg b/apps/client/src/static/icons/regular/file-certificate.svg similarity index 100% rename from src/static/icons/regular/file-certificate.svg rename to apps/client/src/static/icons/regular/file-certificate.svg diff --git a/src/static/icons/regular/file-chart-line.svg b/apps/client/src/static/icons/regular/file-chart-line.svg similarity index 100% rename from src/static/icons/regular/file-chart-line.svg rename to apps/client/src/static/icons/regular/file-chart-line.svg diff --git a/src/static/icons/regular/file-chart-pie.svg b/apps/client/src/static/icons/regular/file-chart-pie.svg similarity index 100% rename from src/static/icons/regular/file-chart-pie.svg rename to apps/client/src/static/icons/regular/file-chart-pie.svg diff --git a/src/static/icons/regular/file-check.svg b/apps/client/src/static/icons/regular/file-check.svg similarity index 100% rename from src/static/icons/regular/file-check.svg rename to apps/client/src/static/icons/regular/file-check.svg diff --git a/src/static/icons/regular/file-code.svg b/apps/client/src/static/icons/regular/file-code.svg similarity index 100% rename from src/static/icons/regular/file-code.svg rename to apps/client/src/static/icons/regular/file-code.svg diff --git a/src/static/icons/regular/file-contract.svg b/apps/client/src/static/icons/regular/file-contract.svg similarity index 100% rename from src/static/icons/regular/file-contract.svg rename to apps/client/src/static/icons/regular/file-contract.svg diff --git a/src/static/icons/regular/file-csv.svg b/apps/client/src/static/icons/regular/file-csv.svg similarity index 100% rename from src/static/icons/regular/file-csv.svg rename to apps/client/src/static/icons/regular/file-csv.svg diff --git a/src/static/icons/regular/file-download.svg b/apps/client/src/static/icons/regular/file-download.svg similarity index 100% rename from src/static/icons/regular/file-download.svg rename to apps/client/src/static/icons/regular/file-download.svg diff --git a/src/static/icons/regular/file-edit.svg b/apps/client/src/static/icons/regular/file-edit.svg similarity index 100% rename from src/static/icons/regular/file-edit.svg rename to apps/client/src/static/icons/regular/file-edit.svg diff --git a/src/static/icons/regular/file-excel.svg b/apps/client/src/static/icons/regular/file-excel.svg similarity index 100% rename from src/static/icons/regular/file-excel.svg rename to apps/client/src/static/icons/regular/file-excel.svg diff --git a/src/static/icons/regular/file-exclamation.svg b/apps/client/src/static/icons/regular/file-exclamation.svg similarity index 100% rename from src/static/icons/regular/file-exclamation.svg rename to apps/client/src/static/icons/regular/file-exclamation.svg diff --git a/src/static/icons/regular/file-export.svg b/apps/client/src/static/icons/regular/file-export.svg similarity index 100% rename from src/static/icons/regular/file-export.svg rename to apps/client/src/static/icons/regular/file-export.svg diff --git a/src/static/icons/regular/file-image.svg b/apps/client/src/static/icons/regular/file-image.svg similarity index 100% rename from src/static/icons/regular/file-image.svg rename to apps/client/src/static/icons/regular/file-image.svg diff --git a/src/static/icons/regular/file-import.svg b/apps/client/src/static/icons/regular/file-import.svg similarity index 100% rename from src/static/icons/regular/file-import.svg rename to apps/client/src/static/icons/regular/file-import.svg diff --git a/src/static/icons/regular/file-invoice-dollar.svg b/apps/client/src/static/icons/regular/file-invoice-dollar.svg similarity index 100% rename from src/static/icons/regular/file-invoice-dollar.svg rename to apps/client/src/static/icons/regular/file-invoice-dollar.svg diff --git a/src/static/icons/regular/file-invoice.svg b/apps/client/src/static/icons/regular/file-invoice.svg similarity index 100% rename from src/static/icons/regular/file-invoice.svg rename to apps/client/src/static/icons/regular/file-invoice.svg diff --git a/src/static/icons/regular/file-medical-alt.svg b/apps/client/src/static/icons/regular/file-medical-alt.svg similarity index 100% rename from src/static/icons/regular/file-medical-alt.svg rename to apps/client/src/static/icons/regular/file-medical-alt.svg diff --git a/src/static/icons/regular/file-medical.svg b/apps/client/src/static/icons/regular/file-medical.svg similarity index 100% rename from src/static/icons/regular/file-medical.svg rename to apps/client/src/static/icons/regular/file-medical.svg diff --git a/src/static/icons/regular/file-minus.svg b/apps/client/src/static/icons/regular/file-minus.svg similarity index 100% rename from src/static/icons/regular/file-minus.svg rename to apps/client/src/static/icons/regular/file-minus.svg diff --git a/src/static/icons/regular/file-music.svg b/apps/client/src/static/icons/regular/file-music.svg similarity index 100% rename from src/static/icons/regular/file-music.svg rename to apps/client/src/static/icons/regular/file-music.svg diff --git a/src/static/icons/regular/file-pdf.svg b/apps/client/src/static/icons/regular/file-pdf.svg similarity index 100% rename from src/static/icons/regular/file-pdf.svg rename to apps/client/src/static/icons/regular/file-pdf.svg diff --git a/src/static/icons/regular/file-plus.svg b/apps/client/src/static/icons/regular/file-plus.svg similarity index 100% rename from src/static/icons/regular/file-plus.svg rename to apps/client/src/static/icons/regular/file-plus.svg diff --git a/src/static/icons/regular/file-powerpoint.svg b/apps/client/src/static/icons/regular/file-powerpoint.svg similarity index 100% rename from src/static/icons/regular/file-powerpoint.svg rename to apps/client/src/static/icons/regular/file-powerpoint.svg diff --git a/src/static/icons/regular/file-prescription.svg b/apps/client/src/static/icons/regular/file-prescription.svg similarity index 100% rename from src/static/icons/regular/file-prescription.svg rename to apps/client/src/static/icons/regular/file-prescription.svg diff --git a/src/static/icons/regular/file-search.svg b/apps/client/src/static/icons/regular/file-search.svg similarity index 100% rename from src/static/icons/regular/file-search.svg rename to apps/client/src/static/icons/regular/file-search.svg diff --git a/src/static/icons/regular/file-signature.svg b/apps/client/src/static/icons/regular/file-signature.svg similarity index 100% rename from src/static/icons/regular/file-signature.svg rename to apps/client/src/static/icons/regular/file-signature.svg diff --git a/src/static/icons/regular/file-spreadsheet.svg b/apps/client/src/static/icons/regular/file-spreadsheet.svg similarity index 100% rename from src/static/icons/regular/file-spreadsheet.svg rename to apps/client/src/static/icons/regular/file-spreadsheet.svg diff --git a/src/static/icons/regular/file-times.svg b/apps/client/src/static/icons/regular/file-times.svg similarity index 100% rename from src/static/icons/regular/file-times.svg rename to apps/client/src/static/icons/regular/file-times.svg diff --git a/src/static/icons/regular/file-upload.svg b/apps/client/src/static/icons/regular/file-upload.svg similarity index 100% rename from src/static/icons/regular/file-upload.svg rename to apps/client/src/static/icons/regular/file-upload.svg diff --git a/src/static/icons/regular/file-user.svg b/apps/client/src/static/icons/regular/file-user.svg similarity index 100% rename from src/static/icons/regular/file-user.svg rename to apps/client/src/static/icons/regular/file-user.svg diff --git a/src/static/icons/regular/file-video.svg b/apps/client/src/static/icons/regular/file-video.svg similarity index 100% rename from src/static/icons/regular/file-video.svg rename to apps/client/src/static/icons/regular/file-video.svg diff --git a/src/static/icons/regular/file-word.svg b/apps/client/src/static/icons/regular/file-word.svg similarity index 100% rename from src/static/icons/regular/file-word.svg rename to apps/client/src/static/icons/regular/file-word.svg diff --git a/src/static/icons/regular/file.svg b/apps/client/src/static/icons/regular/file.svg similarity index 100% rename from src/static/icons/regular/file.svg rename to apps/client/src/static/icons/regular/file.svg diff --git a/src/static/icons/regular/files-medical.svg b/apps/client/src/static/icons/regular/files-medical.svg similarity index 100% rename from src/static/icons/regular/files-medical.svg rename to apps/client/src/static/icons/regular/files-medical.svg diff --git a/src/static/icons/regular/fill-drip.svg b/apps/client/src/static/icons/regular/fill-drip.svg similarity index 100% rename from src/static/icons/regular/fill-drip.svg rename to apps/client/src/static/icons/regular/fill-drip.svg diff --git a/src/static/icons/regular/fill.svg b/apps/client/src/static/icons/regular/fill.svg similarity index 100% rename from src/static/icons/regular/fill.svg rename to apps/client/src/static/icons/regular/fill.svg diff --git a/src/static/icons/regular/film-alt.svg b/apps/client/src/static/icons/regular/film-alt.svg similarity index 100% rename from src/static/icons/regular/film-alt.svg rename to apps/client/src/static/icons/regular/film-alt.svg diff --git a/src/static/icons/regular/film-canister.svg b/apps/client/src/static/icons/regular/film-canister.svg similarity index 100% rename from src/static/icons/regular/film-canister.svg rename to apps/client/src/static/icons/regular/film-canister.svg diff --git a/src/static/icons/regular/film.svg b/apps/client/src/static/icons/regular/film.svg similarity index 100% rename from src/static/icons/regular/film.svg rename to apps/client/src/static/icons/regular/film.svg diff --git a/src/static/icons/regular/filter.svg b/apps/client/src/static/icons/regular/filter.svg similarity index 100% rename from src/static/icons/regular/filter.svg rename to apps/client/src/static/icons/regular/filter.svg diff --git a/src/static/icons/regular/fingerprint.svg b/apps/client/src/static/icons/regular/fingerprint.svg similarity index 100% rename from src/static/icons/regular/fingerprint.svg rename to apps/client/src/static/icons/regular/fingerprint.svg diff --git a/src/static/icons/regular/fire-alt.svg b/apps/client/src/static/icons/regular/fire-alt.svg similarity index 100% rename from src/static/icons/regular/fire-alt.svg rename to apps/client/src/static/icons/regular/fire-alt.svg diff --git a/src/static/icons/regular/fire-extinguisher.svg b/apps/client/src/static/icons/regular/fire-extinguisher.svg similarity index 100% rename from src/static/icons/regular/fire-extinguisher.svg rename to apps/client/src/static/icons/regular/fire-extinguisher.svg diff --git a/src/static/icons/regular/fire-smoke.svg b/apps/client/src/static/icons/regular/fire-smoke.svg similarity index 100% rename from src/static/icons/regular/fire-smoke.svg rename to apps/client/src/static/icons/regular/fire-smoke.svg diff --git a/src/static/icons/regular/fire.svg b/apps/client/src/static/icons/regular/fire.svg similarity index 100% rename from src/static/icons/regular/fire.svg rename to apps/client/src/static/icons/regular/fire.svg diff --git a/src/static/icons/regular/fireplace.svg b/apps/client/src/static/icons/regular/fireplace.svg similarity index 100% rename from src/static/icons/regular/fireplace.svg rename to apps/client/src/static/icons/regular/fireplace.svg diff --git a/src/static/icons/regular/first-aid.svg b/apps/client/src/static/icons/regular/first-aid.svg similarity index 100% rename from src/static/icons/regular/first-aid.svg rename to apps/client/src/static/icons/regular/first-aid.svg diff --git a/src/static/icons/regular/fish-cooked.svg b/apps/client/src/static/icons/regular/fish-cooked.svg similarity index 100% rename from src/static/icons/regular/fish-cooked.svg rename to apps/client/src/static/icons/regular/fish-cooked.svg diff --git a/src/static/icons/regular/fish.svg b/apps/client/src/static/icons/regular/fish.svg similarity index 100% rename from src/static/icons/regular/fish.svg rename to apps/client/src/static/icons/regular/fish.svg diff --git a/src/static/icons/regular/fist-raised.svg b/apps/client/src/static/icons/regular/fist-raised.svg similarity index 100% rename from src/static/icons/regular/fist-raised.svg rename to apps/client/src/static/icons/regular/fist-raised.svg diff --git a/src/static/icons/regular/flag-alt.svg b/apps/client/src/static/icons/regular/flag-alt.svg similarity index 100% rename from src/static/icons/regular/flag-alt.svg rename to apps/client/src/static/icons/regular/flag-alt.svg diff --git a/src/static/icons/regular/flag-checkered.svg b/apps/client/src/static/icons/regular/flag-checkered.svg similarity index 100% rename from src/static/icons/regular/flag-checkered.svg rename to apps/client/src/static/icons/regular/flag-checkered.svg diff --git a/src/static/icons/regular/flag-usa.svg b/apps/client/src/static/icons/regular/flag-usa.svg similarity index 100% rename from src/static/icons/regular/flag-usa.svg rename to apps/client/src/static/icons/regular/flag-usa.svg diff --git a/src/static/icons/regular/flag.svg b/apps/client/src/static/icons/regular/flag.svg similarity index 100% rename from src/static/icons/regular/flag.svg rename to apps/client/src/static/icons/regular/flag.svg diff --git a/src/static/icons/regular/flame.svg b/apps/client/src/static/icons/regular/flame.svg similarity index 100% rename from src/static/icons/regular/flame.svg rename to apps/client/src/static/icons/regular/flame.svg diff --git a/src/static/icons/regular/flashlight.svg b/apps/client/src/static/icons/regular/flashlight.svg similarity index 100% rename from src/static/icons/regular/flashlight.svg rename to apps/client/src/static/icons/regular/flashlight.svg diff --git a/src/static/icons/regular/flask-poison.svg b/apps/client/src/static/icons/regular/flask-poison.svg similarity index 100% rename from src/static/icons/regular/flask-poison.svg rename to apps/client/src/static/icons/regular/flask-poison.svg diff --git a/src/static/icons/regular/flask-potion.svg b/apps/client/src/static/icons/regular/flask-potion.svg similarity index 100% rename from src/static/icons/regular/flask-potion.svg rename to apps/client/src/static/icons/regular/flask-potion.svg diff --git a/src/static/icons/regular/flask.svg b/apps/client/src/static/icons/regular/flask.svg similarity index 100% rename from src/static/icons/regular/flask.svg rename to apps/client/src/static/icons/regular/flask.svg diff --git a/src/static/icons/regular/flower-daffodil.svg b/apps/client/src/static/icons/regular/flower-daffodil.svg similarity index 100% rename from src/static/icons/regular/flower-daffodil.svg rename to apps/client/src/static/icons/regular/flower-daffodil.svg diff --git a/src/static/icons/regular/flower-tulip.svg b/apps/client/src/static/icons/regular/flower-tulip.svg similarity index 100% rename from src/static/icons/regular/flower-tulip.svg rename to apps/client/src/static/icons/regular/flower-tulip.svg diff --git a/src/static/icons/regular/flower.svg b/apps/client/src/static/icons/regular/flower.svg similarity index 100% rename from src/static/icons/regular/flower.svg rename to apps/client/src/static/icons/regular/flower.svg diff --git a/src/static/icons/regular/flushed.svg b/apps/client/src/static/icons/regular/flushed.svg similarity index 100% rename from src/static/icons/regular/flushed.svg rename to apps/client/src/static/icons/regular/flushed.svg diff --git a/src/static/icons/regular/flute.svg b/apps/client/src/static/icons/regular/flute.svg similarity index 100% rename from src/static/icons/regular/flute.svg rename to apps/client/src/static/icons/regular/flute.svg diff --git a/src/static/icons/regular/flux-capacitor.svg b/apps/client/src/static/icons/regular/flux-capacitor.svg similarity index 100% rename from src/static/icons/regular/flux-capacitor.svg rename to apps/client/src/static/icons/regular/flux-capacitor.svg diff --git a/src/static/icons/regular/fog.svg b/apps/client/src/static/icons/regular/fog.svg similarity index 100% rename from src/static/icons/regular/fog.svg rename to apps/client/src/static/icons/regular/fog.svg diff --git a/src/static/icons/regular/folder-minus.svg b/apps/client/src/static/icons/regular/folder-minus.svg similarity index 100% rename from src/static/icons/regular/folder-minus.svg rename to apps/client/src/static/icons/regular/folder-minus.svg diff --git a/src/static/icons/regular/folder-open.svg b/apps/client/src/static/icons/regular/folder-open.svg similarity index 100% rename from src/static/icons/regular/folder-open.svg rename to apps/client/src/static/icons/regular/folder-open.svg diff --git a/src/static/icons/regular/folder-plus.svg b/apps/client/src/static/icons/regular/folder-plus.svg similarity index 100% rename from src/static/icons/regular/folder-plus.svg rename to apps/client/src/static/icons/regular/folder-plus.svg diff --git a/src/static/icons/regular/folder-times.svg b/apps/client/src/static/icons/regular/folder-times.svg similarity index 100% rename from src/static/icons/regular/folder-times.svg rename to apps/client/src/static/icons/regular/folder-times.svg diff --git a/src/static/icons/regular/folder-tree.svg b/apps/client/src/static/icons/regular/folder-tree.svg similarity index 100% rename from src/static/icons/regular/folder-tree.svg rename to apps/client/src/static/icons/regular/folder-tree.svg diff --git a/src/static/icons/regular/folder.svg b/apps/client/src/static/icons/regular/folder.svg similarity index 100% rename from src/static/icons/regular/folder.svg rename to apps/client/src/static/icons/regular/folder.svg diff --git a/src/static/icons/regular/folders.svg b/apps/client/src/static/icons/regular/folders.svg similarity index 100% rename from src/static/icons/regular/folders.svg rename to apps/client/src/static/icons/regular/folders.svg diff --git a/src/static/icons/regular/font-awesome-logo-full.svg b/apps/client/src/static/icons/regular/font-awesome-logo-full.svg similarity index 100% rename from src/static/icons/regular/font-awesome-logo-full.svg rename to apps/client/src/static/icons/regular/font-awesome-logo-full.svg diff --git a/src/static/icons/regular/font-case.svg b/apps/client/src/static/icons/regular/font-case.svg similarity index 100% rename from src/static/icons/regular/font-case.svg rename to apps/client/src/static/icons/regular/font-case.svg diff --git a/src/static/icons/regular/font.svg b/apps/client/src/static/icons/regular/font.svg similarity index 100% rename from src/static/icons/regular/font.svg rename to apps/client/src/static/icons/regular/font.svg diff --git a/src/static/icons/regular/football-ball.svg b/apps/client/src/static/icons/regular/football-ball.svg similarity index 100% rename from src/static/icons/regular/football-ball.svg rename to apps/client/src/static/icons/regular/football-ball.svg diff --git a/src/static/icons/regular/football-helmet.svg b/apps/client/src/static/icons/regular/football-helmet.svg similarity index 100% rename from src/static/icons/regular/football-helmet.svg rename to apps/client/src/static/icons/regular/football-helmet.svg diff --git a/src/static/icons/regular/forklift.svg b/apps/client/src/static/icons/regular/forklift.svg similarity index 100% rename from src/static/icons/regular/forklift.svg rename to apps/client/src/static/icons/regular/forklift.svg diff --git a/src/static/icons/regular/forward.svg b/apps/client/src/static/icons/regular/forward.svg similarity index 100% rename from src/static/icons/regular/forward.svg rename to apps/client/src/static/icons/regular/forward.svg diff --git a/src/static/icons/regular/fragile.svg b/apps/client/src/static/icons/regular/fragile.svg similarity index 100% rename from src/static/icons/regular/fragile.svg rename to apps/client/src/static/icons/regular/fragile.svg diff --git a/src/static/icons/regular/french-fries.svg b/apps/client/src/static/icons/regular/french-fries.svg similarity index 100% rename from src/static/icons/regular/french-fries.svg rename to apps/client/src/static/icons/regular/french-fries.svg diff --git a/src/static/icons/regular/frog.svg b/apps/client/src/static/icons/regular/frog.svg similarity index 100% rename from src/static/icons/regular/frog.svg rename to apps/client/src/static/icons/regular/frog.svg diff --git a/src/static/icons/regular/frosty-head.svg b/apps/client/src/static/icons/regular/frosty-head.svg similarity index 100% rename from src/static/icons/regular/frosty-head.svg rename to apps/client/src/static/icons/regular/frosty-head.svg diff --git a/src/static/icons/regular/frown-open.svg b/apps/client/src/static/icons/regular/frown-open.svg similarity index 100% rename from src/static/icons/regular/frown-open.svg rename to apps/client/src/static/icons/regular/frown-open.svg diff --git a/src/static/icons/regular/frown.svg b/apps/client/src/static/icons/regular/frown.svg similarity index 100% rename from src/static/icons/regular/frown.svg rename to apps/client/src/static/icons/regular/frown.svg diff --git a/src/static/icons/regular/function.svg b/apps/client/src/static/icons/regular/function.svg similarity index 100% rename from src/static/icons/regular/function.svg rename to apps/client/src/static/icons/regular/function.svg diff --git a/src/static/icons/regular/funnel-dollar.svg b/apps/client/src/static/icons/regular/funnel-dollar.svg similarity index 100% rename from src/static/icons/regular/funnel-dollar.svg rename to apps/client/src/static/icons/regular/funnel-dollar.svg diff --git a/src/static/icons/regular/futbol.svg b/apps/client/src/static/icons/regular/futbol.svg similarity index 100% rename from src/static/icons/regular/futbol.svg rename to apps/client/src/static/icons/regular/futbol.svg diff --git a/src/static/icons/regular/galaxy.svg b/apps/client/src/static/icons/regular/galaxy.svg similarity index 100% rename from src/static/icons/regular/galaxy.svg rename to apps/client/src/static/icons/regular/galaxy.svg diff --git a/src/static/icons/regular/game-board-alt.svg b/apps/client/src/static/icons/regular/game-board-alt.svg similarity index 100% rename from src/static/icons/regular/game-board-alt.svg rename to apps/client/src/static/icons/regular/game-board-alt.svg diff --git a/src/static/icons/regular/game-board.svg b/apps/client/src/static/icons/regular/game-board.svg similarity index 100% rename from src/static/icons/regular/game-board.svg rename to apps/client/src/static/icons/regular/game-board.svg diff --git a/src/static/icons/regular/game-console-handheld.svg b/apps/client/src/static/icons/regular/game-console-handheld.svg similarity index 100% rename from src/static/icons/regular/game-console-handheld.svg rename to apps/client/src/static/icons/regular/game-console-handheld.svg diff --git a/src/static/icons/regular/gamepad-alt.svg b/apps/client/src/static/icons/regular/gamepad-alt.svg similarity index 100% rename from src/static/icons/regular/gamepad-alt.svg rename to apps/client/src/static/icons/regular/gamepad-alt.svg diff --git a/src/static/icons/regular/gamepad.svg b/apps/client/src/static/icons/regular/gamepad.svg similarity index 100% rename from src/static/icons/regular/gamepad.svg rename to apps/client/src/static/icons/regular/gamepad.svg diff --git a/src/static/icons/regular/garage-car.svg b/apps/client/src/static/icons/regular/garage-car.svg similarity index 100% rename from src/static/icons/regular/garage-car.svg rename to apps/client/src/static/icons/regular/garage-car.svg diff --git a/src/static/icons/regular/garage-open.svg b/apps/client/src/static/icons/regular/garage-open.svg similarity index 100% rename from src/static/icons/regular/garage-open.svg rename to apps/client/src/static/icons/regular/garage-open.svg diff --git a/src/static/icons/regular/garage.svg b/apps/client/src/static/icons/regular/garage.svg similarity index 100% rename from src/static/icons/regular/garage.svg rename to apps/client/src/static/icons/regular/garage.svg diff --git a/src/static/icons/regular/gas-pump-slash.svg b/apps/client/src/static/icons/regular/gas-pump-slash.svg similarity index 100% rename from src/static/icons/regular/gas-pump-slash.svg rename to apps/client/src/static/icons/regular/gas-pump-slash.svg diff --git a/src/static/icons/regular/gas-pump.svg b/apps/client/src/static/icons/regular/gas-pump.svg similarity index 100% rename from src/static/icons/regular/gas-pump.svg rename to apps/client/src/static/icons/regular/gas-pump.svg diff --git a/src/static/icons/regular/gavel.svg b/apps/client/src/static/icons/regular/gavel.svg similarity index 100% rename from src/static/icons/regular/gavel.svg rename to apps/client/src/static/icons/regular/gavel.svg diff --git a/src/static/icons/regular/gem.svg b/apps/client/src/static/icons/regular/gem.svg similarity index 100% rename from src/static/icons/regular/gem.svg rename to apps/client/src/static/icons/regular/gem.svg diff --git a/src/static/icons/regular/genderless.svg b/apps/client/src/static/icons/regular/genderless.svg similarity index 100% rename from src/static/icons/regular/genderless.svg rename to apps/client/src/static/icons/regular/genderless.svg diff --git a/src/static/icons/regular/ghost.svg b/apps/client/src/static/icons/regular/ghost.svg similarity index 100% rename from src/static/icons/regular/ghost.svg rename to apps/client/src/static/icons/regular/ghost.svg diff --git a/src/static/icons/regular/gift-card.svg b/apps/client/src/static/icons/regular/gift-card.svg similarity index 100% rename from src/static/icons/regular/gift-card.svg rename to apps/client/src/static/icons/regular/gift-card.svg diff --git a/src/static/icons/regular/gift.svg b/apps/client/src/static/icons/regular/gift.svg similarity index 100% rename from src/static/icons/regular/gift.svg rename to apps/client/src/static/icons/regular/gift.svg diff --git a/src/static/icons/regular/gifts.svg b/apps/client/src/static/icons/regular/gifts.svg similarity index 100% rename from src/static/icons/regular/gifts.svg rename to apps/client/src/static/icons/regular/gifts.svg diff --git a/src/static/icons/regular/gingerbread-man.svg b/apps/client/src/static/icons/regular/gingerbread-man.svg similarity index 100% rename from src/static/icons/regular/gingerbread-man.svg rename to apps/client/src/static/icons/regular/gingerbread-man.svg diff --git a/src/static/icons/regular/glass-champagne.svg b/apps/client/src/static/icons/regular/glass-champagne.svg similarity index 100% rename from src/static/icons/regular/glass-champagne.svg rename to apps/client/src/static/icons/regular/glass-champagne.svg diff --git a/src/static/icons/regular/glass-cheers.svg b/apps/client/src/static/icons/regular/glass-cheers.svg similarity index 100% rename from src/static/icons/regular/glass-cheers.svg rename to apps/client/src/static/icons/regular/glass-cheers.svg diff --git a/src/static/icons/regular/glass-citrus.svg b/apps/client/src/static/icons/regular/glass-citrus.svg similarity index 100% rename from src/static/icons/regular/glass-citrus.svg rename to apps/client/src/static/icons/regular/glass-citrus.svg diff --git a/src/static/icons/regular/glass-martini-alt.svg b/apps/client/src/static/icons/regular/glass-martini-alt.svg similarity index 100% rename from src/static/icons/regular/glass-martini-alt.svg rename to apps/client/src/static/icons/regular/glass-martini-alt.svg diff --git a/src/static/icons/regular/glass-martini.svg b/apps/client/src/static/icons/regular/glass-martini.svg similarity index 100% rename from src/static/icons/regular/glass-martini.svg rename to apps/client/src/static/icons/regular/glass-martini.svg diff --git a/src/static/icons/regular/glass-whiskey-rocks.svg b/apps/client/src/static/icons/regular/glass-whiskey-rocks.svg similarity index 100% rename from src/static/icons/regular/glass-whiskey-rocks.svg rename to apps/client/src/static/icons/regular/glass-whiskey-rocks.svg diff --git a/src/static/icons/regular/glass-whiskey.svg b/apps/client/src/static/icons/regular/glass-whiskey.svg similarity index 100% rename from src/static/icons/regular/glass-whiskey.svg rename to apps/client/src/static/icons/regular/glass-whiskey.svg diff --git a/src/static/icons/regular/glass.svg b/apps/client/src/static/icons/regular/glass.svg similarity index 100% rename from src/static/icons/regular/glass.svg rename to apps/client/src/static/icons/regular/glass.svg diff --git a/src/static/icons/regular/glasses-alt.svg b/apps/client/src/static/icons/regular/glasses-alt.svg similarity index 100% rename from src/static/icons/regular/glasses-alt.svg rename to apps/client/src/static/icons/regular/glasses-alt.svg diff --git a/src/static/icons/regular/glasses.svg b/apps/client/src/static/icons/regular/glasses.svg similarity index 100% rename from src/static/icons/regular/glasses.svg rename to apps/client/src/static/icons/regular/glasses.svg diff --git a/src/static/icons/regular/globe-africa.svg b/apps/client/src/static/icons/regular/globe-africa.svg similarity index 100% rename from src/static/icons/regular/globe-africa.svg rename to apps/client/src/static/icons/regular/globe-africa.svg diff --git a/src/static/icons/regular/globe-americas.svg b/apps/client/src/static/icons/regular/globe-americas.svg similarity index 100% rename from src/static/icons/regular/globe-americas.svg rename to apps/client/src/static/icons/regular/globe-americas.svg diff --git a/src/static/icons/regular/globe-asia.svg b/apps/client/src/static/icons/regular/globe-asia.svg similarity index 100% rename from src/static/icons/regular/globe-asia.svg rename to apps/client/src/static/icons/regular/globe-asia.svg diff --git a/src/static/icons/regular/globe-europe.svg b/apps/client/src/static/icons/regular/globe-europe.svg similarity index 100% rename from src/static/icons/regular/globe-europe.svg rename to apps/client/src/static/icons/regular/globe-europe.svg diff --git a/src/static/icons/regular/globe-snow.svg b/apps/client/src/static/icons/regular/globe-snow.svg similarity index 100% rename from src/static/icons/regular/globe-snow.svg rename to apps/client/src/static/icons/regular/globe-snow.svg diff --git a/src/static/icons/regular/globe-stand.svg b/apps/client/src/static/icons/regular/globe-stand.svg similarity index 100% rename from src/static/icons/regular/globe-stand.svg rename to apps/client/src/static/icons/regular/globe-stand.svg diff --git a/src/static/icons/regular/globe.svg b/apps/client/src/static/icons/regular/globe.svg similarity index 100% rename from src/static/icons/regular/globe.svg rename to apps/client/src/static/icons/regular/globe.svg diff --git a/src/static/icons/regular/golf-ball.svg b/apps/client/src/static/icons/regular/golf-ball.svg similarity index 100% rename from src/static/icons/regular/golf-ball.svg rename to apps/client/src/static/icons/regular/golf-ball.svg diff --git a/src/static/icons/regular/golf-club.svg b/apps/client/src/static/icons/regular/golf-club.svg similarity index 100% rename from src/static/icons/regular/golf-club.svg rename to apps/client/src/static/icons/regular/golf-club.svg diff --git a/src/static/icons/regular/gopuram.svg b/apps/client/src/static/icons/regular/gopuram.svg similarity index 100% rename from src/static/icons/regular/gopuram.svg rename to apps/client/src/static/icons/regular/gopuram.svg diff --git a/src/static/icons/regular/graduation-cap.svg b/apps/client/src/static/icons/regular/graduation-cap.svg similarity index 100% rename from src/static/icons/regular/graduation-cap.svg rename to apps/client/src/static/icons/regular/graduation-cap.svg diff --git a/src/static/icons/regular/gramophone.svg b/apps/client/src/static/icons/regular/gramophone.svg similarity index 100% rename from src/static/icons/regular/gramophone.svg rename to apps/client/src/static/icons/regular/gramophone.svg diff --git a/src/static/icons/regular/greater-than-equal.svg b/apps/client/src/static/icons/regular/greater-than-equal.svg similarity index 100% rename from src/static/icons/regular/greater-than-equal.svg rename to apps/client/src/static/icons/regular/greater-than-equal.svg diff --git a/src/static/icons/regular/greater-than.svg b/apps/client/src/static/icons/regular/greater-than.svg similarity index 100% rename from src/static/icons/regular/greater-than.svg rename to apps/client/src/static/icons/regular/greater-than.svg diff --git a/src/static/icons/regular/grimace.svg b/apps/client/src/static/icons/regular/grimace.svg similarity index 100% rename from src/static/icons/regular/grimace.svg rename to apps/client/src/static/icons/regular/grimace.svg diff --git a/src/static/icons/regular/grin-alt.svg b/apps/client/src/static/icons/regular/grin-alt.svg similarity index 100% rename from src/static/icons/regular/grin-alt.svg rename to apps/client/src/static/icons/regular/grin-alt.svg diff --git a/src/static/icons/regular/grin-beam-sweat.svg b/apps/client/src/static/icons/regular/grin-beam-sweat.svg similarity index 100% rename from src/static/icons/regular/grin-beam-sweat.svg rename to apps/client/src/static/icons/regular/grin-beam-sweat.svg diff --git a/src/static/icons/regular/grin-beam.svg b/apps/client/src/static/icons/regular/grin-beam.svg similarity index 100% rename from src/static/icons/regular/grin-beam.svg rename to apps/client/src/static/icons/regular/grin-beam.svg diff --git a/src/static/icons/regular/grin-hearts.svg b/apps/client/src/static/icons/regular/grin-hearts.svg similarity index 100% rename from src/static/icons/regular/grin-hearts.svg rename to apps/client/src/static/icons/regular/grin-hearts.svg diff --git a/src/static/icons/regular/grin-squint-tears.svg b/apps/client/src/static/icons/regular/grin-squint-tears.svg similarity index 100% rename from src/static/icons/regular/grin-squint-tears.svg rename to apps/client/src/static/icons/regular/grin-squint-tears.svg diff --git a/src/static/icons/regular/grin-squint.svg b/apps/client/src/static/icons/regular/grin-squint.svg similarity index 100% rename from src/static/icons/regular/grin-squint.svg rename to apps/client/src/static/icons/regular/grin-squint.svg diff --git a/src/static/icons/regular/grin-stars.svg b/apps/client/src/static/icons/regular/grin-stars.svg similarity index 100% rename from src/static/icons/regular/grin-stars.svg rename to apps/client/src/static/icons/regular/grin-stars.svg diff --git a/src/static/icons/regular/grin-tears.svg b/apps/client/src/static/icons/regular/grin-tears.svg similarity index 100% rename from src/static/icons/regular/grin-tears.svg rename to apps/client/src/static/icons/regular/grin-tears.svg diff --git a/src/static/icons/regular/grin-tongue-squint.svg b/apps/client/src/static/icons/regular/grin-tongue-squint.svg similarity index 100% rename from src/static/icons/regular/grin-tongue-squint.svg rename to apps/client/src/static/icons/regular/grin-tongue-squint.svg diff --git a/src/static/icons/regular/grin-tongue-wink.svg b/apps/client/src/static/icons/regular/grin-tongue-wink.svg similarity index 100% rename from src/static/icons/regular/grin-tongue-wink.svg rename to apps/client/src/static/icons/regular/grin-tongue-wink.svg diff --git a/src/static/icons/regular/grin-tongue.svg b/apps/client/src/static/icons/regular/grin-tongue.svg similarity index 100% rename from src/static/icons/regular/grin-tongue.svg rename to apps/client/src/static/icons/regular/grin-tongue.svg diff --git a/src/static/icons/regular/grin-wink.svg b/apps/client/src/static/icons/regular/grin-wink.svg similarity index 100% rename from src/static/icons/regular/grin-wink.svg rename to apps/client/src/static/icons/regular/grin-wink.svg diff --git a/src/static/icons/regular/grin.svg b/apps/client/src/static/icons/regular/grin.svg similarity index 100% rename from src/static/icons/regular/grin.svg rename to apps/client/src/static/icons/regular/grin.svg diff --git a/src/static/icons/regular/grip-horizontal.svg b/apps/client/src/static/icons/regular/grip-horizontal.svg similarity index 100% rename from src/static/icons/regular/grip-horizontal.svg rename to apps/client/src/static/icons/regular/grip-horizontal.svg diff --git a/src/static/icons/regular/grip-lines-vertical.svg b/apps/client/src/static/icons/regular/grip-lines-vertical.svg similarity index 100% rename from src/static/icons/regular/grip-lines-vertical.svg rename to apps/client/src/static/icons/regular/grip-lines-vertical.svg diff --git a/src/static/icons/regular/grip-lines.svg b/apps/client/src/static/icons/regular/grip-lines.svg similarity index 100% rename from src/static/icons/regular/grip-lines.svg rename to apps/client/src/static/icons/regular/grip-lines.svg diff --git a/src/static/icons/regular/grip-vertical.svg b/apps/client/src/static/icons/regular/grip-vertical.svg similarity index 100% rename from src/static/icons/regular/grip-vertical.svg rename to apps/client/src/static/icons/regular/grip-vertical.svg diff --git a/src/static/icons/regular/guitar-electric.svg b/apps/client/src/static/icons/regular/guitar-electric.svg similarity index 100% rename from src/static/icons/regular/guitar-electric.svg rename to apps/client/src/static/icons/regular/guitar-electric.svg diff --git a/src/static/icons/regular/guitar.svg b/apps/client/src/static/icons/regular/guitar.svg similarity index 100% rename from src/static/icons/regular/guitar.svg rename to apps/client/src/static/icons/regular/guitar.svg diff --git a/src/static/icons/regular/guitars.svg b/apps/client/src/static/icons/regular/guitars.svg similarity index 100% rename from src/static/icons/regular/guitars.svg rename to apps/client/src/static/icons/regular/guitars.svg diff --git a/src/static/icons/regular/h-square.svg b/apps/client/src/static/icons/regular/h-square.svg similarity index 100% rename from src/static/icons/regular/h-square.svg rename to apps/client/src/static/icons/regular/h-square.svg diff --git a/src/static/icons/regular/h1.svg b/apps/client/src/static/icons/regular/h1.svg similarity index 100% rename from src/static/icons/regular/h1.svg rename to apps/client/src/static/icons/regular/h1.svg diff --git a/src/static/icons/regular/h2.svg b/apps/client/src/static/icons/regular/h2.svg similarity index 100% rename from src/static/icons/regular/h2.svg rename to apps/client/src/static/icons/regular/h2.svg diff --git a/src/static/icons/regular/h3.svg b/apps/client/src/static/icons/regular/h3.svg similarity index 100% rename from src/static/icons/regular/h3.svg rename to apps/client/src/static/icons/regular/h3.svg diff --git a/src/static/icons/regular/h4.svg b/apps/client/src/static/icons/regular/h4.svg similarity index 100% rename from src/static/icons/regular/h4.svg rename to apps/client/src/static/icons/regular/h4.svg diff --git a/src/static/icons/regular/hamburger.svg b/apps/client/src/static/icons/regular/hamburger.svg similarity index 100% rename from src/static/icons/regular/hamburger.svg rename to apps/client/src/static/icons/regular/hamburger.svg diff --git a/src/static/icons/regular/hammer-war.svg b/apps/client/src/static/icons/regular/hammer-war.svg similarity index 100% rename from src/static/icons/regular/hammer-war.svg rename to apps/client/src/static/icons/regular/hammer-war.svg diff --git a/src/static/icons/regular/hammer.svg b/apps/client/src/static/icons/regular/hammer.svg similarity index 100% rename from src/static/icons/regular/hammer.svg rename to apps/client/src/static/icons/regular/hammer.svg diff --git a/src/static/icons/regular/hamsa.svg b/apps/client/src/static/icons/regular/hamsa.svg similarity index 100% rename from src/static/icons/regular/hamsa.svg rename to apps/client/src/static/icons/regular/hamsa.svg diff --git a/src/static/icons/regular/hand-heart.svg b/apps/client/src/static/icons/regular/hand-heart.svg similarity index 100% rename from src/static/icons/regular/hand-heart.svg rename to apps/client/src/static/icons/regular/hand-heart.svg diff --git a/src/static/icons/regular/hand-holding-box.svg b/apps/client/src/static/icons/regular/hand-holding-box.svg similarity index 100% rename from src/static/icons/regular/hand-holding-box.svg rename to apps/client/src/static/icons/regular/hand-holding-box.svg diff --git a/src/static/icons/regular/hand-holding-heart.svg b/apps/client/src/static/icons/regular/hand-holding-heart.svg similarity index 100% rename from src/static/icons/regular/hand-holding-heart.svg rename to apps/client/src/static/icons/regular/hand-holding-heart.svg diff --git a/src/static/icons/regular/hand-holding-magic.svg b/apps/client/src/static/icons/regular/hand-holding-magic.svg similarity index 100% rename from src/static/icons/regular/hand-holding-magic.svg rename to apps/client/src/static/icons/regular/hand-holding-magic.svg diff --git a/src/static/icons/regular/hand-holding-seedling.svg b/apps/client/src/static/icons/regular/hand-holding-seedling.svg similarity index 100% rename from src/static/icons/regular/hand-holding-seedling.svg rename to apps/client/src/static/icons/regular/hand-holding-seedling.svg diff --git a/src/static/icons/regular/hand-holding-usd.svg b/apps/client/src/static/icons/regular/hand-holding-usd.svg similarity index 100% rename from src/static/icons/regular/hand-holding-usd.svg rename to apps/client/src/static/icons/regular/hand-holding-usd.svg diff --git a/src/static/icons/regular/hand-holding-water.svg b/apps/client/src/static/icons/regular/hand-holding-water.svg similarity index 100% rename from src/static/icons/regular/hand-holding-water.svg rename to apps/client/src/static/icons/regular/hand-holding-water.svg diff --git a/src/static/icons/regular/hand-holding.svg b/apps/client/src/static/icons/regular/hand-holding.svg similarity index 100% rename from src/static/icons/regular/hand-holding.svg rename to apps/client/src/static/icons/regular/hand-holding.svg diff --git a/src/static/icons/regular/hand-lizard.svg b/apps/client/src/static/icons/regular/hand-lizard.svg similarity index 100% rename from src/static/icons/regular/hand-lizard.svg rename to apps/client/src/static/icons/regular/hand-lizard.svg diff --git a/src/static/icons/regular/hand-middle-finger.svg b/apps/client/src/static/icons/regular/hand-middle-finger.svg similarity index 100% rename from src/static/icons/regular/hand-middle-finger.svg rename to apps/client/src/static/icons/regular/hand-middle-finger.svg diff --git a/src/static/icons/regular/hand-paper.svg b/apps/client/src/static/icons/regular/hand-paper.svg similarity index 100% rename from src/static/icons/regular/hand-paper.svg rename to apps/client/src/static/icons/regular/hand-paper.svg diff --git a/src/static/icons/regular/hand-peace.svg b/apps/client/src/static/icons/regular/hand-peace.svg similarity index 100% rename from src/static/icons/regular/hand-peace.svg rename to apps/client/src/static/icons/regular/hand-peace.svg diff --git a/src/static/icons/regular/hand-point-down.svg b/apps/client/src/static/icons/regular/hand-point-down.svg similarity index 100% rename from src/static/icons/regular/hand-point-down.svg rename to apps/client/src/static/icons/regular/hand-point-down.svg diff --git a/src/static/icons/regular/hand-point-left.svg b/apps/client/src/static/icons/regular/hand-point-left.svg similarity index 100% rename from src/static/icons/regular/hand-point-left.svg rename to apps/client/src/static/icons/regular/hand-point-left.svg diff --git a/src/static/icons/regular/hand-point-right.svg b/apps/client/src/static/icons/regular/hand-point-right.svg similarity index 100% rename from src/static/icons/regular/hand-point-right.svg rename to apps/client/src/static/icons/regular/hand-point-right.svg diff --git a/src/static/icons/regular/hand-point-up.svg b/apps/client/src/static/icons/regular/hand-point-up.svg similarity index 100% rename from src/static/icons/regular/hand-point-up.svg rename to apps/client/src/static/icons/regular/hand-point-up.svg diff --git a/src/static/icons/regular/hand-pointer.svg b/apps/client/src/static/icons/regular/hand-pointer.svg similarity index 100% rename from src/static/icons/regular/hand-pointer.svg rename to apps/client/src/static/icons/regular/hand-pointer.svg diff --git a/src/static/icons/regular/hand-receiving.svg b/apps/client/src/static/icons/regular/hand-receiving.svg similarity index 100% rename from src/static/icons/regular/hand-receiving.svg rename to apps/client/src/static/icons/regular/hand-receiving.svg diff --git a/src/static/icons/regular/hand-rock.svg b/apps/client/src/static/icons/regular/hand-rock.svg similarity index 100% rename from src/static/icons/regular/hand-rock.svg rename to apps/client/src/static/icons/regular/hand-rock.svg diff --git a/src/static/icons/regular/hand-scissors.svg b/apps/client/src/static/icons/regular/hand-scissors.svg similarity index 100% rename from src/static/icons/regular/hand-scissors.svg rename to apps/client/src/static/icons/regular/hand-scissors.svg diff --git a/src/static/icons/regular/hand-spock.svg b/apps/client/src/static/icons/regular/hand-spock.svg similarity index 100% rename from src/static/icons/regular/hand-spock.svg rename to apps/client/src/static/icons/regular/hand-spock.svg diff --git a/src/static/icons/regular/hands-heart.svg b/apps/client/src/static/icons/regular/hands-heart.svg similarity index 100% rename from src/static/icons/regular/hands-heart.svg rename to apps/client/src/static/icons/regular/hands-heart.svg diff --git a/src/static/icons/regular/hands-helping.svg b/apps/client/src/static/icons/regular/hands-helping.svg similarity index 100% rename from src/static/icons/regular/hands-helping.svg rename to apps/client/src/static/icons/regular/hands-helping.svg diff --git a/src/static/icons/regular/hands-usd.svg b/apps/client/src/static/icons/regular/hands-usd.svg similarity index 100% rename from src/static/icons/regular/hands-usd.svg rename to apps/client/src/static/icons/regular/hands-usd.svg diff --git a/src/static/icons/regular/hands.svg b/apps/client/src/static/icons/regular/hands.svg similarity index 100% rename from src/static/icons/regular/hands.svg rename to apps/client/src/static/icons/regular/hands.svg diff --git a/src/static/icons/regular/handshake-alt.svg b/apps/client/src/static/icons/regular/handshake-alt.svg similarity index 100% rename from src/static/icons/regular/handshake-alt.svg rename to apps/client/src/static/icons/regular/handshake-alt.svg diff --git a/src/static/icons/regular/handshake.svg b/apps/client/src/static/icons/regular/handshake.svg similarity index 100% rename from src/static/icons/regular/handshake.svg rename to apps/client/src/static/icons/regular/handshake.svg diff --git a/src/static/icons/regular/hanukiah.svg b/apps/client/src/static/icons/regular/hanukiah.svg similarity index 100% rename from src/static/icons/regular/hanukiah.svg rename to apps/client/src/static/icons/regular/hanukiah.svg diff --git a/src/static/icons/regular/hard-hat.svg b/apps/client/src/static/icons/regular/hard-hat.svg similarity index 100% rename from src/static/icons/regular/hard-hat.svg rename to apps/client/src/static/icons/regular/hard-hat.svg diff --git a/src/static/icons/regular/hashtag.svg b/apps/client/src/static/icons/regular/hashtag.svg similarity index 100% rename from src/static/icons/regular/hashtag.svg rename to apps/client/src/static/icons/regular/hashtag.svg diff --git a/src/static/icons/regular/hat-chef.svg b/apps/client/src/static/icons/regular/hat-chef.svg similarity index 100% rename from src/static/icons/regular/hat-chef.svg rename to apps/client/src/static/icons/regular/hat-chef.svg diff --git a/src/static/icons/regular/hat-cowboy-side.svg b/apps/client/src/static/icons/regular/hat-cowboy-side.svg similarity index 100% rename from src/static/icons/regular/hat-cowboy-side.svg rename to apps/client/src/static/icons/regular/hat-cowboy-side.svg diff --git a/src/static/icons/regular/hat-cowboy.svg b/apps/client/src/static/icons/regular/hat-cowboy.svg similarity index 100% rename from src/static/icons/regular/hat-cowboy.svg rename to apps/client/src/static/icons/regular/hat-cowboy.svg diff --git a/src/static/icons/regular/hat-santa.svg b/apps/client/src/static/icons/regular/hat-santa.svg similarity index 100% rename from src/static/icons/regular/hat-santa.svg rename to apps/client/src/static/icons/regular/hat-santa.svg diff --git a/src/static/icons/regular/hat-winter.svg b/apps/client/src/static/icons/regular/hat-winter.svg similarity index 100% rename from src/static/icons/regular/hat-winter.svg rename to apps/client/src/static/icons/regular/hat-winter.svg diff --git a/src/static/icons/regular/hat-witch.svg b/apps/client/src/static/icons/regular/hat-witch.svg similarity index 100% rename from src/static/icons/regular/hat-witch.svg rename to apps/client/src/static/icons/regular/hat-witch.svg diff --git a/src/static/icons/regular/hat-wizard.svg b/apps/client/src/static/icons/regular/hat-wizard.svg similarity index 100% rename from src/static/icons/regular/hat-wizard.svg rename to apps/client/src/static/icons/regular/hat-wizard.svg diff --git a/src/static/icons/regular/hdd.svg b/apps/client/src/static/icons/regular/hdd.svg similarity index 100% rename from src/static/icons/regular/hdd.svg rename to apps/client/src/static/icons/regular/hdd.svg diff --git a/src/static/icons/regular/head-side-brain.svg b/apps/client/src/static/icons/regular/head-side-brain.svg similarity index 100% rename from src/static/icons/regular/head-side-brain.svg rename to apps/client/src/static/icons/regular/head-side-brain.svg diff --git a/src/static/icons/regular/head-side-headphones.svg b/apps/client/src/static/icons/regular/head-side-headphones.svg similarity index 100% rename from src/static/icons/regular/head-side-headphones.svg rename to apps/client/src/static/icons/regular/head-side-headphones.svg diff --git a/src/static/icons/regular/head-side-medical.svg b/apps/client/src/static/icons/regular/head-side-medical.svg similarity index 100% rename from src/static/icons/regular/head-side-medical.svg rename to apps/client/src/static/icons/regular/head-side-medical.svg diff --git a/src/static/icons/regular/head-side.svg b/apps/client/src/static/icons/regular/head-side.svg similarity index 100% rename from src/static/icons/regular/head-side.svg rename to apps/client/src/static/icons/regular/head-side.svg diff --git a/src/static/icons/regular/head-vr.svg b/apps/client/src/static/icons/regular/head-vr.svg similarity index 100% rename from src/static/icons/regular/head-vr.svg rename to apps/client/src/static/icons/regular/head-vr.svg diff --git a/src/static/icons/regular/heading.svg b/apps/client/src/static/icons/regular/heading.svg similarity index 100% rename from src/static/icons/regular/heading.svg rename to apps/client/src/static/icons/regular/heading.svg diff --git a/src/static/icons/regular/headphones-alt.svg b/apps/client/src/static/icons/regular/headphones-alt.svg similarity index 100% rename from src/static/icons/regular/headphones-alt.svg rename to apps/client/src/static/icons/regular/headphones-alt.svg diff --git a/src/static/icons/regular/headphones.svg b/apps/client/src/static/icons/regular/headphones.svg similarity index 100% rename from src/static/icons/regular/headphones.svg rename to apps/client/src/static/icons/regular/headphones.svg diff --git a/src/static/icons/regular/headset.svg b/apps/client/src/static/icons/regular/headset.svg similarity index 100% rename from src/static/icons/regular/headset.svg rename to apps/client/src/static/icons/regular/headset.svg diff --git a/src/static/icons/regular/heart-broken.svg b/apps/client/src/static/icons/regular/heart-broken.svg similarity index 100% rename from src/static/icons/regular/heart-broken.svg rename to apps/client/src/static/icons/regular/heart-broken.svg diff --git a/src/static/icons/regular/heart-circle.svg b/apps/client/src/static/icons/regular/heart-circle.svg similarity index 100% rename from src/static/icons/regular/heart-circle.svg rename to apps/client/src/static/icons/regular/heart-circle.svg diff --git a/src/static/icons/regular/heart-rate.svg b/apps/client/src/static/icons/regular/heart-rate.svg similarity index 100% rename from src/static/icons/regular/heart-rate.svg rename to apps/client/src/static/icons/regular/heart-rate.svg diff --git a/src/static/icons/regular/heart-square.svg b/apps/client/src/static/icons/regular/heart-square.svg similarity index 100% rename from src/static/icons/regular/heart-square.svg rename to apps/client/src/static/icons/regular/heart-square.svg diff --git a/src/static/icons/regular/heart.svg b/apps/client/src/static/icons/regular/heart.svg similarity index 100% rename from src/static/icons/regular/heart.svg rename to apps/client/src/static/icons/regular/heart.svg diff --git a/src/static/icons/regular/heartbeat.svg b/apps/client/src/static/icons/regular/heartbeat.svg similarity index 100% rename from src/static/icons/regular/heartbeat.svg rename to apps/client/src/static/icons/regular/heartbeat.svg diff --git a/src/static/icons/regular/heat.svg b/apps/client/src/static/icons/regular/heat.svg similarity index 100% rename from src/static/icons/regular/heat.svg rename to apps/client/src/static/icons/regular/heat.svg diff --git a/src/static/icons/regular/helicopter.svg b/apps/client/src/static/icons/regular/helicopter.svg similarity index 100% rename from src/static/icons/regular/helicopter.svg rename to apps/client/src/static/icons/regular/helicopter.svg diff --git a/src/static/icons/regular/helmet-battle.svg b/apps/client/src/static/icons/regular/helmet-battle.svg similarity index 100% rename from src/static/icons/regular/helmet-battle.svg rename to apps/client/src/static/icons/regular/helmet-battle.svg diff --git a/src/static/icons/regular/hexagon.svg b/apps/client/src/static/icons/regular/hexagon.svg similarity index 100% rename from src/static/icons/regular/hexagon.svg rename to apps/client/src/static/icons/regular/hexagon.svg diff --git a/src/static/icons/regular/highlighter.svg b/apps/client/src/static/icons/regular/highlighter.svg similarity index 100% rename from src/static/icons/regular/highlighter.svg rename to apps/client/src/static/icons/regular/highlighter.svg diff --git a/src/static/icons/regular/hiking.svg b/apps/client/src/static/icons/regular/hiking.svg similarity index 100% rename from src/static/icons/regular/hiking.svg rename to apps/client/src/static/icons/regular/hiking.svg diff --git a/src/static/icons/regular/hippo.svg b/apps/client/src/static/icons/regular/hippo.svg similarity index 100% rename from src/static/icons/regular/hippo.svg rename to apps/client/src/static/icons/regular/hippo.svg diff --git a/src/static/icons/regular/history.svg b/apps/client/src/static/icons/regular/history.svg similarity index 100% rename from src/static/icons/regular/history.svg rename to apps/client/src/static/icons/regular/history.svg diff --git a/src/static/icons/regular/hockey-mask.svg b/apps/client/src/static/icons/regular/hockey-mask.svg similarity index 100% rename from src/static/icons/regular/hockey-mask.svg rename to apps/client/src/static/icons/regular/hockey-mask.svg diff --git a/src/static/icons/regular/hockey-puck.svg b/apps/client/src/static/icons/regular/hockey-puck.svg similarity index 100% rename from src/static/icons/regular/hockey-puck.svg rename to apps/client/src/static/icons/regular/hockey-puck.svg diff --git a/src/static/icons/regular/hockey-sticks.svg b/apps/client/src/static/icons/regular/hockey-sticks.svg similarity index 100% rename from src/static/icons/regular/hockey-sticks.svg rename to apps/client/src/static/icons/regular/hockey-sticks.svg diff --git a/src/static/icons/regular/holly-berry.svg b/apps/client/src/static/icons/regular/holly-berry.svg similarity index 100% rename from src/static/icons/regular/holly-berry.svg rename to apps/client/src/static/icons/regular/holly-berry.svg diff --git a/src/static/icons/regular/home-alt.svg b/apps/client/src/static/icons/regular/home-alt.svg similarity index 100% rename from src/static/icons/regular/home-alt.svg rename to apps/client/src/static/icons/regular/home-alt.svg diff --git a/src/static/icons/regular/home-heart.svg b/apps/client/src/static/icons/regular/home-heart.svg similarity index 100% rename from src/static/icons/regular/home-heart.svg rename to apps/client/src/static/icons/regular/home-heart.svg diff --git a/src/static/icons/regular/home-lg-alt.svg b/apps/client/src/static/icons/regular/home-lg-alt.svg similarity index 100% rename from src/static/icons/regular/home-lg-alt.svg rename to apps/client/src/static/icons/regular/home-lg-alt.svg diff --git a/src/static/icons/regular/home-lg.svg b/apps/client/src/static/icons/regular/home-lg.svg similarity index 100% rename from src/static/icons/regular/home-lg.svg rename to apps/client/src/static/icons/regular/home-lg.svg diff --git a/src/static/icons/regular/home.svg b/apps/client/src/static/icons/regular/home.svg similarity index 100% rename from src/static/icons/regular/home.svg rename to apps/client/src/static/icons/regular/home.svg diff --git a/src/static/icons/regular/hood-cloak.svg b/apps/client/src/static/icons/regular/hood-cloak.svg similarity index 100% rename from src/static/icons/regular/hood-cloak.svg rename to apps/client/src/static/icons/regular/hood-cloak.svg diff --git a/src/static/icons/regular/horizontal-rule.svg b/apps/client/src/static/icons/regular/horizontal-rule.svg similarity index 100% rename from src/static/icons/regular/horizontal-rule.svg rename to apps/client/src/static/icons/regular/horizontal-rule.svg diff --git a/src/static/icons/regular/horse-head.svg b/apps/client/src/static/icons/regular/horse-head.svg similarity index 100% rename from src/static/icons/regular/horse-head.svg rename to apps/client/src/static/icons/regular/horse-head.svg diff --git a/src/static/icons/regular/horse-saddle.svg b/apps/client/src/static/icons/regular/horse-saddle.svg similarity index 100% rename from src/static/icons/regular/horse-saddle.svg rename to apps/client/src/static/icons/regular/horse-saddle.svg diff --git a/src/static/icons/regular/horse.svg b/apps/client/src/static/icons/regular/horse.svg similarity index 100% rename from src/static/icons/regular/horse.svg rename to apps/client/src/static/icons/regular/horse.svg diff --git a/src/static/icons/regular/hospital-alt.svg b/apps/client/src/static/icons/regular/hospital-alt.svg similarity index 100% rename from src/static/icons/regular/hospital-alt.svg rename to apps/client/src/static/icons/regular/hospital-alt.svg diff --git a/src/static/icons/regular/hospital-symbol.svg b/apps/client/src/static/icons/regular/hospital-symbol.svg similarity index 100% rename from src/static/icons/regular/hospital-symbol.svg rename to apps/client/src/static/icons/regular/hospital-symbol.svg diff --git a/src/static/icons/regular/hospital-user.svg b/apps/client/src/static/icons/regular/hospital-user.svg similarity index 100% rename from src/static/icons/regular/hospital-user.svg rename to apps/client/src/static/icons/regular/hospital-user.svg diff --git a/src/static/icons/regular/hospital.svg b/apps/client/src/static/icons/regular/hospital.svg similarity index 100% rename from src/static/icons/regular/hospital.svg rename to apps/client/src/static/icons/regular/hospital.svg diff --git a/src/static/icons/regular/hospitals.svg b/apps/client/src/static/icons/regular/hospitals.svg similarity index 100% rename from src/static/icons/regular/hospitals.svg rename to apps/client/src/static/icons/regular/hospitals.svg diff --git a/src/static/icons/regular/hot-tub.svg b/apps/client/src/static/icons/regular/hot-tub.svg similarity index 100% rename from src/static/icons/regular/hot-tub.svg rename to apps/client/src/static/icons/regular/hot-tub.svg diff --git a/src/static/icons/regular/hotdog.svg b/apps/client/src/static/icons/regular/hotdog.svg similarity index 100% rename from src/static/icons/regular/hotdog.svg rename to apps/client/src/static/icons/regular/hotdog.svg diff --git a/src/static/icons/regular/hotel.svg b/apps/client/src/static/icons/regular/hotel.svg similarity index 100% rename from src/static/icons/regular/hotel.svg rename to apps/client/src/static/icons/regular/hotel.svg diff --git a/src/static/icons/regular/hourglass-end.svg b/apps/client/src/static/icons/regular/hourglass-end.svg similarity index 100% rename from src/static/icons/regular/hourglass-end.svg rename to apps/client/src/static/icons/regular/hourglass-end.svg diff --git a/src/static/icons/regular/hourglass-half.svg b/apps/client/src/static/icons/regular/hourglass-half.svg similarity index 100% rename from src/static/icons/regular/hourglass-half.svg rename to apps/client/src/static/icons/regular/hourglass-half.svg diff --git a/src/static/icons/regular/hourglass-start.svg b/apps/client/src/static/icons/regular/hourglass-start.svg similarity index 100% rename from src/static/icons/regular/hourglass-start.svg rename to apps/client/src/static/icons/regular/hourglass-start.svg diff --git a/src/static/icons/regular/hourglass.svg b/apps/client/src/static/icons/regular/hourglass.svg similarity index 100% rename from src/static/icons/regular/hourglass.svg rename to apps/client/src/static/icons/regular/hourglass.svg diff --git a/src/static/icons/regular/house-damage.svg b/apps/client/src/static/icons/regular/house-damage.svg similarity index 100% rename from src/static/icons/regular/house-damage.svg rename to apps/client/src/static/icons/regular/house-damage.svg diff --git a/src/static/icons/regular/house-day.svg b/apps/client/src/static/icons/regular/house-day.svg similarity index 100% rename from src/static/icons/regular/house-day.svg rename to apps/client/src/static/icons/regular/house-day.svg diff --git a/src/static/icons/regular/house-flood.svg b/apps/client/src/static/icons/regular/house-flood.svg similarity index 100% rename from src/static/icons/regular/house-flood.svg rename to apps/client/src/static/icons/regular/house-flood.svg diff --git a/src/static/icons/regular/house-leave.svg b/apps/client/src/static/icons/regular/house-leave.svg similarity index 100% rename from src/static/icons/regular/house-leave.svg rename to apps/client/src/static/icons/regular/house-leave.svg diff --git a/src/static/icons/regular/house-night.svg b/apps/client/src/static/icons/regular/house-night.svg similarity index 100% rename from src/static/icons/regular/house-night.svg rename to apps/client/src/static/icons/regular/house-night.svg diff --git a/src/static/icons/regular/house-return.svg b/apps/client/src/static/icons/regular/house-return.svg similarity index 100% rename from src/static/icons/regular/house-return.svg rename to apps/client/src/static/icons/regular/house-return.svg diff --git a/src/static/icons/regular/house-signal.svg b/apps/client/src/static/icons/regular/house-signal.svg similarity index 100% rename from src/static/icons/regular/house-signal.svg rename to apps/client/src/static/icons/regular/house-signal.svg diff --git a/src/static/icons/regular/house.svg b/apps/client/src/static/icons/regular/house.svg similarity index 100% rename from src/static/icons/regular/house.svg rename to apps/client/src/static/icons/regular/house.svg diff --git a/src/static/icons/regular/hryvnia.svg b/apps/client/src/static/icons/regular/hryvnia.svg similarity index 100% rename from src/static/icons/regular/hryvnia.svg rename to apps/client/src/static/icons/regular/hryvnia.svg diff --git a/src/static/icons/regular/humidity.svg b/apps/client/src/static/icons/regular/humidity.svg similarity index 100% rename from src/static/icons/regular/humidity.svg rename to apps/client/src/static/icons/regular/humidity.svg diff --git a/src/static/icons/regular/hurricane.svg b/apps/client/src/static/icons/regular/hurricane.svg similarity index 100% rename from src/static/icons/regular/hurricane.svg rename to apps/client/src/static/icons/regular/hurricane.svg diff --git a/src/static/icons/regular/i-cursor.svg b/apps/client/src/static/icons/regular/i-cursor.svg similarity index 100% rename from src/static/icons/regular/i-cursor.svg rename to apps/client/src/static/icons/regular/i-cursor.svg diff --git a/src/static/icons/regular/ice-cream.svg b/apps/client/src/static/icons/regular/ice-cream.svg similarity index 100% rename from src/static/icons/regular/ice-cream.svg rename to apps/client/src/static/icons/regular/ice-cream.svg diff --git a/src/static/icons/regular/ice-skate.svg b/apps/client/src/static/icons/regular/ice-skate.svg similarity index 100% rename from src/static/icons/regular/ice-skate.svg rename to apps/client/src/static/icons/regular/ice-skate.svg diff --git a/src/static/icons/regular/icicles.svg b/apps/client/src/static/icons/regular/icicles.svg similarity index 100% rename from src/static/icons/regular/icicles.svg rename to apps/client/src/static/icons/regular/icicles.svg diff --git a/src/static/icons/regular/icons-alt.svg b/apps/client/src/static/icons/regular/icons-alt.svg similarity index 100% rename from src/static/icons/regular/icons-alt.svg rename to apps/client/src/static/icons/regular/icons-alt.svg diff --git a/src/static/icons/regular/icons.svg b/apps/client/src/static/icons/regular/icons.svg similarity index 100% rename from src/static/icons/regular/icons.svg rename to apps/client/src/static/icons/regular/icons.svg diff --git a/src/static/icons/regular/id-badge.svg b/apps/client/src/static/icons/regular/id-badge.svg similarity index 100% rename from src/static/icons/regular/id-badge.svg rename to apps/client/src/static/icons/regular/id-badge.svg diff --git a/src/static/icons/regular/id-card-alt.svg b/apps/client/src/static/icons/regular/id-card-alt.svg similarity index 100% rename from src/static/icons/regular/id-card-alt.svg rename to apps/client/src/static/icons/regular/id-card-alt.svg diff --git a/src/static/icons/regular/id-card.svg b/apps/client/src/static/icons/regular/id-card.svg similarity index 100% rename from src/static/icons/regular/id-card.svg rename to apps/client/src/static/icons/regular/id-card.svg diff --git a/src/static/icons/regular/igloo.svg b/apps/client/src/static/icons/regular/igloo.svg similarity index 100% rename from src/static/icons/regular/igloo.svg rename to apps/client/src/static/icons/regular/igloo.svg diff --git a/src/static/icons/regular/image-polaroid.svg b/apps/client/src/static/icons/regular/image-polaroid.svg similarity index 100% rename from src/static/icons/regular/image-polaroid.svg rename to apps/client/src/static/icons/regular/image-polaroid.svg diff --git a/src/static/icons/regular/image.svg b/apps/client/src/static/icons/regular/image.svg similarity index 100% rename from src/static/icons/regular/image.svg rename to apps/client/src/static/icons/regular/image.svg diff --git a/src/static/icons/regular/images.svg b/apps/client/src/static/icons/regular/images.svg similarity index 100% rename from src/static/icons/regular/images.svg rename to apps/client/src/static/icons/regular/images.svg diff --git a/src/static/icons/regular/inbox-in.svg b/apps/client/src/static/icons/regular/inbox-in.svg similarity index 100% rename from src/static/icons/regular/inbox-in.svg rename to apps/client/src/static/icons/regular/inbox-in.svg diff --git a/src/static/icons/regular/inbox-out.svg b/apps/client/src/static/icons/regular/inbox-out.svg similarity index 100% rename from src/static/icons/regular/inbox-out.svg rename to apps/client/src/static/icons/regular/inbox-out.svg diff --git a/src/static/icons/regular/inbox.svg b/apps/client/src/static/icons/regular/inbox.svg similarity index 100% rename from src/static/icons/regular/inbox.svg rename to apps/client/src/static/icons/regular/inbox.svg diff --git a/src/static/icons/regular/indent.svg b/apps/client/src/static/icons/regular/indent.svg similarity index 100% rename from src/static/icons/regular/indent.svg rename to apps/client/src/static/icons/regular/indent.svg diff --git a/src/static/icons/regular/industry-alt.svg b/apps/client/src/static/icons/regular/industry-alt.svg similarity index 100% rename from src/static/icons/regular/industry-alt.svg rename to apps/client/src/static/icons/regular/industry-alt.svg diff --git a/src/static/icons/regular/industry.svg b/apps/client/src/static/icons/regular/industry.svg similarity index 100% rename from src/static/icons/regular/industry.svg rename to apps/client/src/static/icons/regular/industry.svg diff --git a/src/static/icons/regular/infinity.svg b/apps/client/src/static/icons/regular/infinity.svg similarity index 100% rename from src/static/icons/regular/infinity.svg rename to apps/client/src/static/icons/regular/infinity.svg diff --git a/src/static/icons/regular/info-circle.svg b/apps/client/src/static/icons/regular/info-circle.svg similarity index 100% rename from src/static/icons/regular/info-circle.svg rename to apps/client/src/static/icons/regular/info-circle.svg diff --git a/src/static/icons/regular/info-square.svg b/apps/client/src/static/icons/regular/info-square.svg similarity index 100% rename from src/static/icons/regular/info-square.svg rename to apps/client/src/static/icons/regular/info-square.svg diff --git a/src/static/icons/regular/info.svg b/apps/client/src/static/icons/regular/info.svg similarity index 100% rename from src/static/icons/regular/info.svg rename to apps/client/src/static/icons/regular/info.svg diff --git a/src/static/icons/regular/inhaler.svg b/apps/client/src/static/icons/regular/inhaler.svg similarity index 100% rename from src/static/icons/regular/inhaler.svg rename to apps/client/src/static/icons/regular/inhaler.svg diff --git a/src/static/icons/regular/integral.svg b/apps/client/src/static/icons/regular/integral.svg similarity index 100% rename from src/static/icons/regular/integral.svg rename to apps/client/src/static/icons/regular/integral.svg diff --git a/src/static/icons/regular/intersection.svg b/apps/client/src/static/icons/regular/intersection.svg similarity index 100% rename from src/static/icons/regular/intersection.svg rename to apps/client/src/static/icons/regular/intersection.svg diff --git a/src/static/icons/regular/inventory.svg b/apps/client/src/static/icons/regular/inventory.svg similarity index 100% rename from src/static/icons/regular/inventory.svg rename to apps/client/src/static/icons/regular/inventory.svg diff --git a/src/static/icons/regular/island-tropical.svg b/apps/client/src/static/icons/regular/island-tropical.svg similarity index 100% rename from src/static/icons/regular/island-tropical.svg rename to apps/client/src/static/icons/regular/island-tropical.svg diff --git a/src/static/icons/regular/italic.svg b/apps/client/src/static/icons/regular/italic.svg similarity index 100% rename from src/static/icons/regular/italic.svg rename to apps/client/src/static/icons/regular/italic.svg diff --git a/src/static/icons/regular/jack-o-lantern.svg b/apps/client/src/static/icons/regular/jack-o-lantern.svg similarity index 100% rename from src/static/icons/regular/jack-o-lantern.svg rename to apps/client/src/static/icons/regular/jack-o-lantern.svg diff --git a/src/static/icons/regular/jedi.svg b/apps/client/src/static/icons/regular/jedi.svg similarity index 100% rename from src/static/icons/regular/jedi.svg rename to apps/client/src/static/icons/regular/jedi.svg diff --git a/src/static/icons/regular/joint.svg b/apps/client/src/static/icons/regular/joint.svg similarity index 100% rename from src/static/icons/regular/joint.svg rename to apps/client/src/static/icons/regular/joint.svg diff --git a/src/static/icons/regular/journal-whills.svg b/apps/client/src/static/icons/regular/journal-whills.svg similarity index 100% rename from src/static/icons/regular/journal-whills.svg rename to apps/client/src/static/icons/regular/journal-whills.svg diff --git a/src/static/icons/regular/joystick.svg b/apps/client/src/static/icons/regular/joystick.svg similarity index 100% rename from src/static/icons/regular/joystick.svg rename to apps/client/src/static/icons/regular/joystick.svg diff --git a/src/static/icons/regular/jug.svg b/apps/client/src/static/icons/regular/jug.svg similarity index 100% rename from src/static/icons/regular/jug.svg rename to apps/client/src/static/icons/regular/jug.svg diff --git a/src/static/icons/regular/kaaba.svg b/apps/client/src/static/icons/regular/kaaba.svg similarity index 100% rename from src/static/icons/regular/kaaba.svg rename to apps/client/src/static/icons/regular/kaaba.svg diff --git a/src/static/icons/regular/kazoo.svg b/apps/client/src/static/icons/regular/kazoo.svg similarity index 100% rename from src/static/icons/regular/kazoo.svg rename to apps/client/src/static/icons/regular/kazoo.svg diff --git a/src/static/icons/regular/kerning.svg b/apps/client/src/static/icons/regular/kerning.svg similarity index 100% rename from src/static/icons/regular/kerning.svg rename to apps/client/src/static/icons/regular/kerning.svg diff --git a/src/static/icons/regular/key-skeleton.svg b/apps/client/src/static/icons/regular/key-skeleton.svg similarity index 100% rename from src/static/icons/regular/key-skeleton.svg rename to apps/client/src/static/icons/regular/key-skeleton.svg diff --git a/src/static/icons/regular/key.svg b/apps/client/src/static/icons/regular/key.svg similarity index 100% rename from src/static/icons/regular/key.svg rename to apps/client/src/static/icons/regular/key.svg diff --git a/src/static/icons/regular/keyboard.svg b/apps/client/src/static/icons/regular/keyboard.svg similarity index 100% rename from src/static/icons/regular/keyboard.svg rename to apps/client/src/static/icons/regular/keyboard.svg diff --git a/src/static/icons/regular/keynote.svg b/apps/client/src/static/icons/regular/keynote.svg similarity index 100% rename from src/static/icons/regular/keynote.svg rename to apps/client/src/static/icons/regular/keynote.svg diff --git a/src/static/icons/regular/khanda.svg b/apps/client/src/static/icons/regular/khanda.svg similarity index 100% rename from src/static/icons/regular/khanda.svg rename to apps/client/src/static/icons/regular/khanda.svg diff --git a/src/static/icons/regular/kidneys.svg b/apps/client/src/static/icons/regular/kidneys.svg similarity index 100% rename from src/static/icons/regular/kidneys.svg rename to apps/client/src/static/icons/regular/kidneys.svg diff --git a/src/static/icons/regular/kiss-beam.svg b/apps/client/src/static/icons/regular/kiss-beam.svg similarity index 100% rename from src/static/icons/regular/kiss-beam.svg rename to apps/client/src/static/icons/regular/kiss-beam.svg diff --git a/src/static/icons/regular/kiss-wink-heart.svg b/apps/client/src/static/icons/regular/kiss-wink-heart.svg similarity index 100% rename from src/static/icons/regular/kiss-wink-heart.svg rename to apps/client/src/static/icons/regular/kiss-wink-heart.svg diff --git a/src/static/icons/regular/kiss.svg b/apps/client/src/static/icons/regular/kiss.svg similarity index 100% rename from src/static/icons/regular/kiss.svg rename to apps/client/src/static/icons/regular/kiss.svg diff --git a/src/static/icons/regular/kite.svg b/apps/client/src/static/icons/regular/kite.svg similarity index 100% rename from src/static/icons/regular/kite.svg rename to apps/client/src/static/icons/regular/kite.svg diff --git a/src/static/icons/regular/kiwi-bird.svg b/apps/client/src/static/icons/regular/kiwi-bird.svg similarity index 100% rename from src/static/icons/regular/kiwi-bird.svg rename to apps/client/src/static/icons/regular/kiwi-bird.svg diff --git a/src/static/icons/regular/knife-kitchen.svg b/apps/client/src/static/icons/regular/knife-kitchen.svg similarity index 100% rename from src/static/icons/regular/knife-kitchen.svg rename to apps/client/src/static/icons/regular/knife-kitchen.svg diff --git a/src/static/icons/regular/lambda.svg b/apps/client/src/static/icons/regular/lambda.svg similarity index 100% rename from src/static/icons/regular/lambda.svg rename to apps/client/src/static/icons/regular/lambda.svg diff --git a/src/static/icons/regular/lamp-desk.svg b/apps/client/src/static/icons/regular/lamp-desk.svg similarity index 100% rename from src/static/icons/regular/lamp-desk.svg rename to apps/client/src/static/icons/regular/lamp-desk.svg diff --git a/src/static/icons/regular/lamp-floor.svg b/apps/client/src/static/icons/regular/lamp-floor.svg similarity index 100% rename from src/static/icons/regular/lamp-floor.svg rename to apps/client/src/static/icons/regular/lamp-floor.svg diff --git a/src/static/icons/regular/lamp.svg b/apps/client/src/static/icons/regular/lamp.svg similarity index 100% rename from src/static/icons/regular/lamp.svg rename to apps/client/src/static/icons/regular/lamp.svg diff --git a/src/static/icons/regular/landmark-alt.svg b/apps/client/src/static/icons/regular/landmark-alt.svg similarity index 100% rename from src/static/icons/regular/landmark-alt.svg rename to apps/client/src/static/icons/regular/landmark-alt.svg diff --git a/src/static/icons/regular/landmark.svg b/apps/client/src/static/icons/regular/landmark.svg similarity index 100% rename from src/static/icons/regular/landmark.svg rename to apps/client/src/static/icons/regular/landmark.svg diff --git a/src/static/icons/regular/language.svg b/apps/client/src/static/icons/regular/language.svg similarity index 100% rename from src/static/icons/regular/language.svg rename to apps/client/src/static/icons/regular/language.svg diff --git a/src/static/icons/regular/laptop-code.svg b/apps/client/src/static/icons/regular/laptop-code.svg similarity index 100% rename from src/static/icons/regular/laptop-code.svg rename to apps/client/src/static/icons/regular/laptop-code.svg diff --git a/src/static/icons/regular/laptop-medical.svg b/apps/client/src/static/icons/regular/laptop-medical.svg similarity index 100% rename from src/static/icons/regular/laptop-medical.svg rename to apps/client/src/static/icons/regular/laptop-medical.svg diff --git a/src/static/icons/regular/laptop.svg b/apps/client/src/static/icons/regular/laptop.svg similarity index 100% rename from src/static/icons/regular/laptop.svg rename to apps/client/src/static/icons/regular/laptop.svg diff --git a/src/static/icons/regular/lasso.svg b/apps/client/src/static/icons/regular/lasso.svg similarity index 100% rename from src/static/icons/regular/lasso.svg rename to apps/client/src/static/icons/regular/lasso.svg diff --git a/src/static/icons/regular/laugh-beam.svg b/apps/client/src/static/icons/regular/laugh-beam.svg similarity index 100% rename from src/static/icons/regular/laugh-beam.svg rename to apps/client/src/static/icons/regular/laugh-beam.svg diff --git a/src/static/icons/regular/laugh-squint.svg b/apps/client/src/static/icons/regular/laugh-squint.svg similarity index 100% rename from src/static/icons/regular/laugh-squint.svg rename to apps/client/src/static/icons/regular/laugh-squint.svg diff --git a/src/static/icons/regular/laugh-wink.svg b/apps/client/src/static/icons/regular/laugh-wink.svg similarity index 100% rename from src/static/icons/regular/laugh-wink.svg rename to apps/client/src/static/icons/regular/laugh-wink.svg diff --git a/src/static/icons/regular/laugh.svg b/apps/client/src/static/icons/regular/laugh.svg similarity index 100% rename from src/static/icons/regular/laugh.svg rename to apps/client/src/static/icons/regular/laugh.svg diff --git a/src/static/icons/regular/layer-group.svg b/apps/client/src/static/icons/regular/layer-group.svg similarity index 100% rename from src/static/icons/regular/layer-group.svg rename to apps/client/src/static/icons/regular/layer-group.svg diff --git a/src/static/icons/regular/layer-minus.svg b/apps/client/src/static/icons/regular/layer-minus.svg similarity index 100% rename from src/static/icons/regular/layer-minus.svg rename to apps/client/src/static/icons/regular/layer-minus.svg diff --git a/src/static/icons/regular/layer-plus.svg b/apps/client/src/static/icons/regular/layer-plus.svg similarity index 100% rename from src/static/icons/regular/layer-plus.svg rename to apps/client/src/static/icons/regular/layer-plus.svg diff --git a/src/static/icons/regular/leaf-heart.svg b/apps/client/src/static/icons/regular/leaf-heart.svg similarity index 100% rename from src/static/icons/regular/leaf-heart.svg rename to apps/client/src/static/icons/regular/leaf-heart.svg diff --git a/src/static/icons/regular/leaf-maple.svg b/apps/client/src/static/icons/regular/leaf-maple.svg similarity index 100% rename from src/static/icons/regular/leaf-maple.svg rename to apps/client/src/static/icons/regular/leaf-maple.svg diff --git a/src/static/icons/regular/leaf-oak.svg b/apps/client/src/static/icons/regular/leaf-oak.svg similarity index 100% rename from src/static/icons/regular/leaf-oak.svg rename to apps/client/src/static/icons/regular/leaf-oak.svg diff --git a/src/static/icons/regular/leaf.svg b/apps/client/src/static/icons/regular/leaf.svg similarity index 100% rename from src/static/icons/regular/leaf.svg rename to apps/client/src/static/icons/regular/leaf.svg diff --git a/src/static/icons/regular/lemon.svg b/apps/client/src/static/icons/regular/lemon.svg similarity index 100% rename from src/static/icons/regular/lemon.svg rename to apps/client/src/static/icons/regular/lemon.svg diff --git a/src/static/icons/regular/less-than-equal.svg b/apps/client/src/static/icons/regular/less-than-equal.svg similarity index 100% rename from src/static/icons/regular/less-than-equal.svg rename to apps/client/src/static/icons/regular/less-than-equal.svg diff --git a/src/static/icons/regular/less-than.svg b/apps/client/src/static/icons/regular/less-than.svg similarity index 100% rename from src/static/icons/regular/less-than.svg rename to apps/client/src/static/icons/regular/less-than.svg diff --git a/src/static/icons/regular/level-down-alt.svg b/apps/client/src/static/icons/regular/level-down-alt.svg similarity index 100% rename from src/static/icons/regular/level-down-alt.svg rename to apps/client/src/static/icons/regular/level-down-alt.svg diff --git a/src/static/icons/regular/level-down.svg b/apps/client/src/static/icons/regular/level-down.svg similarity index 100% rename from src/static/icons/regular/level-down.svg rename to apps/client/src/static/icons/regular/level-down.svg diff --git a/src/static/icons/regular/level-up-alt.svg b/apps/client/src/static/icons/regular/level-up-alt.svg similarity index 100% rename from src/static/icons/regular/level-up-alt.svg rename to apps/client/src/static/icons/regular/level-up-alt.svg diff --git a/src/static/icons/regular/level-up.svg b/apps/client/src/static/icons/regular/level-up.svg similarity index 100% rename from src/static/icons/regular/level-up.svg rename to apps/client/src/static/icons/regular/level-up.svg diff --git a/src/static/icons/regular/life-ring.svg b/apps/client/src/static/icons/regular/life-ring.svg similarity index 100% rename from src/static/icons/regular/life-ring.svg rename to apps/client/src/static/icons/regular/life-ring.svg diff --git a/src/static/icons/regular/light-ceiling.svg b/apps/client/src/static/icons/regular/light-ceiling.svg similarity index 100% rename from src/static/icons/regular/light-ceiling.svg rename to apps/client/src/static/icons/regular/light-ceiling.svg diff --git a/src/static/icons/regular/light-switch-off.svg b/apps/client/src/static/icons/regular/light-switch-off.svg similarity index 100% rename from src/static/icons/regular/light-switch-off.svg rename to apps/client/src/static/icons/regular/light-switch-off.svg diff --git a/src/static/icons/regular/light-switch-on.svg b/apps/client/src/static/icons/regular/light-switch-on.svg similarity index 100% rename from src/static/icons/regular/light-switch-on.svg rename to apps/client/src/static/icons/regular/light-switch-on.svg diff --git a/src/static/icons/regular/light-switch.svg b/apps/client/src/static/icons/regular/light-switch.svg similarity index 100% rename from src/static/icons/regular/light-switch.svg rename to apps/client/src/static/icons/regular/light-switch.svg diff --git a/src/static/icons/regular/lightbulb-dollar.svg b/apps/client/src/static/icons/regular/lightbulb-dollar.svg similarity index 100% rename from src/static/icons/regular/lightbulb-dollar.svg rename to apps/client/src/static/icons/regular/lightbulb-dollar.svg diff --git a/src/static/icons/regular/lightbulb-exclamation.svg b/apps/client/src/static/icons/regular/lightbulb-exclamation.svg similarity index 100% rename from src/static/icons/regular/lightbulb-exclamation.svg rename to apps/client/src/static/icons/regular/lightbulb-exclamation.svg diff --git a/src/static/icons/regular/lightbulb-on.svg b/apps/client/src/static/icons/regular/lightbulb-on.svg similarity index 100% rename from src/static/icons/regular/lightbulb-on.svg rename to apps/client/src/static/icons/regular/lightbulb-on.svg diff --git a/src/static/icons/regular/lightbulb-slash.svg b/apps/client/src/static/icons/regular/lightbulb-slash.svg similarity index 100% rename from src/static/icons/regular/lightbulb-slash.svg rename to apps/client/src/static/icons/regular/lightbulb-slash.svg diff --git a/src/static/icons/regular/lightbulb.svg b/apps/client/src/static/icons/regular/lightbulb.svg similarity index 100% rename from src/static/icons/regular/lightbulb.svg rename to apps/client/src/static/icons/regular/lightbulb.svg diff --git a/src/static/icons/regular/lights-holiday.svg b/apps/client/src/static/icons/regular/lights-holiday.svg similarity index 100% rename from src/static/icons/regular/lights-holiday.svg rename to apps/client/src/static/icons/regular/lights-holiday.svg diff --git a/src/static/icons/regular/line-columns.svg b/apps/client/src/static/icons/regular/line-columns.svg similarity index 100% rename from src/static/icons/regular/line-columns.svg rename to apps/client/src/static/icons/regular/line-columns.svg diff --git a/src/static/icons/regular/line-height.svg b/apps/client/src/static/icons/regular/line-height.svg similarity index 100% rename from src/static/icons/regular/line-height.svg rename to apps/client/src/static/icons/regular/line-height.svg diff --git a/src/static/icons/regular/link.svg b/apps/client/src/static/icons/regular/link.svg similarity index 100% rename from src/static/icons/regular/link.svg rename to apps/client/src/static/icons/regular/link.svg diff --git a/src/static/icons/regular/lips.svg b/apps/client/src/static/icons/regular/lips.svg similarity index 100% rename from src/static/icons/regular/lips.svg rename to apps/client/src/static/icons/regular/lips.svg diff --git a/src/static/icons/regular/lira-sign.svg b/apps/client/src/static/icons/regular/lira-sign.svg similarity index 100% rename from src/static/icons/regular/lira-sign.svg rename to apps/client/src/static/icons/regular/lira-sign.svg diff --git a/src/static/icons/regular/list-alt.svg b/apps/client/src/static/icons/regular/list-alt.svg similarity index 100% rename from src/static/icons/regular/list-alt.svg rename to apps/client/src/static/icons/regular/list-alt.svg diff --git a/src/static/icons/regular/list-music.svg b/apps/client/src/static/icons/regular/list-music.svg similarity index 100% rename from src/static/icons/regular/list-music.svg rename to apps/client/src/static/icons/regular/list-music.svg diff --git a/src/static/icons/regular/list-ol.svg b/apps/client/src/static/icons/regular/list-ol.svg similarity index 100% rename from src/static/icons/regular/list-ol.svg rename to apps/client/src/static/icons/regular/list-ol.svg diff --git a/src/static/icons/regular/list-ul.svg b/apps/client/src/static/icons/regular/list-ul.svg similarity index 100% rename from src/static/icons/regular/list-ul.svg rename to apps/client/src/static/icons/regular/list-ul.svg diff --git a/src/static/icons/regular/list.svg b/apps/client/src/static/icons/regular/list.svg similarity index 100% rename from src/static/icons/regular/list.svg rename to apps/client/src/static/icons/regular/list.svg diff --git a/src/static/icons/regular/location-arrow.svg b/apps/client/src/static/icons/regular/location-arrow.svg similarity index 100% rename from src/static/icons/regular/location-arrow.svg rename to apps/client/src/static/icons/regular/location-arrow.svg diff --git a/src/static/icons/regular/location-circle.svg b/apps/client/src/static/icons/regular/location-circle.svg similarity index 100% rename from src/static/icons/regular/location-circle.svg rename to apps/client/src/static/icons/regular/location-circle.svg diff --git a/src/static/icons/regular/location-slash.svg b/apps/client/src/static/icons/regular/location-slash.svg similarity index 100% rename from src/static/icons/regular/location-slash.svg rename to apps/client/src/static/icons/regular/location-slash.svg diff --git a/src/static/icons/regular/location.svg b/apps/client/src/static/icons/regular/location.svg similarity index 100% rename from src/static/icons/regular/location.svg rename to apps/client/src/static/icons/regular/location.svg diff --git a/src/static/icons/regular/lock-alt.svg b/apps/client/src/static/icons/regular/lock-alt.svg similarity index 100% rename from src/static/icons/regular/lock-alt.svg rename to apps/client/src/static/icons/regular/lock-alt.svg diff --git a/src/static/icons/regular/lock-open-alt.svg b/apps/client/src/static/icons/regular/lock-open-alt.svg similarity index 100% rename from src/static/icons/regular/lock-open-alt.svg rename to apps/client/src/static/icons/regular/lock-open-alt.svg diff --git a/src/static/icons/regular/lock-open.svg b/apps/client/src/static/icons/regular/lock-open.svg similarity index 100% rename from src/static/icons/regular/lock-open.svg rename to apps/client/src/static/icons/regular/lock-open.svg diff --git a/src/static/icons/regular/lock.svg b/apps/client/src/static/icons/regular/lock.svg similarity index 100% rename from src/static/icons/regular/lock.svg rename to apps/client/src/static/icons/regular/lock.svg diff --git a/src/static/icons/regular/long-arrow-alt-down.svg b/apps/client/src/static/icons/regular/long-arrow-alt-down.svg similarity index 100% rename from src/static/icons/regular/long-arrow-alt-down.svg rename to apps/client/src/static/icons/regular/long-arrow-alt-down.svg diff --git a/src/static/icons/regular/long-arrow-alt-left.svg b/apps/client/src/static/icons/regular/long-arrow-alt-left.svg similarity index 100% rename from src/static/icons/regular/long-arrow-alt-left.svg rename to apps/client/src/static/icons/regular/long-arrow-alt-left.svg diff --git a/src/static/icons/regular/long-arrow-alt-right.svg b/apps/client/src/static/icons/regular/long-arrow-alt-right.svg similarity index 100% rename from src/static/icons/regular/long-arrow-alt-right.svg rename to apps/client/src/static/icons/regular/long-arrow-alt-right.svg diff --git a/src/static/icons/regular/long-arrow-alt-up.svg b/apps/client/src/static/icons/regular/long-arrow-alt-up.svg similarity index 100% rename from src/static/icons/regular/long-arrow-alt-up.svg rename to apps/client/src/static/icons/regular/long-arrow-alt-up.svg diff --git a/src/static/icons/regular/long-arrow-down.svg b/apps/client/src/static/icons/regular/long-arrow-down.svg similarity index 100% rename from src/static/icons/regular/long-arrow-down.svg rename to apps/client/src/static/icons/regular/long-arrow-down.svg diff --git a/src/static/icons/regular/long-arrow-left.svg b/apps/client/src/static/icons/regular/long-arrow-left.svg similarity index 100% rename from src/static/icons/regular/long-arrow-left.svg rename to apps/client/src/static/icons/regular/long-arrow-left.svg diff --git a/src/static/icons/regular/long-arrow-right.svg b/apps/client/src/static/icons/regular/long-arrow-right.svg similarity index 100% rename from src/static/icons/regular/long-arrow-right.svg rename to apps/client/src/static/icons/regular/long-arrow-right.svg diff --git a/src/static/icons/regular/long-arrow-up.svg b/apps/client/src/static/icons/regular/long-arrow-up.svg similarity index 100% rename from src/static/icons/regular/long-arrow-up.svg rename to apps/client/src/static/icons/regular/long-arrow-up.svg diff --git a/src/static/icons/regular/loveseat.svg b/apps/client/src/static/icons/regular/loveseat.svg similarity index 100% rename from src/static/icons/regular/loveseat.svg rename to apps/client/src/static/icons/regular/loveseat.svg diff --git a/src/static/icons/regular/low-vision.svg b/apps/client/src/static/icons/regular/low-vision.svg similarity index 100% rename from src/static/icons/regular/low-vision.svg rename to apps/client/src/static/icons/regular/low-vision.svg diff --git a/src/static/icons/regular/luchador.svg b/apps/client/src/static/icons/regular/luchador.svg similarity index 100% rename from src/static/icons/regular/luchador.svg rename to apps/client/src/static/icons/regular/luchador.svg diff --git a/src/static/icons/regular/luggage-cart.svg b/apps/client/src/static/icons/regular/luggage-cart.svg similarity index 100% rename from src/static/icons/regular/luggage-cart.svg rename to apps/client/src/static/icons/regular/luggage-cart.svg diff --git a/src/static/icons/regular/lungs.svg b/apps/client/src/static/icons/regular/lungs.svg similarity index 100% rename from src/static/icons/regular/lungs.svg rename to apps/client/src/static/icons/regular/lungs.svg diff --git a/src/static/icons/regular/mace.svg b/apps/client/src/static/icons/regular/mace.svg similarity index 100% rename from src/static/icons/regular/mace.svg rename to apps/client/src/static/icons/regular/mace.svg diff --git a/src/static/icons/regular/magic.svg b/apps/client/src/static/icons/regular/magic.svg similarity index 100% rename from src/static/icons/regular/magic.svg rename to apps/client/src/static/icons/regular/magic.svg diff --git a/src/static/icons/regular/magnet.svg b/apps/client/src/static/icons/regular/magnet.svg similarity index 100% rename from src/static/icons/regular/magnet.svg rename to apps/client/src/static/icons/regular/magnet.svg diff --git a/src/static/icons/regular/mail-bulk.svg b/apps/client/src/static/icons/regular/mail-bulk.svg similarity index 100% rename from src/static/icons/regular/mail-bulk.svg rename to apps/client/src/static/icons/regular/mail-bulk.svg diff --git a/src/static/icons/regular/mailbox.svg b/apps/client/src/static/icons/regular/mailbox.svg similarity index 100% rename from src/static/icons/regular/mailbox.svg rename to apps/client/src/static/icons/regular/mailbox.svg diff --git a/src/static/icons/regular/male.svg b/apps/client/src/static/icons/regular/male.svg similarity index 100% rename from src/static/icons/regular/male.svg rename to apps/client/src/static/icons/regular/male.svg diff --git a/src/static/icons/regular/mandolin.svg b/apps/client/src/static/icons/regular/mandolin.svg similarity index 100% rename from src/static/icons/regular/mandolin.svg rename to apps/client/src/static/icons/regular/mandolin.svg diff --git a/src/static/icons/regular/map-marked-alt.svg b/apps/client/src/static/icons/regular/map-marked-alt.svg similarity index 100% rename from src/static/icons/regular/map-marked-alt.svg rename to apps/client/src/static/icons/regular/map-marked-alt.svg diff --git a/src/static/icons/regular/map-marked.svg b/apps/client/src/static/icons/regular/map-marked.svg similarity index 100% rename from src/static/icons/regular/map-marked.svg rename to apps/client/src/static/icons/regular/map-marked.svg diff --git a/src/static/icons/regular/map-marker-alt-slash.svg b/apps/client/src/static/icons/regular/map-marker-alt-slash.svg similarity index 100% rename from src/static/icons/regular/map-marker-alt-slash.svg rename to apps/client/src/static/icons/regular/map-marker-alt-slash.svg diff --git a/src/static/icons/regular/map-marker-alt.svg b/apps/client/src/static/icons/regular/map-marker-alt.svg similarity index 100% rename from src/static/icons/regular/map-marker-alt.svg rename to apps/client/src/static/icons/regular/map-marker-alt.svg diff --git a/src/static/icons/regular/map-marker-check.svg b/apps/client/src/static/icons/regular/map-marker-check.svg similarity index 100% rename from src/static/icons/regular/map-marker-check.svg rename to apps/client/src/static/icons/regular/map-marker-check.svg diff --git a/src/static/icons/regular/map-marker-edit.svg b/apps/client/src/static/icons/regular/map-marker-edit.svg similarity index 100% rename from src/static/icons/regular/map-marker-edit.svg rename to apps/client/src/static/icons/regular/map-marker-edit.svg diff --git a/src/static/icons/regular/map-marker-exclamation.svg b/apps/client/src/static/icons/regular/map-marker-exclamation.svg similarity index 100% rename from src/static/icons/regular/map-marker-exclamation.svg rename to apps/client/src/static/icons/regular/map-marker-exclamation.svg diff --git a/src/static/icons/regular/map-marker-minus.svg b/apps/client/src/static/icons/regular/map-marker-minus.svg similarity index 100% rename from src/static/icons/regular/map-marker-minus.svg rename to apps/client/src/static/icons/regular/map-marker-minus.svg diff --git a/src/static/icons/regular/map-marker-plus.svg b/apps/client/src/static/icons/regular/map-marker-plus.svg similarity index 100% rename from src/static/icons/regular/map-marker-plus.svg rename to apps/client/src/static/icons/regular/map-marker-plus.svg diff --git a/src/static/icons/regular/map-marker-question.svg b/apps/client/src/static/icons/regular/map-marker-question.svg similarity index 100% rename from src/static/icons/regular/map-marker-question.svg rename to apps/client/src/static/icons/regular/map-marker-question.svg diff --git a/src/static/icons/regular/map-marker-slash.svg b/apps/client/src/static/icons/regular/map-marker-slash.svg similarity index 100% rename from src/static/icons/regular/map-marker-slash.svg rename to apps/client/src/static/icons/regular/map-marker-slash.svg diff --git a/src/static/icons/regular/map-marker-smile.svg b/apps/client/src/static/icons/regular/map-marker-smile.svg similarity index 100% rename from src/static/icons/regular/map-marker-smile.svg rename to apps/client/src/static/icons/regular/map-marker-smile.svg diff --git a/src/static/icons/regular/map-marker-times.svg b/apps/client/src/static/icons/regular/map-marker-times.svg similarity index 100% rename from src/static/icons/regular/map-marker-times.svg rename to apps/client/src/static/icons/regular/map-marker-times.svg diff --git a/src/static/icons/regular/map-marker.svg b/apps/client/src/static/icons/regular/map-marker.svg similarity index 100% rename from src/static/icons/regular/map-marker.svg rename to apps/client/src/static/icons/regular/map-marker.svg diff --git a/src/static/icons/regular/map-pin.svg b/apps/client/src/static/icons/regular/map-pin.svg similarity index 100% rename from src/static/icons/regular/map-pin.svg rename to apps/client/src/static/icons/regular/map-pin.svg diff --git a/src/static/icons/regular/map-signs.svg b/apps/client/src/static/icons/regular/map-signs.svg similarity index 100% rename from src/static/icons/regular/map-signs.svg rename to apps/client/src/static/icons/regular/map-signs.svg diff --git a/src/static/icons/regular/map.svg b/apps/client/src/static/icons/regular/map.svg similarity index 100% rename from src/static/icons/regular/map.svg rename to apps/client/src/static/icons/regular/map.svg diff --git a/src/static/icons/regular/marker.svg b/apps/client/src/static/icons/regular/marker.svg similarity index 100% rename from src/static/icons/regular/marker.svg rename to apps/client/src/static/icons/regular/marker.svg diff --git a/src/static/icons/regular/mars-double.svg b/apps/client/src/static/icons/regular/mars-double.svg similarity index 100% rename from src/static/icons/regular/mars-double.svg rename to apps/client/src/static/icons/regular/mars-double.svg diff --git a/src/static/icons/regular/mars-stroke-h.svg b/apps/client/src/static/icons/regular/mars-stroke-h.svg similarity index 100% rename from src/static/icons/regular/mars-stroke-h.svg rename to apps/client/src/static/icons/regular/mars-stroke-h.svg diff --git a/src/static/icons/regular/mars-stroke-v.svg b/apps/client/src/static/icons/regular/mars-stroke-v.svg similarity index 100% rename from src/static/icons/regular/mars-stroke-v.svg rename to apps/client/src/static/icons/regular/mars-stroke-v.svg diff --git a/src/static/icons/regular/mars-stroke.svg b/apps/client/src/static/icons/regular/mars-stroke.svg similarity index 100% rename from src/static/icons/regular/mars-stroke.svg rename to apps/client/src/static/icons/regular/mars-stroke.svg diff --git a/src/static/icons/regular/mars.svg b/apps/client/src/static/icons/regular/mars.svg similarity index 100% rename from src/static/icons/regular/mars.svg rename to apps/client/src/static/icons/regular/mars.svg diff --git a/src/static/icons/regular/mask.svg b/apps/client/src/static/icons/regular/mask.svg similarity index 100% rename from src/static/icons/regular/mask.svg rename to apps/client/src/static/icons/regular/mask.svg diff --git a/src/static/icons/regular/meat.svg b/apps/client/src/static/icons/regular/meat.svg similarity index 100% rename from src/static/icons/regular/meat.svg rename to apps/client/src/static/icons/regular/meat.svg diff --git a/src/static/icons/regular/medal.svg b/apps/client/src/static/icons/regular/medal.svg similarity index 100% rename from src/static/icons/regular/medal.svg rename to apps/client/src/static/icons/regular/medal.svg diff --git a/src/static/icons/regular/medkit.svg b/apps/client/src/static/icons/regular/medkit.svg similarity index 100% rename from src/static/icons/regular/medkit.svg rename to apps/client/src/static/icons/regular/medkit.svg diff --git a/src/static/icons/regular/megaphone.svg b/apps/client/src/static/icons/regular/megaphone.svg similarity index 100% rename from src/static/icons/regular/megaphone.svg rename to apps/client/src/static/icons/regular/megaphone.svg diff --git a/src/static/icons/regular/meh-blank.svg b/apps/client/src/static/icons/regular/meh-blank.svg similarity index 100% rename from src/static/icons/regular/meh-blank.svg rename to apps/client/src/static/icons/regular/meh-blank.svg diff --git a/src/static/icons/regular/meh-rolling-eyes.svg b/apps/client/src/static/icons/regular/meh-rolling-eyes.svg similarity index 100% rename from src/static/icons/regular/meh-rolling-eyes.svg rename to apps/client/src/static/icons/regular/meh-rolling-eyes.svg diff --git a/src/static/icons/regular/meh.svg b/apps/client/src/static/icons/regular/meh.svg similarity index 100% rename from src/static/icons/regular/meh.svg rename to apps/client/src/static/icons/regular/meh.svg diff --git a/src/static/icons/regular/memory.svg b/apps/client/src/static/icons/regular/memory.svg similarity index 100% rename from src/static/icons/regular/memory.svg rename to apps/client/src/static/icons/regular/memory.svg diff --git a/src/static/icons/regular/menorah.svg b/apps/client/src/static/icons/regular/menorah.svg similarity index 100% rename from src/static/icons/regular/menorah.svg rename to apps/client/src/static/icons/regular/menorah.svg diff --git a/src/static/icons/regular/mercury.svg b/apps/client/src/static/icons/regular/mercury.svg similarity index 100% rename from src/static/icons/regular/mercury.svg rename to apps/client/src/static/icons/regular/mercury.svg diff --git a/src/static/icons/regular/meteor.svg b/apps/client/src/static/icons/regular/meteor.svg similarity index 100% rename from src/static/icons/regular/meteor.svg rename to apps/client/src/static/icons/regular/meteor.svg diff --git a/src/static/icons/regular/microchip.svg b/apps/client/src/static/icons/regular/microchip.svg similarity index 100% rename from src/static/icons/regular/microchip.svg rename to apps/client/src/static/icons/regular/microchip.svg diff --git a/src/static/icons/regular/microphone-alt-slash.svg b/apps/client/src/static/icons/regular/microphone-alt-slash.svg similarity index 100% rename from src/static/icons/regular/microphone-alt-slash.svg rename to apps/client/src/static/icons/regular/microphone-alt-slash.svg diff --git a/src/static/icons/regular/microphone-alt.svg b/apps/client/src/static/icons/regular/microphone-alt.svg similarity index 100% rename from src/static/icons/regular/microphone-alt.svg rename to apps/client/src/static/icons/regular/microphone-alt.svg diff --git a/src/static/icons/regular/microphone-slash.svg b/apps/client/src/static/icons/regular/microphone-slash.svg similarity index 100% rename from src/static/icons/regular/microphone-slash.svg rename to apps/client/src/static/icons/regular/microphone-slash.svg diff --git a/src/static/icons/regular/microphone-stand.svg b/apps/client/src/static/icons/regular/microphone-stand.svg similarity index 100% rename from src/static/icons/regular/microphone-stand.svg rename to apps/client/src/static/icons/regular/microphone-stand.svg diff --git a/src/static/icons/regular/microphone.svg b/apps/client/src/static/icons/regular/microphone.svg similarity index 100% rename from src/static/icons/regular/microphone.svg rename to apps/client/src/static/icons/regular/microphone.svg diff --git a/src/static/icons/regular/microscope.svg b/apps/client/src/static/icons/regular/microscope.svg similarity index 100% rename from src/static/icons/regular/microscope.svg rename to apps/client/src/static/icons/regular/microscope.svg diff --git a/src/static/icons/regular/microwave.svg b/apps/client/src/static/icons/regular/microwave.svg similarity index 100% rename from src/static/icons/regular/microwave.svg rename to apps/client/src/static/icons/regular/microwave.svg diff --git a/src/static/icons/regular/mind-share.svg b/apps/client/src/static/icons/regular/mind-share.svg similarity index 100% rename from src/static/icons/regular/mind-share.svg rename to apps/client/src/static/icons/regular/mind-share.svg diff --git a/src/static/icons/regular/minus-circle.svg b/apps/client/src/static/icons/regular/minus-circle.svg similarity index 100% rename from src/static/icons/regular/minus-circle.svg rename to apps/client/src/static/icons/regular/minus-circle.svg diff --git a/src/static/icons/regular/minus-hexagon.svg b/apps/client/src/static/icons/regular/minus-hexagon.svg similarity index 100% rename from src/static/icons/regular/minus-hexagon.svg rename to apps/client/src/static/icons/regular/minus-hexagon.svg diff --git a/src/static/icons/regular/minus-octagon.svg b/apps/client/src/static/icons/regular/minus-octagon.svg similarity index 100% rename from src/static/icons/regular/minus-octagon.svg rename to apps/client/src/static/icons/regular/minus-octagon.svg diff --git a/src/static/icons/regular/minus-square.svg b/apps/client/src/static/icons/regular/minus-square.svg similarity index 100% rename from src/static/icons/regular/minus-square.svg rename to apps/client/src/static/icons/regular/minus-square.svg diff --git a/src/static/icons/regular/minus.svg b/apps/client/src/static/icons/regular/minus.svg similarity index 100% rename from src/static/icons/regular/minus.svg rename to apps/client/src/static/icons/regular/minus.svg diff --git a/src/static/icons/regular/mistletoe.svg b/apps/client/src/static/icons/regular/mistletoe.svg similarity index 100% rename from src/static/icons/regular/mistletoe.svg rename to apps/client/src/static/icons/regular/mistletoe.svg diff --git a/src/static/icons/regular/mitten.svg b/apps/client/src/static/icons/regular/mitten.svg similarity index 100% rename from src/static/icons/regular/mitten.svg rename to apps/client/src/static/icons/regular/mitten.svg diff --git a/src/static/icons/regular/mobile-alt.svg b/apps/client/src/static/icons/regular/mobile-alt.svg similarity index 100% rename from src/static/icons/regular/mobile-alt.svg rename to apps/client/src/static/icons/regular/mobile-alt.svg diff --git a/src/static/icons/regular/mobile-android-alt.svg b/apps/client/src/static/icons/regular/mobile-android-alt.svg similarity index 100% rename from src/static/icons/regular/mobile-android-alt.svg rename to apps/client/src/static/icons/regular/mobile-android-alt.svg diff --git a/src/static/icons/regular/mobile-android.svg b/apps/client/src/static/icons/regular/mobile-android.svg similarity index 100% rename from src/static/icons/regular/mobile-android.svg rename to apps/client/src/static/icons/regular/mobile-android.svg diff --git a/src/static/icons/regular/mobile.svg b/apps/client/src/static/icons/regular/mobile.svg similarity index 100% rename from src/static/icons/regular/mobile.svg rename to apps/client/src/static/icons/regular/mobile.svg diff --git a/src/static/icons/regular/money-bill-alt.svg b/apps/client/src/static/icons/regular/money-bill-alt.svg similarity index 100% rename from src/static/icons/regular/money-bill-alt.svg rename to apps/client/src/static/icons/regular/money-bill-alt.svg diff --git a/src/static/icons/regular/money-bill-wave-alt.svg b/apps/client/src/static/icons/regular/money-bill-wave-alt.svg similarity index 100% rename from src/static/icons/regular/money-bill-wave-alt.svg rename to apps/client/src/static/icons/regular/money-bill-wave-alt.svg diff --git a/src/static/icons/regular/money-bill-wave.svg b/apps/client/src/static/icons/regular/money-bill-wave.svg similarity index 100% rename from src/static/icons/regular/money-bill-wave.svg rename to apps/client/src/static/icons/regular/money-bill-wave.svg diff --git a/src/static/icons/regular/money-bill.svg b/apps/client/src/static/icons/regular/money-bill.svg similarity index 100% rename from src/static/icons/regular/money-bill.svg rename to apps/client/src/static/icons/regular/money-bill.svg diff --git a/src/static/icons/regular/money-check-alt.svg b/apps/client/src/static/icons/regular/money-check-alt.svg similarity index 100% rename from src/static/icons/regular/money-check-alt.svg rename to apps/client/src/static/icons/regular/money-check-alt.svg diff --git a/src/static/icons/regular/money-check-edit-alt.svg b/apps/client/src/static/icons/regular/money-check-edit-alt.svg similarity index 100% rename from src/static/icons/regular/money-check-edit-alt.svg rename to apps/client/src/static/icons/regular/money-check-edit-alt.svg diff --git a/src/static/icons/regular/money-check-edit.svg b/apps/client/src/static/icons/regular/money-check-edit.svg similarity index 100% rename from src/static/icons/regular/money-check-edit.svg rename to apps/client/src/static/icons/regular/money-check-edit.svg diff --git a/src/static/icons/regular/money-check.svg b/apps/client/src/static/icons/regular/money-check.svg similarity index 100% rename from src/static/icons/regular/money-check.svg rename to apps/client/src/static/icons/regular/money-check.svg diff --git a/src/static/icons/regular/monitor-heart-rate.svg b/apps/client/src/static/icons/regular/monitor-heart-rate.svg similarity index 100% rename from src/static/icons/regular/monitor-heart-rate.svg rename to apps/client/src/static/icons/regular/monitor-heart-rate.svg diff --git a/src/static/icons/regular/monkey.svg b/apps/client/src/static/icons/regular/monkey.svg similarity index 100% rename from src/static/icons/regular/monkey.svg rename to apps/client/src/static/icons/regular/monkey.svg diff --git a/src/static/icons/regular/monument.svg b/apps/client/src/static/icons/regular/monument.svg similarity index 100% rename from src/static/icons/regular/monument.svg rename to apps/client/src/static/icons/regular/monument.svg diff --git a/src/static/icons/regular/moon-cloud.svg b/apps/client/src/static/icons/regular/moon-cloud.svg similarity index 100% rename from src/static/icons/regular/moon-cloud.svg rename to apps/client/src/static/icons/regular/moon-cloud.svg diff --git a/src/static/icons/regular/moon-stars.svg b/apps/client/src/static/icons/regular/moon-stars.svg similarity index 100% rename from src/static/icons/regular/moon-stars.svg rename to apps/client/src/static/icons/regular/moon-stars.svg diff --git a/src/static/icons/regular/moon.svg b/apps/client/src/static/icons/regular/moon.svg similarity index 100% rename from src/static/icons/regular/moon.svg rename to apps/client/src/static/icons/regular/moon.svg diff --git a/src/static/icons/regular/mortar-pestle.svg b/apps/client/src/static/icons/regular/mortar-pestle.svg similarity index 100% rename from src/static/icons/regular/mortar-pestle.svg rename to apps/client/src/static/icons/regular/mortar-pestle.svg diff --git a/src/static/icons/regular/mosque.svg b/apps/client/src/static/icons/regular/mosque.svg similarity index 100% rename from src/static/icons/regular/mosque.svg rename to apps/client/src/static/icons/regular/mosque.svg diff --git a/src/static/icons/regular/motorcycle.svg b/apps/client/src/static/icons/regular/motorcycle.svg similarity index 100% rename from src/static/icons/regular/motorcycle.svg rename to apps/client/src/static/icons/regular/motorcycle.svg diff --git a/src/static/icons/regular/mountain.svg b/apps/client/src/static/icons/regular/mountain.svg similarity index 100% rename from src/static/icons/regular/mountain.svg rename to apps/client/src/static/icons/regular/mountain.svg diff --git a/src/static/icons/regular/mountains.svg b/apps/client/src/static/icons/regular/mountains.svg similarity index 100% rename from src/static/icons/regular/mountains.svg rename to apps/client/src/static/icons/regular/mountains.svg diff --git a/src/static/icons/regular/mouse-alt.svg b/apps/client/src/static/icons/regular/mouse-alt.svg similarity index 100% rename from src/static/icons/regular/mouse-alt.svg rename to apps/client/src/static/icons/regular/mouse-alt.svg diff --git a/src/static/icons/regular/mouse-pointer.svg b/apps/client/src/static/icons/regular/mouse-pointer.svg similarity index 100% rename from src/static/icons/regular/mouse-pointer.svg rename to apps/client/src/static/icons/regular/mouse-pointer.svg diff --git a/src/static/icons/regular/mouse.svg b/apps/client/src/static/icons/regular/mouse.svg similarity index 100% rename from src/static/icons/regular/mouse.svg rename to apps/client/src/static/icons/regular/mouse.svg diff --git a/src/static/icons/regular/mp3-player.svg b/apps/client/src/static/icons/regular/mp3-player.svg similarity index 100% rename from src/static/icons/regular/mp3-player.svg rename to apps/client/src/static/icons/regular/mp3-player.svg diff --git a/src/static/icons/regular/mug-hot.svg b/apps/client/src/static/icons/regular/mug-hot.svg similarity index 100% rename from src/static/icons/regular/mug-hot.svg rename to apps/client/src/static/icons/regular/mug-hot.svg diff --git a/src/static/icons/regular/mug-marshmallows.svg b/apps/client/src/static/icons/regular/mug-marshmallows.svg similarity index 100% rename from src/static/icons/regular/mug-marshmallows.svg rename to apps/client/src/static/icons/regular/mug-marshmallows.svg diff --git a/src/static/icons/regular/mug-tea.svg b/apps/client/src/static/icons/regular/mug-tea.svg similarity index 100% rename from src/static/icons/regular/mug-tea.svg rename to apps/client/src/static/icons/regular/mug-tea.svg diff --git a/src/static/icons/regular/mug.svg b/apps/client/src/static/icons/regular/mug.svg similarity index 100% rename from src/static/icons/regular/mug.svg rename to apps/client/src/static/icons/regular/mug.svg diff --git a/src/static/icons/regular/music-alt-slash.svg b/apps/client/src/static/icons/regular/music-alt-slash.svg similarity index 100% rename from src/static/icons/regular/music-alt-slash.svg rename to apps/client/src/static/icons/regular/music-alt-slash.svg diff --git a/src/static/icons/regular/music-alt.svg b/apps/client/src/static/icons/regular/music-alt.svg similarity index 100% rename from src/static/icons/regular/music-alt.svg rename to apps/client/src/static/icons/regular/music-alt.svg diff --git a/src/static/icons/regular/music-slash.svg b/apps/client/src/static/icons/regular/music-slash.svg similarity index 100% rename from src/static/icons/regular/music-slash.svg rename to apps/client/src/static/icons/regular/music-slash.svg diff --git a/src/static/icons/regular/music.svg b/apps/client/src/static/icons/regular/music.svg similarity index 100% rename from src/static/icons/regular/music.svg rename to apps/client/src/static/icons/regular/music.svg diff --git a/src/static/icons/regular/narwhal.svg b/apps/client/src/static/icons/regular/narwhal.svg similarity index 100% rename from src/static/icons/regular/narwhal.svg rename to apps/client/src/static/icons/regular/narwhal.svg diff --git a/src/static/icons/regular/network-wired.svg b/apps/client/src/static/icons/regular/network-wired.svg similarity index 100% rename from src/static/icons/regular/network-wired.svg rename to apps/client/src/static/icons/regular/network-wired.svg diff --git a/src/static/icons/regular/neuter.svg b/apps/client/src/static/icons/regular/neuter.svg similarity index 100% rename from src/static/icons/regular/neuter.svg rename to apps/client/src/static/icons/regular/neuter.svg diff --git a/src/static/icons/regular/newspaper.svg b/apps/client/src/static/icons/regular/newspaper.svg similarity index 100% rename from src/static/icons/regular/newspaper.svg rename to apps/client/src/static/icons/regular/newspaper.svg diff --git a/src/static/icons/regular/not-equal.svg b/apps/client/src/static/icons/regular/not-equal.svg similarity index 100% rename from src/static/icons/regular/not-equal.svg rename to apps/client/src/static/icons/regular/not-equal.svg diff --git a/src/static/icons/regular/notes-medical.svg b/apps/client/src/static/icons/regular/notes-medical.svg similarity index 100% rename from src/static/icons/regular/notes-medical.svg rename to apps/client/src/static/icons/regular/notes-medical.svg diff --git a/src/static/icons/regular/object-group.svg b/apps/client/src/static/icons/regular/object-group.svg similarity index 100% rename from src/static/icons/regular/object-group.svg rename to apps/client/src/static/icons/regular/object-group.svg diff --git a/src/static/icons/regular/object-ungroup.svg b/apps/client/src/static/icons/regular/object-ungroup.svg similarity index 100% rename from src/static/icons/regular/object-ungroup.svg rename to apps/client/src/static/icons/regular/object-ungroup.svg diff --git a/src/static/icons/regular/octagon.svg b/apps/client/src/static/icons/regular/octagon.svg similarity index 100% rename from src/static/icons/regular/octagon.svg rename to apps/client/src/static/icons/regular/octagon.svg diff --git a/src/static/icons/regular/oil-can.svg b/apps/client/src/static/icons/regular/oil-can.svg similarity index 100% rename from src/static/icons/regular/oil-can.svg rename to apps/client/src/static/icons/regular/oil-can.svg diff --git a/src/static/icons/regular/oil-temp.svg b/apps/client/src/static/icons/regular/oil-temp.svg similarity index 100% rename from src/static/icons/regular/oil-temp.svg rename to apps/client/src/static/icons/regular/oil-temp.svg diff --git a/src/static/icons/regular/om.svg b/apps/client/src/static/icons/regular/om.svg similarity index 100% rename from src/static/icons/regular/om.svg rename to apps/client/src/static/icons/regular/om.svg diff --git a/src/static/icons/regular/omega.svg b/apps/client/src/static/icons/regular/omega.svg similarity index 100% rename from src/static/icons/regular/omega.svg rename to apps/client/src/static/icons/regular/omega.svg diff --git a/src/static/icons/regular/ornament.svg b/apps/client/src/static/icons/regular/ornament.svg similarity index 100% rename from src/static/icons/regular/ornament.svg rename to apps/client/src/static/icons/regular/ornament.svg diff --git a/src/static/icons/regular/otter.svg b/apps/client/src/static/icons/regular/otter.svg similarity index 100% rename from src/static/icons/regular/otter.svg rename to apps/client/src/static/icons/regular/otter.svg diff --git a/src/static/icons/regular/outdent.svg b/apps/client/src/static/icons/regular/outdent.svg similarity index 100% rename from src/static/icons/regular/outdent.svg rename to apps/client/src/static/icons/regular/outdent.svg diff --git a/src/static/icons/regular/outlet.svg b/apps/client/src/static/icons/regular/outlet.svg similarity index 100% rename from src/static/icons/regular/outlet.svg rename to apps/client/src/static/icons/regular/outlet.svg diff --git a/src/static/icons/regular/oven.svg b/apps/client/src/static/icons/regular/oven.svg similarity index 100% rename from src/static/icons/regular/oven.svg rename to apps/client/src/static/icons/regular/oven.svg diff --git a/src/static/icons/regular/overline.svg b/apps/client/src/static/icons/regular/overline.svg similarity index 100% rename from src/static/icons/regular/overline.svg rename to apps/client/src/static/icons/regular/overline.svg diff --git a/src/static/icons/regular/page-break.svg b/apps/client/src/static/icons/regular/page-break.svg similarity index 100% rename from src/static/icons/regular/page-break.svg rename to apps/client/src/static/icons/regular/page-break.svg diff --git a/src/static/icons/regular/pager.svg b/apps/client/src/static/icons/regular/pager.svg similarity index 100% rename from src/static/icons/regular/pager.svg rename to apps/client/src/static/icons/regular/pager.svg diff --git a/src/static/icons/regular/paint-brush-alt.svg b/apps/client/src/static/icons/regular/paint-brush-alt.svg similarity index 100% rename from src/static/icons/regular/paint-brush-alt.svg rename to apps/client/src/static/icons/regular/paint-brush-alt.svg diff --git a/src/static/icons/regular/paint-brush.svg b/apps/client/src/static/icons/regular/paint-brush.svg similarity index 100% rename from src/static/icons/regular/paint-brush.svg rename to apps/client/src/static/icons/regular/paint-brush.svg diff --git a/src/static/icons/regular/paint-roller.svg b/apps/client/src/static/icons/regular/paint-roller.svg similarity index 100% rename from src/static/icons/regular/paint-roller.svg rename to apps/client/src/static/icons/regular/paint-roller.svg diff --git a/src/static/icons/regular/palette.svg b/apps/client/src/static/icons/regular/palette.svg similarity index 100% rename from src/static/icons/regular/palette.svg rename to apps/client/src/static/icons/regular/palette.svg diff --git a/src/static/icons/regular/pallet-alt.svg b/apps/client/src/static/icons/regular/pallet-alt.svg similarity index 100% rename from src/static/icons/regular/pallet-alt.svg rename to apps/client/src/static/icons/regular/pallet-alt.svg diff --git a/src/static/icons/regular/pallet.svg b/apps/client/src/static/icons/regular/pallet.svg similarity index 100% rename from src/static/icons/regular/pallet.svg rename to apps/client/src/static/icons/regular/pallet.svg diff --git a/src/static/icons/regular/paper-plane.svg b/apps/client/src/static/icons/regular/paper-plane.svg similarity index 100% rename from src/static/icons/regular/paper-plane.svg rename to apps/client/src/static/icons/regular/paper-plane.svg diff --git a/src/static/icons/regular/paperclip.svg b/apps/client/src/static/icons/regular/paperclip.svg similarity index 100% rename from src/static/icons/regular/paperclip.svg rename to apps/client/src/static/icons/regular/paperclip.svg diff --git a/src/static/icons/regular/parachute-box.svg b/apps/client/src/static/icons/regular/parachute-box.svg similarity index 100% rename from src/static/icons/regular/parachute-box.svg rename to apps/client/src/static/icons/regular/parachute-box.svg diff --git a/src/static/icons/regular/paragraph-rtl.svg b/apps/client/src/static/icons/regular/paragraph-rtl.svg similarity index 100% rename from src/static/icons/regular/paragraph-rtl.svg rename to apps/client/src/static/icons/regular/paragraph-rtl.svg diff --git a/src/static/icons/regular/paragraph.svg b/apps/client/src/static/icons/regular/paragraph.svg similarity index 100% rename from src/static/icons/regular/paragraph.svg rename to apps/client/src/static/icons/regular/paragraph.svg diff --git a/src/static/icons/regular/parking-circle-slash.svg b/apps/client/src/static/icons/regular/parking-circle-slash.svg similarity index 100% rename from src/static/icons/regular/parking-circle-slash.svg rename to apps/client/src/static/icons/regular/parking-circle-slash.svg diff --git a/src/static/icons/regular/parking-circle.svg b/apps/client/src/static/icons/regular/parking-circle.svg similarity index 100% rename from src/static/icons/regular/parking-circle.svg rename to apps/client/src/static/icons/regular/parking-circle.svg diff --git a/src/static/icons/regular/parking-slash.svg b/apps/client/src/static/icons/regular/parking-slash.svg similarity index 100% rename from src/static/icons/regular/parking-slash.svg rename to apps/client/src/static/icons/regular/parking-slash.svg diff --git a/src/static/icons/regular/parking.svg b/apps/client/src/static/icons/regular/parking.svg similarity index 100% rename from src/static/icons/regular/parking.svg rename to apps/client/src/static/icons/regular/parking.svg diff --git a/src/static/icons/regular/passport.svg b/apps/client/src/static/icons/regular/passport.svg similarity index 100% rename from src/static/icons/regular/passport.svg rename to apps/client/src/static/icons/regular/passport.svg diff --git a/src/static/icons/regular/pastafarianism.svg b/apps/client/src/static/icons/regular/pastafarianism.svg similarity index 100% rename from src/static/icons/regular/pastafarianism.svg rename to apps/client/src/static/icons/regular/pastafarianism.svg diff --git a/src/static/icons/regular/paste.svg b/apps/client/src/static/icons/regular/paste.svg similarity index 100% rename from src/static/icons/regular/paste.svg rename to apps/client/src/static/icons/regular/paste.svg diff --git a/src/static/icons/regular/pause-circle.svg b/apps/client/src/static/icons/regular/pause-circle.svg similarity index 100% rename from src/static/icons/regular/pause-circle.svg rename to apps/client/src/static/icons/regular/pause-circle.svg diff --git a/src/static/icons/regular/pause.svg b/apps/client/src/static/icons/regular/pause.svg similarity index 100% rename from src/static/icons/regular/pause.svg rename to apps/client/src/static/icons/regular/pause.svg diff --git a/src/static/icons/regular/paw-alt.svg b/apps/client/src/static/icons/regular/paw-alt.svg similarity index 100% rename from src/static/icons/regular/paw-alt.svg rename to apps/client/src/static/icons/regular/paw-alt.svg diff --git a/src/static/icons/regular/paw-claws.svg b/apps/client/src/static/icons/regular/paw-claws.svg similarity index 100% rename from src/static/icons/regular/paw-claws.svg rename to apps/client/src/static/icons/regular/paw-claws.svg diff --git a/src/static/icons/regular/paw.svg b/apps/client/src/static/icons/regular/paw.svg similarity index 100% rename from src/static/icons/regular/paw.svg rename to apps/client/src/static/icons/regular/paw.svg diff --git a/src/static/icons/regular/peace.svg b/apps/client/src/static/icons/regular/peace.svg similarity index 100% rename from src/static/icons/regular/peace.svg rename to apps/client/src/static/icons/regular/peace.svg diff --git a/src/static/icons/regular/pegasus.svg b/apps/client/src/static/icons/regular/pegasus.svg similarity index 100% rename from src/static/icons/regular/pegasus.svg rename to apps/client/src/static/icons/regular/pegasus.svg diff --git a/src/static/icons/regular/pen-alt.svg b/apps/client/src/static/icons/regular/pen-alt.svg similarity index 100% rename from src/static/icons/regular/pen-alt.svg rename to apps/client/src/static/icons/regular/pen-alt.svg diff --git a/src/static/icons/regular/pen-fancy.svg b/apps/client/src/static/icons/regular/pen-fancy.svg similarity index 100% rename from src/static/icons/regular/pen-fancy.svg rename to apps/client/src/static/icons/regular/pen-fancy.svg diff --git a/src/static/icons/regular/pen-nib.svg b/apps/client/src/static/icons/regular/pen-nib.svg similarity index 100% rename from src/static/icons/regular/pen-nib.svg rename to apps/client/src/static/icons/regular/pen-nib.svg diff --git a/src/static/icons/regular/pen-square.svg b/apps/client/src/static/icons/regular/pen-square.svg similarity index 100% rename from src/static/icons/regular/pen-square.svg rename to apps/client/src/static/icons/regular/pen-square.svg diff --git a/src/static/icons/regular/pen.svg b/apps/client/src/static/icons/regular/pen.svg similarity index 100% rename from src/static/icons/regular/pen.svg rename to apps/client/src/static/icons/regular/pen.svg diff --git a/src/static/icons/regular/pencil-alt.svg b/apps/client/src/static/icons/regular/pencil-alt.svg similarity index 100% rename from src/static/icons/regular/pencil-alt.svg rename to apps/client/src/static/icons/regular/pencil-alt.svg diff --git a/src/static/icons/regular/pencil-paintbrush.svg b/apps/client/src/static/icons/regular/pencil-paintbrush.svg similarity index 100% rename from src/static/icons/regular/pencil-paintbrush.svg rename to apps/client/src/static/icons/regular/pencil-paintbrush.svg diff --git a/src/static/icons/regular/pencil-ruler.svg b/apps/client/src/static/icons/regular/pencil-ruler.svg similarity index 100% rename from src/static/icons/regular/pencil-ruler.svg rename to apps/client/src/static/icons/regular/pencil-ruler.svg diff --git a/src/static/icons/regular/pencil.svg b/apps/client/src/static/icons/regular/pencil.svg similarity index 100% rename from src/static/icons/regular/pencil.svg rename to apps/client/src/static/icons/regular/pencil.svg diff --git a/src/static/icons/regular/pennant.svg b/apps/client/src/static/icons/regular/pennant.svg similarity index 100% rename from src/static/icons/regular/pennant.svg rename to apps/client/src/static/icons/regular/pennant.svg diff --git a/src/static/icons/regular/people-carry.svg b/apps/client/src/static/icons/regular/people-carry.svg similarity index 100% rename from src/static/icons/regular/people-carry.svg rename to apps/client/src/static/icons/regular/people-carry.svg diff --git a/src/static/icons/regular/pepper-hot.svg b/apps/client/src/static/icons/regular/pepper-hot.svg similarity index 100% rename from src/static/icons/regular/pepper-hot.svg rename to apps/client/src/static/icons/regular/pepper-hot.svg diff --git a/src/static/icons/regular/percent.svg b/apps/client/src/static/icons/regular/percent.svg similarity index 100% rename from src/static/icons/regular/percent.svg rename to apps/client/src/static/icons/regular/percent.svg diff --git a/src/static/icons/regular/percentage.svg b/apps/client/src/static/icons/regular/percentage.svg similarity index 100% rename from src/static/icons/regular/percentage.svg rename to apps/client/src/static/icons/regular/percentage.svg diff --git a/src/static/icons/regular/person-booth.svg b/apps/client/src/static/icons/regular/person-booth.svg similarity index 100% rename from src/static/icons/regular/person-booth.svg rename to apps/client/src/static/icons/regular/person-booth.svg diff --git a/src/static/icons/regular/person-carry.svg b/apps/client/src/static/icons/regular/person-carry.svg similarity index 100% rename from src/static/icons/regular/person-carry.svg rename to apps/client/src/static/icons/regular/person-carry.svg diff --git a/src/static/icons/regular/person-dolly-empty.svg b/apps/client/src/static/icons/regular/person-dolly-empty.svg similarity index 100% rename from src/static/icons/regular/person-dolly-empty.svg rename to apps/client/src/static/icons/regular/person-dolly-empty.svg diff --git a/src/static/icons/regular/person-dolly.svg b/apps/client/src/static/icons/regular/person-dolly.svg similarity index 100% rename from src/static/icons/regular/person-dolly.svg rename to apps/client/src/static/icons/regular/person-dolly.svg diff --git a/src/static/icons/regular/person-sign.svg b/apps/client/src/static/icons/regular/person-sign.svg similarity index 100% rename from src/static/icons/regular/person-sign.svg rename to apps/client/src/static/icons/regular/person-sign.svg diff --git a/src/static/icons/regular/phone-alt.svg b/apps/client/src/static/icons/regular/phone-alt.svg similarity index 100% rename from src/static/icons/regular/phone-alt.svg rename to apps/client/src/static/icons/regular/phone-alt.svg diff --git a/src/static/icons/regular/phone-laptop.svg b/apps/client/src/static/icons/regular/phone-laptop.svg similarity index 100% rename from src/static/icons/regular/phone-laptop.svg rename to apps/client/src/static/icons/regular/phone-laptop.svg diff --git a/src/static/icons/regular/phone-office.svg b/apps/client/src/static/icons/regular/phone-office.svg similarity index 100% rename from src/static/icons/regular/phone-office.svg rename to apps/client/src/static/icons/regular/phone-office.svg diff --git a/src/static/icons/regular/phone-plus.svg b/apps/client/src/static/icons/regular/phone-plus.svg similarity index 100% rename from src/static/icons/regular/phone-plus.svg rename to apps/client/src/static/icons/regular/phone-plus.svg diff --git a/src/static/icons/regular/phone-rotary.svg b/apps/client/src/static/icons/regular/phone-rotary.svg similarity index 100% rename from src/static/icons/regular/phone-rotary.svg rename to apps/client/src/static/icons/regular/phone-rotary.svg diff --git a/src/static/icons/regular/phone-slash.svg b/apps/client/src/static/icons/regular/phone-slash.svg similarity index 100% rename from src/static/icons/regular/phone-slash.svg rename to apps/client/src/static/icons/regular/phone-slash.svg diff --git a/src/static/icons/regular/phone-square-alt.svg b/apps/client/src/static/icons/regular/phone-square-alt.svg similarity index 100% rename from src/static/icons/regular/phone-square-alt.svg rename to apps/client/src/static/icons/regular/phone-square-alt.svg diff --git a/src/static/icons/regular/phone-square.svg b/apps/client/src/static/icons/regular/phone-square.svg similarity index 100% rename from src/static/icons/regular/phone-square.svg rename to apps/client/src/static/icons/regular/phone-square.svg diff --git a/src/static/icons/regular/phone-volume.svg b/apps/client/src/static/icons/regular/phone-volume.svg similarity index 100% rename from src/static/icons/regular/phone-volume.svg rename to apps/client/src/static/icons/regular/phone-volume.svg diff --git a/src/static/icons/regular/phone.svg b/apps/client/src/static/icons/regular/phone.svg similarity index 100% rename from src/static/icons/regular/phone.svg rename to apps/client/src/static/icons/regular/phone.svg diff --git a/src/static/icons/regular/photo-video.svg b/apps/client/src/static/icons/regular/photo-video.svg similarity index 100% rename from src/static/icons/regular/photo-video.svg rename to apps/client/src/static/icons/regular/photo-video.svg diff --git a/src/static/icons/regular/pi.svg b/apps/client/src/static/icons/regular/pi.svg similarity index 100% rename from src/static/icons/regular/pi.svg rename to apps/client/src/static/icons/regular/pi.svg diff --git a/src/static/icons/regular/piano-keyboard.svg b/apps/client/src/static/icons/regular/piano-keyboard.svg similarity index 100% rename from src/static/icons/regular/piano-keyboard.svg rename to apps/client/src/static/icons/regular/piano-keyboard.svg diff --git a/src/static/icons/regular/piano.svg b/apps/client/src/static/icons/regular/piano.svg similarity index 100% rename from src/static/icons/regular/piano.svg rename to apps/client/src/static/icons/regular/piano.svg diff --git a/src/static/icons/regular/pie.svg b/apps/client/src/static/icons/regular/pie.svg similarity index 100% rename from src/static/icons/regular/pie.svg rename to apps/client/src/static/icons/regular/pie.svg diff --git a/src/static/icons/regular/pig.svg b/apps/client/src/static/icons/regular/pig.svg similarity index 100% rename from src/static/icons/regular/pig.svg rename to apps/client/src/static/icons/regular/pig.svg diff --git a/src/static/icons/regular/piggy-bank.svg b/apps/client/src/static/icons/regular/piggy-bank.svg similarity index 100% rename from src/static/icons/regular/piggy-bank.svg rename to apps/client/src/static/icons/regular/piggy-bank.svg diff --git a/src/static/icons/regular/pills.svg b/apps/client/src/static/icons/regular/pills.svg similarity index 100% rename from src/static/icons/regular/pills.svg rename to apps/client/src/static/icons/regular/pills.svg diff --git a/src/static/icons/regular/pizza-slice.svg b/apps/client/src/static/icons/regular/pizza-slice.svg similarity index 100% rename from src/static/icons/regular/pizza-slice.svg rename to apps/client/src/static/icons/regular/pizza-slice.svg diff --git a/src/static/icons/regular/pizza.svg b/apps/client/src/static/icons/regular/pizza.svg similarity index 100% rename from src/static/icons/regular/pizza.svg rename to apps/client/src/static/icons/regular/pizza.svg diff --git a/src/static/icons/regular/place-of-worship.svg b/apps/client/src/static/icons/regular/place-of-worship.svg similarity index 100% rename from src/static/icons/regular/place-of-worship.svg rename to apps/client/src/static/icons/regular/place-of-worship.svg diff --git a/src/static/icons/regular/plane-alt.svg b/apps/client/src/static/icons/regular/plane-alt.svg similarity index 100% rename from src/static/icons/regular/plane-alt.svg rename to apps/client/src/static/icons/regular/plane-alt.svg diff --git a/src/static/icons/regular/plane-arrival.svg b/apps/client/src/static/icons/regular/plane-arrival.svg similarity index 100% rename from src/static/icons/regular/plane-arrival.svg rename to apps/client/src/static/icons/regular/plane-arrival.svg diff --git a/src/static/icons/regular/plane-departure.svg b/apps/client/src/static/icons/regular/plane-departure.svg similarity index 100% rename from src/static/icons/regular/plane-departure.svg rename to apps/client/src/static/icons/regular/plane-departure.svg diff --git a/src/static/icons/regular/plane.svg b/apps/client/src/static/icons/regular/plane.svg similarity index 100% rename from src/static/icons/regular/plane.svg rename to apps/client/src/static/icons/regular/plane.svg diff --git a/src/static/icons/regular/planet-moon.svg b/apps/client/src/static/icons/regular/planet-moon.svg similarity index 100% rename from src/static/icons/regular/planet-moon.svg rename to apps/client/src/static/icons/regular/planet-moon.svg diff --git a/src/static/icons/regular/planet-ringed.svg b/apps/client/src/static/icons/regular/planet-ringed.svg similarity index 100% rename from src/static/icons/regular/planet-ringed.svg rename to apps/client/src/static/icons/regular/planet-ringed.svg diff --git a/src/static/icons/regular/play-circle.svg b/apps/client/src/static/icons/regular/play-circle.svg similarity index 100% rename from src/static/icons/regular/play-circle.svg rename to apps/client/src/static/icons/regular/play-circle.svg diff --git a/src/static/icons/regular/play.svg b/apps/client/src/static/icons/regular/play.svg similarity index 100% rename from src/static/icons/regular/play.svg rename to apps/client/src/static/icons/regular/play.svg diff --git a/src/static/icons/regular/plug.svg b/apps/client/src/static/icons/regular/plug.svg similarity index 100% rename from src/static/icons/regular/plug.svg rename to apps/client/src/static/icons/regular/plug.svg diff --git a/src/static/icons/regular/plus-circle.svg b/apps/client/src/static/icons/regular/plus-circle.svg similarity index 100% rename from src/static/icons/regular/plus-circle.svg rename to apps/client/src/static/icons/regular/plus-circle.svg diff --git a/src/static/icons/regular/plus-hexagon.svg b/apps/client/src/static/icons/regular/plus-hexagon.svg similarity index 100% rename from src/static/icons/regular/plus-hexagon.svg rename to apps/client/src/static/icons/regular/plus-hexagon.svg diff --git a/src/static/icons/regular/plus-octagon.svg b/apps/client/src/static/icons/regular/plus-octagon.svg similarity index 100% rename from src/static/icons/regular/plus-octagon.svg rename to apps/client/src/static/icons/regular/plus-octagon.svg diff --git a/src/static/icons/regular/plus-square.svg b/apps/client/src/static/icons/regular/plus-square.svg similarity index 100% rename from src/static/icons/regular/plus-square.svg rename to apps/client/src/static/icons/regular/plus-square.svg diff --git a/src/static/icons/regular/plus.svg b/apps/client/src/static/icons/regular/plus.svg similarity index 100% rename from src/static/icons/regular/plus.svg rename to apps/client/src/static/icons/regular/plus.svg diff --git a/src/static/icons/regular/podcast.svg b/apps/client/src/static/icons/regular/podcast.svg similarity index 100% rename from src/static/icons/regular/podcast.svg rename to apps/client/src/static/icons/regular/podcast.svg diff --git a/src/static/icons/regular/podium-star.svg b/apps/client/src/static/icons/regular/podium-star.svg similarity index 100% rename from src/static/icons/regular/podium-star.svg rename to apps/client/src/static/icons/regular/podium-star.svg diff --git a/src/static/icons/regular/podium.svg b/apps/client/src/static/icons/regular/podium.svg similarity index 100% rename from src/static/icons/regular/podium.svg rename to apps/client/src/static/icons/regular/podium.svg diff --git a/src/static/icons/regular/police-box.svg b/apps/client/src/static/icons/regular/police-box.svg similarity index 100% rename from src/static/icons/regular/police-box.svg rename to apps/client/src/static/icons/regular/police-box.svg diff --git a/src/static/icons/regular/poll-h.svg b/apps/client/src/static/icons/regular/poll-h.svg similarity index 100% rename from src/static/icons/regular/poll-h.svg rename to apps/client/src/static/icons/regular/poll-h.svg diff --git a/src/static/icons/regular/poll-people.svg b/apps/client/src/static/icons/regular/poll-people.svg similarity index 100% rename from src/static/icons/regular/poll-people.svg rename to apps/client/src/static/icons/regular/poll-people.svg diff --git a/src/static/icons/regular/poll.svg b/apps/client/src/static/icons/regular/poll.svg similarity index 100% rename from src/static/icons/regular/poll.svg rename to apps/client/src/static/icons/regular/poll.svg diff --git a/src/static/icons/regular/poo-storm.svg b/apps/client/src/static/icons/regular/poo-storm.svg similarity index 100% rename from src/static/icons/regular/poo-storm.svg rename to apps/client/src/static/icons/regular/poo-storm.svg diff --git a/src/static/icons/regular/poo.svg b/apps/client/src/static/icons/regular/poo.svg similarity index 100% rename from src/static/icons/regular/poo.svg rename to apps/client/src/static/icons/regular/poo.svg diff --git a/src/static/icons/regular/poop.svg b/apps/client/src/static/icons/regular/poop.svg similarity index 100% rename from src/static/icons/regular/poop.svg rename to apps/client/src/static/icons/regular/poop.svg diff --git a/src/static/icons/regular/popcorn.svg b/apps/client/src/static/icons/regular/popcorn.svg similarity index 100% rename from src/static/icons/regular/popcorn.svg rename to apps/client/src/static/icons/regular/popcorn.svg diff --git a/src/static/icons/regular/portal-enter.svg b/apps/client/src/static/icons/regular/portal-enter.svg similarity index 100% rename from src/static/icons/regular/portal-enter.svg rename to apps/client/src/static/icons/regular/portal-enter.svg diff --git a/src/static/icons/regular/portal-exit.svg b/apps/client/src/static/icons/regular/portal-exit.svg similarity index 100% rename from src/static/icons/regular/portal-exit.svg rename to apps/client/src/static/icons/regular/portal-exit.svg diff --git a/src/static/icons/regular/portrait.svg b/apps/client/src/static/icons/regular/portrait.svg similarity index 100% rename from src/static/icons/regular/portrait.svg rename to apps/client/src/static/icons/regular/portrait.svg diff --git a/src/static/icons/regular/pound-sign.svg b/apps/client/src/static/icons/regular/pound-sign.svg similarity index 100% rename from src/static/icons/regular/pound-sign.svg rename to apps/client/src/static/icons/regular/pound-sign.svg diff --git a/src/static/icons/regular/power-off.svg b/apps/client/src/static/icons/regular/power-off.svg similarity index 100% rename from src/static/icons/regular/power-off.svg rename to apps/client/src/static/icons/regular/power-off.svg diff --git a/src/static/icons/regular/pray.svg b/apps/client/src/static/icons/regular/pray.svg similarity index 100% rename from src/static/icons/regular/pray.svg rename to apps/client/src/static/icons/regular/pray.svg diff --git a/src/static/icons/regular/praying-hands.svg b/apps/client/src/static/icons/regular/praying-hands.svg similarity index 100% rename from src/static/icons/regular/praying-hands.svg rename to apps/client/src/static/icons/regular/praying-hands.svg diff --git a/src/static/icons/regular/prescription-bottle-alt.svg b/apps/client/src/static/icons/regular/prescription-bottle-alt.svg similarity index 100% rename from src/static/icons/regular/prescription-bottle-alt.svg rename to apps/client/src/static/icons/regular/prescription-bottle-alt.svg diff --git a/src/static/icons/regular/prescription-bottle.svg b/apps/client/src/static/icons/regular/prescription-bottle.svg similarity index 100% rename from src/static/icons/regular/prescription-bottle.svg rename to apps/client/src/static/icons/regular/prescription-bottle.svg diff --git a/src/static/icons/regular/prescription.svg b/apps/client/src/static/icons/regular/prescription.svg similarity index 100% rename from src/static/icons/regular/prescription.svg rename to apps/client/src/static/icons/regular/prescription.svg diff --git a/src/static/icons/regular/presentation.svg b/apps/client/src/static/icons/regular/presentation.svg similarity index 100% rename from src/static/icons/regular/presentation.svg rename to apps/client/src/static/icons/regular/presentation.svg diff --git a/src/static/icons/regular/print-search.svg b/apps/client/src/static/icons/regular/print-search.svg similarity index 100% rename from src/static/icons/regular/print-search.svg rename to apps/client/src/static/icons/regular/print-search.svg diff --git a/src/static/icons/regular/print-slash.svg b/apps/client/src/static/icons/regular/print-slash.svg similarity index 100% rename from src/static/icons/regular/print-slash.svg rename to apps/client/src/static/icons/regular/print-slash.svg diff --git a/src/static/icons/regular/print.svg b/apps/client/src/static/icons/regular/print.svg similarity index 100% rename from src/static/icons/regular/print.svg rename to apps/client/src/static/icons/regular/print.svg diff --git a/src/static/icons/regular/procedures.svg b/apps/client/src/static/icons/regular/procedures.svg similarity index 100% rename from src/static/icons/regular/procedures.svg rename to apps/client/src/static/icons/regular/procedures.svg diff --git a/src/static/icons/regular/project-diagram.svg b/apps/client/src/static/icons/regular/project-diagram.svg similarity index 100% rename from src/static/icons/regular/project-diagram.svg rename to apps/client/src/static/icons/regular/project-diagram.svg diff --git a/src/static/icons/regular/projector.svg b/apps/client/src/static/icons/regular/projector.svg similarity index 100% rename from src/static/icons/regular/projector.svg rename to apps/client/src/static/icons/regular/projector.svg diff --git a/src/static/icons/regular/pumpkin.svg b/apps/client/src/static/icons/regular/pumpkin.svg similarity index 100% rename from src/static/icons/regular/pumpkin.svg rename to apps/client/src/static/icons/regular/pumpkin.svg diff --git a/src/static/icons/regular/puzzle-piece.svg b/apps/client/src/static/icons/regular/puzzle-piece.svg similarity index 100% rename from src/static/icons/regular/puzzle-piece.svg rename to apps/client/src/static/icons/regular/puzzle-piece.svg diff --git a/src/static/icons/regular/qrcode.svg b/apps/client/src/static/icons/regular/qrcode.svg similarity index 100% rename from src/static/icons/regular/qrcode.svg rename to apps/client/src/static/icons/regular/qrcode.svg diff --git a/src/static/icons/regular/question-circle.svg b/apps/client/src/static/icons/regular/question-circle.svg similarity index 100% rename from src/static/icons/regular/question-circle.svg rename to apps/client/src/static/icons/regular/question-circle.svg diff --git a/src/static/icons/regular/question-square.svg b/apps/client/src/static/icons/regular/question-square.svg similarity index 100% rename from src/static/icons/regular/question-square.svg rename to apps/client/src/static/icons/regular/question-square.svg diff --git a/src/static/icons/regular/question.svg b/apps/client/src/static/icons/regular/question.svg similarity index 100% rename from src/static/icons/regular/question.svg rename to apps/client/src/static/icons/regular/question.svg diff --git a/src/static/icons/regular/quidditch.svg b/apps/client/src/static/icons/regular/quidditch.svg similarity index 100% rename from src/static/icons/regular/quidditch.svg rename to apps/client/src/static/icons/regular/quidditch.svg diff --git a/src/static/icons/regular/quote-left.svg b/apps/client/src/static/icons/regular/quote-left.svg similarity index 100% rename from src/static/icons/regular/quote-left.svg rename to apps/client/src/static/icons/regular/quote-left.svg diff --git a/src/static/icons/regular/quote-right.svg b/apps/client/src/static/icons/regular/quote-right.svg similarity index 100% rename from src/static/icons/regular/quote-right.svg rename to apps/client/src/static/icons/regular/quote-right.svg diff --git a/src/static/icons/regular/quran.svg b/apps/client/src/static/icons/regular/quran.svg similarity index 100% rename from src/static/icons/regular/quran.svg rename to apps/client/src/static/icons/regular/quran.svg diff --git a/src/static/icons/regular/rabbit-fast.svg b/apps/client/src/static/icons/regular/rabbit-fast.svg similarity index 100% rename from src/static/icons/regular/rabbit-fast.svg rename to apps/client/src/static/icons/regular/rabbit-fast.svg diff --git a/src/static/icons/regular/rabbit.svg b/apps/client/src/static/icons/regular/rabbit.svg similarity index 100% rename from src/static/icons/regular/rabbit.svg rename to apps/client/src/static/icons/regular/rabbit.svg diff --git a/src/static/icons/regular/racquet.svg b/apps/client/src/static/icons/regular/racquet.svg similarity index 100% rename from src/static/icons/regular/racquet.svg rename to apps/client/src/static/icons/regular/racquet.svg diff --git a/src/static/icons/regular/radar.svg b/apps/client/src/static/icons/regular/radar.svg similarity index 100% rename from src/static/icons/regular/radar.svg rename to apps/client/src/static/icons/regular/radar.svg diff --git a/src/static/icons/regular/radiation-alt.svg b/apps/client/src/static/icons/regular/radiation-alt.svg similarity index 100% rename from src/static/icons/regular/radiation-alt.svg rename to apps/client/src/static/icons/regular/radiation-alt.svg diff --git a/src/static/icons/regular/radiation.svg b/apps/client/src/static/icons/regular/radiation.svg similarity index 100% rename from src/static/icons/regular/radiation.svg rename to apps/client/src/static/icons/regular/radiation.svg diff --git a/src/static/icons/regular/radio-alt.svg b/apps/client/src/static/icons/regular/radio-alt.svg similarity index 100% rename from src/static/icons/regular/radio-alt.svg rename to apps/client/src/static/icons/regular/radio-alt.svg diff --git a/src/static/icons/regular/radio.svg b/apps/client/src/static/icons/regular/radio.svg similarity index 100% rename from src/static/icons/regular/radio.svg rename to apps/client/src/static/icons/regular/radio.svg diff --git a/src/static/icons/regular/rainbow.svg b/apps/client/src/static/icons/regular/rainbow.svg similarity index 100% rename from src/static/icons/regular/rainbow.svg rename to apps/client/src/static/icons/regular/rainbow.svg diff --git a/src/static/icons/regular/raindrops.svg b/apps/client/src/static/icons/regular/raindrops.svg similarity index 100% rename from src/static/icons/regular/raindrops.svg rename to apps/client/src/static/icons/regular/raindrops.svg diff --git a/src/static/icons/regular/ram.svg b/apps/client/src/static/icons/regular/ram.svg similarity index 100% rename from src/static/icons/regular/ram.svg rename to apps/client/src/static/icons/regular/ram.svg diff --git a/src/static/icons/regular/ramp-loading.svg b/apps/client/src/static/icons/regular/ramp-loading.svg similarity index 100% rename from src/static/icons/regular/ramp-loading.svg rename to apps/client/src/static/icons/regular/ramp-loading.svg diff --git a/src/static/icons/regular/random.svg b/apps/client/src/static/icons/regular/random.svg similarity index 100% rename from src/static/icons/regular/random.svg rename to apps/client/src/static/icons/regular/random.svg diff --git a/src/static/icons/regular/raygun.svg b/apps/client/src/static/icons/regular/raygun.svg similarity index 100% rename from src/static/icons/regular/raygun.svg rename to apps/client/src/static/icons/regular/raygun.svg diff --git a/src/static/icons/regular/receipt.svg b/apps/client/src/static/icons/regular/receipt.svg similarity index 100% rename from src/static/icons/regular/receipt.svg rename to apps/client/src/static/icons/regular/receipt.svg diff --git a/src/static/icons/regular/record-vinyl.svg b/apps/client/src/static/icons/regular/record-vinyl.svg similarity index 100% rename from src/static/icons/regular/record-vinyl.svg rename to apps/client/src/static/icons/regular/record-vinyl.svg diff --git a/src/static/icons/regular/rectangle-landscape.svg b/apps/client/src/static/icons/regular/rectangle-landscape.svg similarity index 100% rename from src/static/icons/regular/rectangle-landscape.svg rename to apps/client/src/static/icons/regular/rectangle-landscape.svg diff --git a/src/static/icons/regular/rectangle-portrait.svg b/apps/client/src/static/icons/regular/rectangle-portrait.svg similarity index 100% rename from src/static/icons/regular/rectangle-portrait.svg rename to apps/client/src/static/icons/regular/rectangle-portrait.svg diff --git a/src/static/icons/regular/rectangle-wide.svg b/apps/client/src/static/icons/regular/rectangle-wide.svg similarity index 100% rename from src/static/icons/regular/rectangle-wide.svg rename to apps/client/src/static/icons/regular/rectangle-wide.svg diff --git a/src/static/icons/regular/recycle.svg b/apps/client/src/static/icons/regular/recycle.svg similarity index 100% rename from src/static/icons/regular/recycle.svg rename to apps/client/src/static/icons/regular/recycle.svg diff --git a/src/static/icons/regular/redo-alt.svg b/apps/client/src/static/icons/regular/redo-alt.svg similarity index 100% rename from src/static/icons/regular/redo-alt.svg rename to apps/client/src/static/icons/regular/redo-alt.svg diff --git a/src/static/icons/regular/redo.svg b/apps/client/src/static/icons/regular/redo.svg similarity index 100% rename from src/static/icons/regular/redo.svg rename to apps/client/src/static/icons/regular/redo.svg diff --git a/src/static/icons/regular/refrigerator.svg b/apps/client/src/static/icons/regular/refrigerator.svg similarity index 100% rename from src/static/icons/regular/refrigerator.svg rename to apps/client/src/static/icons/regular/refrigerator.svg diff --git a/src/static/icons/regular/registered.svg b/apps/client/src/static/icons/regular/registered.svg similarity index 100% rename from src/static/icons/regular/registered.svg rename to apps/client/src/static/icons/regular/registered.svg diff --git a/src/static/icons/regular/remove-format.svg b/apps/client/src/static/icons/regular/remove-format.svg similarity index 100% rename from src/static/icons/regular/remove-format.svg rename to apps/client/src/static/icons/regular/remove-format.svg diff --git a/src/static/icons/regular/repeat-1-alt.svg b/apps/client/src/static/icons/regular/repeat-1-alt.svg similarity index 100% rename from src/static/icons/regular/repeat-1-alt.svg rename to apps/client/src/static/icons/regular/repeat-1-alt.svg diff --git a/src/static/icons/regular/repeat-1.svg b/apps/client/src/static/icons/regular/repeat-1.svg similarity index 100% rename from src/static/icons/regular/repeat-1.svg rename to apps/client/src/static/icons/regular/repeat-1.svg diff --git a/src/static/icons/regular/repeat-alt.svg b/apps/client/src/static/icons/regular/repeat-alt.svg similarity index 100% rename from src/static/icons/regular/repeat-alt.svg rename to apps/client/src/static/icons/regular/repeat-alt.svg diff --git a/src/static/icons/regular/repeat.svg b/apps/client/src/static/icons/regular/repeat.svg similarity index 100% rename from src/static/icons/regular/repeat.svg rename to apps/client/src/static/icons/regular/repeat.svg diff --git a/src/static/icons/regular/reply-all.svg b/apps/client/src/static/icons/regular/reply-all.svg similarity index 100% rename from src/static/icons/regular/reply-all.svg rename to apps/client/src/static/icons/regular/reply-all.svg diff --git a/src/static/icons/regular/reply.svg b/apps/client/src/static/icons/regular/reply.svg similarity index 100% rename from src/static/icons/regular/reply.svg rename to apps/client/src/static/icons/regular/reply.svg diff --git a/src/static/icons/regular/republican.svg b/apps/client/src/static/icons/regular/republican.svg similarity index 100% rename from src/static/icons/regular/republican.svg rename to apps/client/src/static/icons/regular/republican.svg diff --git a/src/static/icons/regular/restroom.svg b/apps/client/src/static/icons/regular/restroom.svg similarity index 100% rename from src/static/icons/regular/restroom.svg rename to apps/client/src/static/icons/regular/restroom.svg diff --git a/src/static/icons/regular/retweet-alt.svg b/apps/client/src/static/icons/regular/retweet-alt.svg similarity index 100% rename from src/static/icons/regular/retweet-alt.svg rename to apps/client/src/static/icons/regular/retweet-alt.svg diff --git a/src/static/icons/regular/retweet.svg b/apps/client/src/static/icons/regular/retweet.svg similarity index 100% rename from src/static/icons/regular/retweet.svg rename to apps/client/src/static/icons/regular/retweet.svg diff --git a/src/static/icons/regular/ribbon.svg b/apps/client/src/static/icons/regular/ribbon.svg similarity index 100% rename from src/static/icons/regular/ribbon.svg rename to apps/client/src/static/icons/regular/ribbon.svg diff --git a/src/static/icons/regular/ring.svg b/apps/client/src/static/icons/regular/ring.svg similarity index 100% rename from src/static/icons/regular/ring.svg rename to apps/client/src/static/icons/regular/ring.svg diff --git a/src/static/icons/regular/rings-wedding.svg b/apps/client/src/static/icons/regular/rings-wedding.svg similarity index 100% rename from src/static/icons/regular/rings-wedding.svg rename to apps/client/src/static/icons/regular/rings-wedding.svg diff --git a/src/static/icons/regular/road.svg b/apps/client/src/static/icons/regular/road.svg similarity index 100% rename from src/static/icons/regular/road.svg rename to apps/client/src/static/icons/regular/road.svg diff --git a/src/static/icons/regular/robot.svg b/apps/client/src/static/icons/regular/robot.svg similarity index 100% rename from src/static/icons/regular/robot.svg rename to apps/client/src/static/icons/regular/robot.svg diff --git a/src/static/icons/regular/rocket-launch.svg b/apps/client/src/static/icons/regular/rocket-launch.svg similarity index 100% rename from src/static/icons/regular/rocket-launch.svg rename to apps/client/src/static/icons/regular/rocket-launch.svg diff --git a/src/static/icons/regular/rocket.svg b/apps/client/src/static/icons/regular/rocket.svg similarity index 100% rename from src/static/icons/regular/rocket.svg rename to apps/client/src/static/icons/regular/rocket.svg diff --git a/src/static/icons/regular/route-highway.svg b/apps/client/src/static/icons/regular/route-highway.svg similarity index 100% rename from src/static/icons/regular/route-highway.svg rename to apps/client/src/static/icons/regular/route-highway.svg diff --git a/src/static/icons/regular/route-interstate.svg b/apps/client/src/static/icons/regular/route-interstate.svg similarity index 100% rename from src/static/icons/regular/route-interstate.svg rename to apps/client/src/static/icons/regular/route-interstate.svg diff --git a/src/static/icons/regular/route.svg b/apps/client/src/static/icons/regular/route.svg similarity index 100% rename from src/static/icons/regular/route.svg rename to apps/client/src/static/icons/regular/route.svg diff --git a/src/static/icons/regular/router.svg b/apps/client/src/static/icons/regular/router.svg similarity index 100% rename from src/static/icons/regular/router.svg rename to apps/client/src/static/icons/regular/router.svg diff --git a/src/static/icons/regular/rss-square.svg b/apps/client/src/static/icons/regular/rss-square.svg similarity index 100% rename from src/static/icons/regular/rss-square.svg rename to apps/client/src/static/icons/regular/rss-square.svg diff --git a/src/static/icons/regular/rss.svg b/apps/client/src/static/icons/regular/rss.svg similarity index 100% rename from src/static/icons/regular/rss.svg rename to apps/client/src/static/icons/regular/rss.svg diff --git a/src/static/icons/regular/ruble-sign.svg b/apps/client/src/static/icons/regular/ruble-sign.svg similarity index 100% rename from src/static/icons/regular/ruble-sign.svg rename to apps/client/src/static/icons/regular/ruble-sign.svg diff --git a/src/static/icons/regular/ruler-combined.svg b/apps/client/src/static/icons/regular/ruler-combined.svg similarity index 100% rename from src/static/icons/regular/ruler-combined.svg rename to apps/client/src/static/icons/regular/ruler-combined.svg diff --git a/src/static/icons/regular/ruler-horizontal.svg b/apps/client/src/static/icons/regular/ruler-horizontal.svg similarity index 100% rename from src/static/icons/regular/ruler-horizontal.svg rename to apps/client/src/static/icons/regular/ruler-horizontal.svg diff --git a/src/static/icons/regular/ruler-triangle.svg b/apps/client/src/static/icons/regular/ruler-triangle.svg similarity index 100% rename from src/static/icons/regular/ruler-triangle.svg rename to apps/client/src/static/icons/regular/ruler-triangle.svg diff --git a/src/static/icons/regular/ruler-vertical.svg b/apps/client/src/static/icons/regular/ruler-vertical.svg similarity index 100% rename from src/static/icons/regular/ruler-vertical.svg rename to apps/client/src/static/icons/regular/ruler-vertical.svg diff --git a/src/static/icons/regular/ruler.svg b/apps/client/src/static/icons/regular/ruler.svg similarity index 100% rename from src/static/icons/regular/ruler.svg rename to apps/client/src/static/icons/regular/ruler.svg diff --git a/src/static/icons/regular/running.svg b/apps/client/src/static/icons/regular/running.svg similarity index 100% rename from src/static/icons/regular/running.svg rename to apps/client/src/static/icons/regular/running.svg diff --git a/src/static/icons/regular/rupee-sign.svg b/apps/client/src/static/icons/regular/rupee-sign.svg similarity index 100% rename from src/static/icons/regular/rupee-sign.svg rename to apps/client/src/static/icons/regular/rupee-sign.svg diff --git a/src/static/icons/regular/rv.svg b/apps/client/src/static/icons/regular/rv.svg similarity index 100% rename from src/static/icons/regular/rv.svg rename to apps/client/src/static/icons/regular/rv.svg diff --git a/src/static/icons/regular/sack-dollar.svg b/apps/client/src/static/icons/regular/sack-dollar.svg similarity index 100% rename from src/static/icons/regular/sack-dollar.svg rename to apps/client/src/static/icons/regular/sack-dollar.svg diff --git a/src/static/icons/regular/sack.svg b/apps/client/src/static/icons/regular/sack.svg similarity index 100% rename from src/static/icons/regular/sack.svg rename to apps/client/src/static/icons/regular/sack.svg diff --git a/src/static/icons/regular/sad-cry.svg b/apps/client/src/static/icons/regular/sad-cry.svg similarity index 100% rename from src/static/icons/regular/sad-cry.svg rename to apps/client/src/static/icons/regular/sad-cry.svg diff --git a/src/static/icons/regular/sad-tear.svg b/apps/client/src/static/icons/regular/sad-tear.svg similarity index 100% rename from src/static/icons/regular/sad-tear.svg rename to apps/client/src/static/icons/regular/sad-tear.svg diff --git a/src/static/icons/regular/salad.svg b/apps/client/src/static/icons/regular/salad.svg similarity index 100% rename from src/static/icons/regular/salad.svg rename to apps/client/src/static/icons/regular/salad.svg diff --git a/src/static/icons/regular/sandwich.svg b/apps/client/src/static/icons/regular/sandwich.svg similarity index 100% rename from src/static/icons/regular/sandwich.svg rename to apps/client/src/static/icons/regular/sandwich.svg diff --git a/src/static/icons/regular/satellite-dish.svg b/apps/client/src/static/icons/regular/satellite-dish.svg similarity index 100% rename from src/static/icons/regular/satellite-dish.svg rename to apps/client/src/static/icons/regular/satellite-dish.svg diff --git a/src/static/icons/regular/satellite.svg b/apps/client/src/static/icons/regular/satellite.svg similarity index 100% rename from src/static/icons/regular/satellite.svg rename to apps/client/src/static/icons/regular/satellite.svg diff --git a/src/static/icons/regular/sausage.svg b/apps/client/src/static/icons/regular/sausage.svg similarity index 100% rename from src/static/icons/regular/sausage.svg rename to apps/client/src/static/icons/regular/sausage.svg diff --git a/src/static/icons/regular/save.svg b/apps/client/src/static/icons/regular/save.svg similarity index 100% rename from src/static/icons/regular/save.svg rename to apps/client/src/static/icons/regular/save.svg diff --git a/src/static/icons/regular/sax-hot.svg b/apps/client/src/static/icons/regular/sax-hot.svg similarity index 100% rename from src/static/icons/regular/sax-hot.svg rename to apps/client/src/static/icons/regular/sax-hot.svg diff --git a/src/static/icons/regular/saxophone.svg b/apps/client/src/static/icons/regular/saxophone.svg similarity index 100% rename from src/static/icons/regular/saxophone.svg rename to apps/client/src/static/icons/regular/saxophone.svg diff --git a/src/static/icons/regular/scalpel-path.svg b/apps/client/src/static/icons/regular/scalpel-path.svg similarity index 100% rename from src/static/icons/regular/scalpel-path.svg rename to apps/client/src/static/icons/regular/scalpel-path.svg diff --git a/src/static/icons/regular/scalpel.svg b/apps/client/src/static/icons/regular/scalpel.svg similarity index 100% rename from src/static/icons/regular/scalpel.svg rename to apps/client/src/static/icons/regular/scalpel.svg diff --git a/src/static/icons/regular/scanner-image.svg b/apps/client/src/static/icons/regular/scanner-image.svg similarity index 100% rename from src/static/icons/regular/scanner-image.svg rename to apps/client/src/static/icons/regular/scanner-image.svg diff --git a/src/static/icons/regular/scanner-keyboard.svg b/apps/client/src/static/icons/regular/scanner-keyboard.svg similarity index 100% rename from src/static/icons/regular/scanner-keyboard.svg rename to apps/client/src/static/icons/regular/scanner-keyboard.svg diff --git a/src/static/icons/regular/scanner-touchscreen.svg b/apps/client/src/static/icons/regular/scanner-touchscreen.svg similarity index 100% rename from src/static/icons/regular/scanner-touchscreen.svg rename to apps/client/src/static/icons/regular/scanner-touchscreen.svg diff --git a/src/static/icons/regular/scanner.svg b/apps/client/src/static/icons/regular/scanner.svg similarity index 100% rename from src/static/icons/regular/scanner.svg rename to apps/client/src/static/icons/regular/scanner.svg diff --git a/src/static/icons/regular/scarecrow.svg b/apps/client/src/static/icons/regular/scarecrow.svg similarity index 100% rename from src/static/icons/regular/scarecrow.svg rename to apps/client/src/static/icons/regular/scarecrow.svg diff --git a/src/static/icons/regular/scarf.svg b/apps/client/src/static/icons/regular/scarf.svg similarity index 100% rename from src/static/icons/regular/scarf.svg rename to apps/client/src/static/icons/regular/scarf.svg diff --git a/src/static/icons/regular/school.svg b/apps/client/src/static/icons/regular/school.svg similarity index 100% rename from src/static/icons/regular/school.svg rename to apps/client/src/static/icons/regular/school.svg diff --git a/src/static/icons/regular/screwdriver.svg b/apps/client/src/static/icons/regular/screwdriver.svg similarity index 100% rename from src/static/icons/regular/screwdriver.svg rename to apps/client/src/static/icons/regular/screwdriver.svg diff --git a/src/static/icons/regular/scroll-old.svg b/apps/client/src/static/icons/regular/scroll-old.svg similarity index 100% rename from src/static/icons/regular/scroll-old.svg rename to apps/client/src/static/icons/regular/scroll-old.svg diff --git a/src/static/icons/regular/scroll.svg b/apps/client/src/static/icons/regular/scroll.svg similarity index 100% rename from src/static/icons/regular/scroll.svg rename to apps/client/src/static/icons/regular/scroll.svg diff --git a/src/static/icons/regular/scrubber.svg b/apps/client/src/static/icons/regular/scrubber.svg similarity index 100% rename from src/static/icons/regular/scrubber.svg rename to apps/client/src/static/icons/regular/scrubber.svg diff --git a/src/static/icons/regular/scythe.svg b/apps/client/src/static/icons/regular/scythe.svg similarity index 100% rename from src/static/icons/regular/scythe.svg rename to apps/client/src/static/icons/regular/scythe.svg diff --git a/src/static/icons/regular/sd-card.svg b/apps/client/src/static/icons/regular/sd-card.svg similarity index 100% rename from src/static/icons/regular/sd-card.svg rename to apps/client/src/static/icons/regular/sd-card.svg diff --git a/src/static/icons/regular/search-dollar.svg b/apps/client/src/static/icons/regular/search-dollar.svg similarity index 100% rename from src/static/icons/regular/search-dollar.svg rename to apps/client/src/static/icons/regular/search-dollar.svg diff --git a/src/static/icons/regular/search-location.svg b/apps/client/src/static/icons/regular/search-location.svg similarity index 100% rename from src/static/icons/regular/search-location.svg rename to apps/client/src/static/icons/regular/search-location.svg diff --git a/src/static/icons/regular/search-minus.svg b/apps/client/src/static/icons/regular/search-minus.svg similarity index 100% rename from src/static/icons/regular/search-minus.svg rename to apps/client/src/static/icons/regular/search-minus.svg diff --git a/src/static/icons/regular/search-plus.svg b/apps/client/src/static/icons/regular/search-plus.svg similarity index 100% rename from src/static/icons/regular/search-plus.svg rename to apps/client/src/static/icons/regular/search-plus.svg diff --git a/src/static/icons/regular/search.svg b/apps/client/src/static/icons/regular/search.svg similarity index 100% rename from src/static/icons/regular/search.svg rename to apps/client/src/static/icons/regular/search.svg diff --git a/src/static/icons/regular/seedling.svg b/apps/client/src/static/icons/regular/seedling.svg similarity index 100% rename from src/static/icons/regular/seedling.svg rename to apps/client/src/static/icons/regular/seedling.svg diff --git a/src/static/icons/regular/send-back.svg b/apps/client/src/static/icons/regular/send-back.svg similarity index 100% rename from src/static/icons/regular/send-back.svg rename to apps/client/src/static/icons/regular/send-back.svg diff --git a/src/static/icons/regular/send-backward.svg b/apps/client/src/static/icons/regular/send-backward.svg similarity index 100% rename from src/static/icons/regular/send-backward.svg rename to apps/client/src/static/icons/regular/send-backward.svg diff --git a/src/static/icons/regular/sensor-alert.svg b/apps/client/src/static/icons/regular/sensor-alert.svg similarity index 100% rename from src/static/icons/regular/sensor-alert.svg rename to apps/client/src/static/icons/regular/sensor-alert.svg diff --git a/src/static/icons/regular/sensor-fire.svg b/apps/client/src/static/icons/regular/sensor-fire.svg similarity index 100% rename from src/static/icons/regular/sensor-fire.svg rename to apps/client/src/static/icons/regular/sensor-fire.svg diff --git a/src/static/icons/regular/sensor-on.svg b/apps/client/src/static/icons/regular/sensor-on.svg similarity index 100% rename from src/static/icons/regular/sensor-on.svg rename to apps/client/src/static/icons/regular/sensor-on.svg diff --git a/src/static/icons/regular/sensor-smoke.svg b/apps/client/src/static/icons/regular/sensor-smoke.svg similarity index 100% rename from src/static/icons/regular/sensor-smoke.svg rename to apps/client/src/static/icons/regular/sensor-smoke.svg diff --git a/src/static/icons/regular/sensor.svg b/apps/client/src/static/icons/regular/sensor.svg similarity index 100% rename from src/static/icons/regular/sensor.svg rename to apps/client/src/static/icons/regular/sensor.svg diff --git a/src/static/icons/regular/server.svg b/apps/client/src/static/icons/regular/server.svg similarity index 100% rename from src/static/icons/regular/server.svg rename to apps/client/src/static/icons/regular/server.svg diff --git a/src/static/icons/regular/shapes.svg b/apps/client/src/static/icons/regular/shapes.svg similarity index 100% rename from src/static/icons/regular/shapes.svg rename to apps/client/src/static/icons/regular/shapes.svg diff --git a/src/static/icons/regular/share-all.svg b/apps/client/src/static/icons/regular/share-all.svg similarity index 100% rename from src/static/icons/regular/share-all.svg rename to apps/client/src/static/icons/regular/share-all.svg diff --git a/src/static/icons/regular/share-alt-square.svg b/apps/client/src/static/icons/regular/share-alt-square.svg similarity index 100% rename from src/static/icons/regular/share-alt-square.svg rename to apps/client/src/static/icons/regular/share-alt-square.svg diff --git a/src/static/icons/regular/share-alt.svg b/apps/client/src/static/icons/regular/share-alt.svg similarity index 100% rename from src/static/icons/regular/share-alt.svg rename to apps/client/src/static/icons/regular/share-alt.svg diff --git a/src/static/icons/regular/share-square.svg b/apps/client/src/static/icons/regular/share-square.svg similarity index 100% rename from src/static/icons/regular/share-square.svg rename to apps/client/src/static/icons/regular/share-square.svg diff --git a/src/static/icons/regular/share.svg b/apps/client/src/static/icons/regular/share.svg similarity index 100% rename from src/static/icons/regular/share.svg rename to apps/client/src/static/icons/regular/share.svg diff --git a/src/static/icons/regular/sheep.svg b/apps/client/src/static/icons/regular/sheep.svg similarity index 100% rename from src/static/icons/regular/sheep.svg rename to apps/client/src/static/icons/regular/sheep.svg diff --git a/src/static/icons/regular/shekel-sign.svg b/apps/client/src/static/icons/regular/shekel-sign.svg similarity index 100% rename from src/static/icons/regular/shekel-sign.svg rename to apps/client/src/static/icons/regular/shekel-sign.svg diff --git a/src/static/icons/regular/shield-alt.svg b/apps/client/src/static/icons/regular/shield-alt.svg similarity index 100% rename from src/static/icons/regular/shield-alt.svg rename to apps/client/src/static/icons/regular/shield-alt.svg diff --git a/src/static/icons/regular/shield-check.svg b/apps/client/src/static/icons/regular/shield-check.svg similarity index 100% rename from src/static/icons/regular/shield-check.svg rename to apps/client/src/static/icons/regular/shield-check.svg diff --git a/src/static/icons/regular/shield-cross.svg b/apps/client/src/static/icons/regular/shield-cross.svg similarity index 100% rename from src/static/icons/regular/shield-cross.svg rename to apps/client/src/static/icons/regular/shield-cross.svg diff --git a/src/static/icons/regular/shield.svg b/apps/client/src/static/icons/regular/shield.svg similarity index 100% rename from src/static/icons/regular/shield.svg rename to apps/client/src/static/icons/regular/shield.svg diff --git a/src/static/icons/regular/ship.svg b/apps/client/src/static/icons/regular/ship.svg similarity index 100% rename from src/static/icons/regular/ship.svg rename to apps/client/src/static/icons/regular/ship.svg diff --git a/src/static/icons/regular/shipping-fast.svg b/apps/client/src/static/icons/regular/shipping-fast.svg similarity index 100% rename from src/static/icons/regular/shipping-fast.svg rename to apps/client/src/static/icons/regular/shipping-fast.svg diff --git a/src/static/icons/regular/shipping-timed.svg b/apps/client/src/static/icons/regular/shipping-timed.svg similarity index 100% rename from src/static/icons/regular/shipping-timed.svg rename to apps/client/src/static/icons/regular/shipping-timed.svg diff --git a/src/static/icons/regular/shish-kebab.svg b/apps/client/src/static/icons/regular/shish-kebab.svg similarity index 100% rename from src/static/icons/regular/shish-kebab.svg rename to apps/client/src/static/icons/regular/shish-kebab.svg diff --git a/src/static/icons/regular/shoe-prints.svg b/apps/client/src/static/icons/regular/shoe-prints.svg similarity index 100% rename from src/static/icons/regular/shoe-prints.svg rename to apps/client/src/static/icons/regular/shoe-prints.svg diff --git a/src/static/icons/regular/shopping-bag.svg b/apps/client/src/static/icons/regular/shopping-bag.svg similarity index 100% rename from src/static/icons/regular/shopping-bag.svg rename to apps/client/src/static/icons/regular/shopping-bag.svg diff --git a/src/static/icons/regular/shopping-basket.svg b/apps/client/src/static/icons/regular/shopping-basket.svg similarity index 100% rename from src/static/icons/regular/shopping-basket.svg rename to apps/client/src/static/icons/regular/shopping-basket.svg diff --git a/src/static/icons/regular/shopping-cart.svg b/apps/client/src/static/icons/regular/shopping-cart.svg similarity index 100% rename from src/static/icons/regular/shopping-cart.svg rename to apps/client/src/static/icons/regular/shopping-cart.svg diff --git a/src/static/icons/regular/shovel-snow.svg b/apps/client/src/static/icons/regular/shovel-snow.svg similarity index 100% rename from src/static/icons/regular/shovel-snow.svg rename to apps/client/src/static/icons/regular/shovel-snow.svg diff --git a/src/static/icons/regular/shovel.svg b/apps/client/src/static/icons/regular/shovel.svg similarity index 100% rename from src/static/icons/regular/shovel.svg rename to apps/client/src/static/icons/regular/shovel.svg diff --git a/src/static/icons/regular/shower.svg b/apps/client/src/static/icons/regular/shower.svg similarity index 100% rename from src/static/icons/regular/shower.svg rename to apps/client/src/static/icons/regular/shower.svg diff --git a/src/static/icons/regular/shredder.svg b/apps/client/src/static/icons/regular/shredder.svg similarity index 100% rename from src/static/icons/regular/shredder.svg rename to apps/client/src/static/icons/regular/shredder.svg diff --git a/src/static/icons/regular/shuttle-van.svg b/apps/client/src/static/icons/regular/shuttle-van.svg similarity index 100% rename from src/static/icons/regular/shuttle-van.svg rename to apps/client/src/static/icons/regular/shuttle-van.svg diff --git a/src/static/icons/regular/shuttlecock.svg b/apps/client/src/static/icons/regular/shuttlecock.svg similarity index 100% rename from src/static/icons/regular/shuttlecock.svg rename to apps/client/src/static/icons/regular/shuttlecock.svg diff --git a/src/static/icons/regular/sickle.svg b/apps/client/src/static/icons/regular/sickle.svg similarity index 100% rename from src/static/icons/regular/sickle.svg rename to apps/client/src/static/icons/regular/sickle.svg diff --git a/src/static/icons/regular/sigma.svg b/apps/client/src/static/icons/regular/sigma.svg similarity index 100% rename from src/static/icons/regular/sigma.svg rename to apps/client/src/static/icons/regular/sigma.svg diff --git a/src/static/icons/regular/sign-in-alt.svg b/apps/client/src/static/icons/regular/sign-in-alt.svg similarity index 100% rename from src/static/icons/regular/sign-in-alt.svg rename to apps/client/src/static/icons/regular/sign-in-alt.svg diff --git a/src/static/icons/regular/sign-in.svg b/apps/client/src/static/icons/regular/sign-in.svg similarity index 100% rename from src/static/icons/regular/sign-in.svg rename to apps/client/src/static/icons/regular/sign-in.svg diff --git a/src/static/icons/regular/sign-language.svg b/apps/client/src/static/icons/regular/sign-language.svg similarity index 100% rename from src/static/icons/regular/sign-language.svg rename to apps/client/src/static/icons/regular/sign-language.svg diff --git a/src/static/icons/regular/sign-out-alt.svg b/apps/client/src/static/icons/regular/sign-out-alt.svg similarity index 100% rename from src/static/icons/regular/sign-out-alt.svg rename to apps/client/src/static/icons/regular/sign-out-alt.svg diff --git a/src/static/icons/regular/sign-out.svg b/apps/client/src/static/icons/regular/sign-out.svg similarity index 100% rename from src/static/icons/regular/sign-out.svg rename to apps/client/src/static/icons/regular/sign-out.svg diff --git a/src/static/icons/regular/sign.svg b/apps/client/src/static/icons/regular/sign.svg similarity index 100% rename from src/static/icons/regular/sign.svg rename to apps/client/src/static/icons/regular/sign.svg diff --git a/src/static/icons/regular/signal-1.svg b/apps/client/src/static/icons/regular/signal-1.svg similarity index 100% rename from src/static/icons/regular/signal-1.svg rename to apps/client/src/static/icons/regular/signal-1.svg diff --git a/src/static/icons/regular/signal-2.svg b/apps/client/src/static/icons/regular/signal-2.svg similarity index 100% rename from src/static/icons/regular/signal-2.svg rename to apps/client/src/static/icons/regular/signal-2.svg diff --git a/src/static/icons/regular/signal-3.svg b/apps/client/src/static/icons/regular/signal-3.svg similarity index 100% rename from src/static/icons/regular/signal-3.svg rename to apps/client/src/static/icons/regular/signal-3.svg diff --git a/src/static/icons/regular/signal-4.svg b/apps/client/src/static/icons/regular/signal-4.svg similarity index 100% rename from src/static/icons/regular/signal-4.svg rename to apps/client/src/static/icons/regular/signal-4.svg diff --git a/src/static/icons/regular/signal-alt-1.svg b/apps/client/src/static/icons/regular/signal-alt-1.svg similarity index 100% rename from src/static/icons/regular/signal-alt-1.svg rename to apps/client/src/static/icons/regular/signal-alt-1.svg diff --git a/src/static/icons/regular/signal-alt-2.svg b/apps/client/src/static/icons/regular/signal-alt-2.svg similarity index 100% rename from src/static/icons/regular/signal-alt-2.svg rename to apps/client/src/static/icons/regular/signal-alt-2.svg diff --git a/src/static/icons/regular/signal-alt-3.svg b/apps/client/src/static/icons/regular/signal-alt-3.svg similarity index 100% rename from src/static/icons/regular/signal-alt-3.svg rename to apps/client/src/static/icons/regular/signal-alt-3.svg diff --git a/src/static/icons/regular/signal-alt-slash.svg b/apps/client/src/static/icons/regular/signal-alt-slash.svg similarity index 100% rename from src/static/icons/regular/signal-alt-slash.svg rename to apps/client/src/static/icons/regular/signal-alt-slash.svg diff --git a/src/static/icons/regular/signal-alt.svg b/apps/client/src/static/icons/regular/signal-alt.svg similarity index 100% rename from src/static/icons/regular/signal-alt.svg rename to apps/client/src/static/icons/regular/signal-alt.svg diff --git a/src/static/icons/regular/signal-slash.svg b/apps/client/src/static/icons/regular/signal-slash.svg similarity index 100% rename from src/static/icons/regular/signal-slash.svg rename to apps/client/src/static/icons/regular/signal-slash.svg diff --git a/src/static/icons/regular/signal-stream.svg b/apps/client/src/static/icons/regular/signal-stream.svg similarity index 100% rename from src/static/icons/regular/signal-stream.svg rename to apps/client/src/static/icons/regular/signal-stream.svg diff --git a/src/static/icons/regular/signal.svg b/apps/client/src/static/icons/regular/signal.svg similarity index 100% rename from src/static/icons/regular/signal.svg rename to apps/client/src/static/icons/regular/signal.svg diff --git a/src/static/icons/regular/signature.svg b/apps/client/src/static/icons/regular/signature.svg similarity index 100% rename from src/static/icons/regular/signature.svg rename to apps/client/src/static/icons/regular/signature.svg diff --git a/src/static/icons/regular/sim-card.svg b/apps/client/src/static/icons/regular/sim-card.svg similarity index 100% rename from src/static/icons/regular/sim-card.svg rename to apps/client/src/static/icons/regular/sim-card.svg diff --git a/src/static/icons/regular/siren-on.svg b/apps/client/src/static/icons/regular/siren-on.svg similarity index 100% rename from src/static/icons/regular/siren-on.svg rename to apps/client/src/static/icons/regular/siren-on.svg diff --git a/src/static/icons/regular/siren.svg b/apps/client/src/static/icons/regular/siren.svg similarity index 100% rename from src/static/icons/regular/siren.svg rename to apps/client/src/static/icons/regular/siren.svg diff --git a/src/static/icons/regular/sitemap.svg b/apps/client/src/static/icons/regular/sitemap.svg similarity index 100% rename from src/static/icons/regular/sitemap.svg rename to apps/client/src/static/icons/regular/sitemap.svg diff --git a/src/static/icons/regular/skating.svg b/apps/client/src/static/icons/regular/skating.svg similarity index 100% rename from src/static/icons/regular/skating.svg rename to apps/client/src/static/icons/regular/skating.svg diff --git a/src/static/icons/regular/skeleton.svg b/apps/client/src/static/icons/regular/skeleton.svg similarity index 100% rename from src/static/icons/regular/skeleton.svg rename to apps/client/src/static/icons/regular/skeleton.svg diff --git a/src/static/icons/regular/ski-jump.svg b/apps/client/src/static/icons/regular/ski-jump.svg similarity index 100% rename from src/static/icons/regular/ski-jump.svg rename to apps/client/src/static/icons/regular/ski-jump.svg diff --git a/src/static/icons/regular/ski-lift.svg b/apps/client/src/static/icons/regular/ski-lift.svg similarity index 100% rename from src/static/icons/regular/ski-lift.svg rename to apps/client/src/static/icons/regular/ski-lift.svg diff --git a/src/static/icons/regular/skiing-nordic.svg b/apps/client/src/static/icons/regular/skiing-nordic.svg similarity index 100% rename from src/static/icons/regular/skiing-nordic.svg rename to apps/client/src/static/icons/regular/skiing-nordic.svg diff --git a/src/static/icons/regular/skiing.svg b/apps/client/src/static/icons/regular/skiing.svg similarity index 100% rename from src/static/icons/regular/skiing.svg rename to apps/client/src/static/icons/regular/skiing.svg diff --git a/src/static/icons/regular/skull-cow.svg b/apps/client/src/static/icons/regular/skull-cow.svg similarity index 100% rename from src/static/icons/regular/skull-cow.svg rename to apps/client/src/static/icons/regular/skull-cow.svg diff --git a/src/static/icons/regular/skull-crossbones.svg b/apps/client/src/static/icons/regular/skull-crossbones.svg similarity index 100% rename from src/static/icons/regular/skull-crossbones.svg rename to apps/client/src/static/icons/regular/skull-crossbones.svg diff --git a/src/static/icons/regular/skull.svg b/apps/client/src/static/icons/regular/skull.svg similarity index 100% rename from src/static/icons/regular/skull.svg rename to apps/client/src/static/icons/regular/skull.svg diff --git a/src/static/icons/regular/slash.svg b/apps/client/src/static/icons/regular/slash.svg similarity index 100% rename from src/static/icons/regular/slash.svg rename to apps/client/src/static/icons/regular/slash.svg diff --git a/src/static/icons/regular/sledding.svg b/apps/client/src/static/icons/regular/sledding.svg similarity index 100% rename from src/static/icons/regular/sledding.svg rename to apps/client/src/static/icons/regular/sledding.svg diff --git a/src/static/icons/regular/sleigh.svg b/apps/client/src/static/icons/regular/sleigh.svg similarity index 100% rename from src/static/icons/regular/sleigh.svg rename to apps/client/src/static/icons/regular/sleigh.svg diff --git a/src/static/icons/regular/sliders-h-square.svg b/apps/client/src/static/icons/regular/sliders-h-square.svg similarity index 100% rename from src/static/icons/regular/sliders-h-square.svg rename to apps/client/src/static/icons/regular/sliders-h-square.svg diff --git a/src/static/icons/regular/sliders-h.svg b/apps/client/src/static/icons/regular/sliders-h.svg similarity index 100% rename from src/static/icons/regular/sliders-h.svg rename to apps/client/src/static/icons/regular/sliders-h.svg diff --git a/src/static/icons/regular/sliders-v-square.svg b/apps/client/src/static/icons/regular/sliders-v-square.svg similarity index 100% rename from src/static/icons/regular/sliders-v-square.svg rename to apps/client/src/static/icons/regular/sliders-v-square.svg diff --git a/src/static/icons/regular/sliders-v.svg b/apps/client/src/static/icons/regular/sliders-v.svg similarity index 100% rename from src/static/icons/regular/sliders-v.svg rename to apps/client/src/static/icons/regular/sliders-v.svg diff --git a/src/static/icons/regular/smile-beam.svg b/apps/client/src/static/icons/regular/smile-beam.svg similarity index 100% rename from src/static/icons/regular/smile-beam.svg rename to apps/client/src/static/icons/regular/smile-beam.svg diff --git a/src/static/icons/regular/smile-plus.svg b/apps/client/src/static/icons/regular/smile-plus.svg similarity index 100% rename from src/static/icons/regular/smile-plus.svg rename to apps/client/src/static/icons/regular/smile-plus.svg diff --git a/src/static/icons/regular/smile-wink.svg b/apps/client/src/static/icons/regular/smile-wink.svg similarity index 100% rename from src/static/icons/regular/smile-wink.svg rename to apps/client/src/static/icons/regular/smile-wink.svg diff --git a/src/static/icons/regular/smile.svg b/apps/client/src/static/icons/regular/smile.svg similarity index 100% rename from src/static/icons/regular/smile.svg rename to apps/client/src/static/icons/regular/smile.svg diff --git a/src/static/icons/regular/smog.svg b/apps/client/src/static/icons/regular/smog.svg similarity index 100% rename from src/static/icons/regular/smog.svg rename to apps/client/src/static/icons/regular/smog.svg diff --git a/src/static/icons/regular/smoke.svg b/apps/client/src/static/icons/regular/smoke.svg similarity index 100% rename from src/static/icons/regular/smoke.svg rename to apps/client/src/static/icons/regular/smoke.svg diff --git a/src/static/icons/regular/smoking-ban.svg b/apps/client/src/static/icons/regular/smoking-ban.svg similarity index 100% rename from src/static/icons/regular/smoking-ban.svg rename to apps/client/src/static/icons/regular/smoking-ban.svg diff --git a/src/static/icons/regular/smoking.svg b/apps/client/src/static/icons/regular/smoking.svg similarity index 100% rename from src/static/icons/regular/smoking.svg rename to apps/client/src/static/icons/regular/smoking.svg diff --git a/src/static/icons/regular/sms.svg b/apps/client/src/static/icons/regular/sms.svg similarity index 100% rename from src/static/icons/regular/sms.svg rename to apps/client/src/static/icons/regular/sms.svg diff --git a/src/static/icons/regular/snake.svg b/apps/client/src/static/icons/regular/snake.svg similarity index 100% rename from src/static/icons/regular/snake.svg rename to apps/client/src/static/icons/regular/snake.svg diff --git a/src/static/icons/regular/snooze.svg b/apps/client/src/static/icons/regular/snooze.svg similarity index 100% rename from src/static/icons/regular/snooze.svg rename to apps/client/src/static/icons/regular/snooze.svg diff --git a/src/static/icons/regular/snow-blowing.svg b/apps/client/src/static/icons/regular/snow-blowing.svg similarity index 100% rename from src/static/icons/regular/snow-blowing.svg rename to apps/client/src/static/icons/regular/snow-blowing.svg diff --git a/src/static/icons/regular/snowboarding.svg b/apps/client/src/static/icons/regular/snowboarding.svg similarity index 100% rename from src/static/icons/regular/snowboarding.svg rename to apps/client/src/static/icons/regular/snowboarding.svg diff --git a/src/static/icons/regular/snowflake.svg b/apps/client/src/static/icons/regular/snowflake.svg similarity index 100% rename from src/static/icons/regular/snowflake.svg rename to apps/client/src/static/icons/regular/snowflake.svg diff --git a/src/static/icons/regular/snowflakes.svg b/apps/client/src/static/icons/regular/snowflakes.svg similarity index 100% rename from src/static/icons/regular/snowflakes.svg rename to apps/client/src/static/icons/regular/snowflakes.svg diff --git a/src/static/icons/regular/snowman.svg b/apps/client/src/static/icons/regular/snowman.svg similarity index 100% rename from src/static/icons/regular/snowman.svg rename to apps/client/src/static/icons/regular/snowman.svg diff --git a/src/static/icons/regular/snowmobile.svg b/apps/client/src/static/icons/regular/snowmobile.svg similarity index 100% rename from src/static/icons/regular/snowmobile.svg rename to apps/client/src/static/icons/regular/snowmobile.svg diff --git a/src/static/icons/regular/snowplow.svg b/apps/client/src/static/icons/regular/snowplow.svg similarity index 100% rename from src/static/icons/regular/snowplow.svg rename to apps/client/src/static/icons/regular/snowplow.svg diff --git a/src/static/icons/regular/socks.svg b/apps/client/src/static/icons/regular/socks.svg similarity index 100% rename from src/static/icons/regular/socks.svg rename to apps/client/src/static/icons/regular/socks.svg diff --git a/src/static/icons/regular/solar-panel.svg b/apps/client/src/static/icons/regular/solar-panel.svg similarity index 100% rename from src/static/icons/regular/solar-panel.svg rename to apps/client/src/static/icons/regular/solar-panel.svg diff --git a/src/static/icons/regular/solar-system.svg b/apps/client/src/static/icons/regular/solar-system.svg similarity index 100% rename from src/static/icons/regular/solar-system.svg rename to apps/client/src/static/icons/regular/solar-system.svg diff --git a/src/static/icons/regular/sort-alpha-down-alt.svg b/apps/client/src/static/icons/regular/sort-alpha-down-alt.svg similarity index 100% rename from src/static/icons/regular/sort-alpha-down-alt.svg rename to apps/client/src/static/icons/regular/sort-alpha-down-alt.svg diff --git a/src/static/icons/regular/sort-alpha-down.svg b/apps/client/src/static/icons/regular/sort-alpha-down.svg similarity index 100% rename from src/static/icons/regular/sort-alpha-down.svg rename to apps/client/src/static/icons/regular/sort-alpha-down.svg diff --git a/src/static/icons/regular/sort-alpha-up-alt.svg b/apps/client/src/static/icons/regular/sort-alpha-up-alt.svg similarity index 100% rename from src/static/icons/regular/sort-alpha-up-alt.svg rename to apps/client/src/static/icons/regular/sort-alpha-up-alt.svg diff --git a/src/static/icons/regular/sort-alpha-up.svg b/apps/client/src/static/icons/regular/sort-alpha-up.svg similarity index 100% rename from src/static/icons/regular/sort-alpha-up.svg rename to apps/client/src/static/icons/regular/sort-alpha-up.svg diff --git a/src/static/icons/regular/sort-alt.svg b/apps/client/src/static/icons/regular/sort-alt.svg similarity index 100% rename from src/static/icons/regular/sort-alt.svg rename to apps/client/src/static/icons/regular/sort-alt.svg diff --git a/src/static/icons/regular/sort-amount-down-alt.svg b/apps/client/src/static/icons/regular/sort-amount-down-alt.svg similarity index 100% rename from src/static/icons/regular/sort-amount-down-alt.svg rename to apps/client/src/static/icons/regular/sort-amount-down-alt.svg diff --git a/src/static/icons/regular/sort-amount-down.svg b/apps/client/src/static/icons/regular/sort-amount-down.svg similarity index 100% rename from src/static/icons/regular/sort-amount-down.svg rename to apps/client/src/static/icons/regular/sort-amount-down.svg diff --git a/src/static/icons/regular/sort-amount-up-alt.svg b/apps/client/src/static/icons/regular/sort-amount-up-alt.svg similarity index 100% rename from src/static/icons/regular/sort-amount-up-alt.svg rename to apps/client/src/static/icons/regular/sort-amount-up-alt.svg diff --git a/src/static/icons/regular/sort-amount-up.svg b/apps/client/src/static/icons/regular/sort-amount-up.svg similarity index 100% rename from src/static/icons/regular/sort-amount-up.svg rename to apps/client/src/static/icons/regular/sort-amount-up.svg diff --git a/src/static/icons/regular/sort-circle-down.svg b/apps/client/src/static/icons/regular/sort-circle-down.svg similarity index 100% rename from src/static/icons/regular/sort-circle-down.svg rename to apps/client/src/static/icons/regular/sort-circle-down.svg diff --git a/src/static/icons/regular/sort-circle-up.svg b/apps/client/src/static/icons/regular/sort-circle-up.svg similarity index 100% rename from src/static/icons/regular/sort-circle-up.svg rename to apps/client/src/static/icons/regular/sort-circle-up.svg diff --git a/src/static/icons/regular/sort-circle.svg b/apps/client/src/static/icons/regular/sort-circle.svg similarity index 100% rename from src/static/icons/regular/sort-circle.svg rename to apps/client/src/static/icons/regular/sort-circle.svg diff --git a/src/static/icons/regular/sort-down.svg b/apps/client/src/static/icons/regular/sort-down.svg similarity index 100% rename from src/static/icons/regular/sort-down.svg rename to apps/client/src/static/icons/regular/sort-down.svg diff --git a/src/static/icons/regular/sort-numeric-down-alt.svg b/apps/client/src/static/icons/regular/sort-numeric-down-alt.svg similarity index 100% rename from src/static/icons/regular/sort-numeric-down-alt.svg rename to apps/client/src/static/icons/regular/sort-numeric-down-alt.svg diff --git a/src/static/icons/regular/sort-numeric-down.svg b/apps/client/src/static/icons/regular/sort-numeric-down.svg similarity index 100% rename from src/static/icons/regular/sort-numeric-down.svg rename to apps/client/src/static/icons/regular/sort-numeric-down.svg diff --git a/src/static/icons/regular/sort-numeric-up-alt.svg b/apps/client/src/static/icons/regular/sort-numeric-up-alt.svg similarity index 100% rename from src/static/icons/regular/sort-numeric-up-alt.svg rename to apps/client/src/static/icons/regular/sort-numeric-up-alt.svg diff --git a/src/static/icons/regular/sort-numeric-up.svg b/apps/client/src/static/icons/regular/sort-numeric-up.svg similarity index 100% rename from src/static/icons/regular/sort-numeric-up.svg rename to apps/client/src/static/icons/regular/sort-numeric-up.svg diff --git a/src/static/icons/regular/sort-shapes-down-alt.svg b/apps/client/src/static/icons/regular/sort-shapes-down-alt.svg similarity index 100% rename from src/static/icons/regular/sort-shapes-down-alt.svg rename to apps/client/src/static/icons/regular/sort-shapes-down-alt.svg diff --git a/src/static/icons/regular/sort-shapes-down.svg b/apps/client/src/static/icons/regular/sort-shapes-down.svg similarity index 100% rename from src/static/icons/regular/sort-shapes-down.svg rename to apps/client/src/static/icons/regular/sort-shapes-down.svg diff --git a/src/static/icons/regular/sort-shapes-up-alt.svg b/apps/client/src/static/icons/regular/sort-shapes-up-alt.svg similarity index 100% rename from src/static/icons/regular/sort-shapes-up-alt.svg rename to apps/client/src/static/icons/regular/sort-shapes-up-alt.svg diff --git a/src/static/icons/regular/sort-shapes-up.svg b/apps/client/src/static/icons/regular/sort-shapes-up.svg similarity index 100% rename from src/static/icons/regular/sort-shapes-up.svg rename to apps/client/src/static/icons/regular/sort-shapes-up.svg diff --git a/src/static/icons/regular/sort-size-down-alt.svg b/apps/client/src/static/icons/regular/sort-size-down-alt.svg similarity index 100% rename from src/static/icons/regular/sort-size-down-alt.svg rename to apps/client/src/static/icons/regular/sort-size-down-alt.svg diff --git a/src/static/icons/regular/sort-size-down.svg b/apps/client/src/static/icons/regular/sort-size-down.svg similarity index 100% rename from src/static/icons/regular/sort-size-down.svg rename to apps/client/src/static/icons/regular/sort-size-down.svg diff --git a/src/static/icons/regular/sort-size-up-alt.svg b/apps/client/src/static/icons/regular/sort-size-up-alt.svg similarity index 100% rename from src/static/icons/regular/sort-size-up-alt.svg rename to apps/client/src/static/icons/regular/sort-size-up-alt.svg diff --git a/src/static/icons/regular/sort-size-up.svg b/apps/client/src/static/icons/regular/sort-size-up.svg similarity index 100% rename from src/static/icons/regular/sort-size-up.svg rename to apps/client/src/static/icons/regular/sort-size-up.svg diff --git a/src/static/icons/regular/sort-up.svg b/apps/client/src/static/icons/regular/sort-up.svg similarity index 100% rename from src/static/icons/regular/sort-up.svg rename to apps/client/src/static/icons/regular/sort-up.svg diff --git a/src/static/icons/regular/sort.svg b/apps/client/src/static/icons/regular/sort.svg similarity index 100% rename from src/static/icons/regular/sort.svg rename to apps/client/src/static/icons/regular/sort.svg diff --git a/src/static/icons/regular/soup.svg b/apps/client/src/static/icons/regular/soup.svg similarity index 100% rename from src/static/icons/regular/soup.svg rename to apps/client/src/static/icons/regular/soup.svg diff --git a/src/static/icons/regular/spa.svg b/apps/client/src/static/icons/regular/spa.svg similarity index 100% rename from src/static/icons/regular/spa.svg rename to apps/client/src/static/icons/regular/spa.svg diff --git a/src/static/icons/regular/space-shuttle.svg b/apps/client/src/static/icons/regular/space-shuttle.svg similarity index 100% rename from src/static/icons/regular/space-shuttle.svg rename to apps/client/src/static/icons/regular/space-shuttle.svg diff --git a/src/static/icons/regular/space-station-moon-alt.svg b/apps/client/src/static/icons/regular/space-station-moon-alt.svg similarity index 100% rename from src/static/icons/regular/space-station-moon-alt.svg rename to apps/client/src/static/icons/regular/space-station-moon-alt.svg diff --git a/src/static/icons/regular/space-station-moon.svg b/apps/client/src/static/icons/regular/space-station-moon.svg similarity index 100% rename from src/static/icons/regular/space-station-moon.svg rename to apps/client/src/static/icons/regular/space-station-moon.svg diff --git a/src/static/icons/regular/spade.svg b/apps/client/src/static/icons/regular/spade.svg similarity index 100% rename from src/static/icons/regular/spade.svg rename to apps/client/src/static/icons/regular/spade.svg diff --git a/src/static/icons/regular/sparkles.svg b/apps/client/src/static/icons/regular/sparkles.svg similarity index 100% rename from src/static/icons/regular/sparkles.svg rename to apps/client/src/static/icons/regular/sparkles.svg diff --git a/src/static/icons/regular/speaker.svg b/apps/client/src/static/icons/regular/speaker.svg similarity index 100% rename from src/static/icons/regular/speaker.svg rename to apps/client/src/static/icons/regular/speaker.svg diff --git a/src/static/icons/regular/speakers.svg b/apps/client/src/static/icons/regular/speakers.svg similarity index 100% rename from src/static/icons/regular/speakers.svg rename to apps/client/src/static/icons/regular/speakers.svg diff --git a/src/static/icons/regular/spell-check.svg b/apps/client/src/static/icons/regular/spell-check.svg similarity index 100% rename from src/static/icons/regular/spell-check.svg rename to apps/client/src/static/icons/regular/spell-check.svg diff --git a/src/static/icons/regular/spider-black-widow.svg b/apps/client/src/static/icons/regular/spider-black-widow.svg similarity index 100% rename from src/static/icons/regular/spider-black-widow.svg rename to apps/client/src/static/icons/regular/spider-black-widow.svg diff --git a/src/static/icons/regular/spider-web.svg b/apps/client/src/static/icons/regular/spider-web.svg similarity index 100% rename from src/static/icons/regular/spider-web.svg rename to apps/client/src/static/icons/regular/spider-web.svg diff --git a/src/static/icons/regular/spider.svg b/apps/client/src/static/icons/regular/spider.svg similarity index 100% rename from src/static/icons/regular/spider.svg rename to apps/client/src/static/icons/regular/spider.svg diff --git a/src/static/icons/regular/spinner-third.svg b/apps/client/src/static/icons/regular/spinner-third.svg similarity index 100% rename from src/static/icons/regular/spinner-third.svg rename to apps/client/src/static/icons/regular/spinner-third.svg diff --git a/src/static/icons/regular/spinner.svg b/apps/client/src/static/icons/regular/spinner.svg similarity index 100% rename from src/static/icons/regular/spinner.svg rename to apps/client/src/static/icons/regular/spinner.svg diff --git a/src/static/icons/regular/splotch.svg b/apps/client/src/static/icons/regular/splotch.svg similarity index 100% rename from src/static/icons/regular/splotch.svg rename to apps/client/src/static/icons/regular/splotch.svg diff --git a/src/static/icons/regular/spray-can.svg b/apps/client/src/static/icons/regular/spray-can.svg similarity index 100% rename from src/static/icons/regular/spray-can.svg rename to apps/client/src/static/icons/regular/spray-can.svg diff --git a/src/static/icons/regular/sprinkler.svg b/apps/client/src/static/icons/regular/sprinkler.svg similarity index 100% rename from src/static/icons/regular/sprinkler.svg rename to apps/client/src/static/icons/regular/sprinkler.svg diff --git a/src/static/icons/regular/square-full.svg b/apps/client/src/static/icons/regular/square-full.svg similarity index 100% rename from src/static/icons/regular/square-full.svg rename to apps/client/src/static/icons/regular/square-full.svg diff --git a/src/static/icons/regular/square-root-alt.svg b/apps/client/src/static/icons/regular/square-root-alt.svg similarity index 100% rename from src/static/icons/regular/square-root-alt.svg rename to apps/client/src/static/icons/regular/square-root-alt.svg diff --git a/src/static/icons/regular/square-root.svg b/apps/client/src/static/icons/regular/square-root.svg similarity index 100% rename from src/static/icons/regular/square-root.svg rename to apps/client/src/static/icons/regular/square-root.svg diff --git a/src/static/icons/regular/square.svg b/apps/client/src/static/icons/regular/square.svg similarity index 100% rename from src/static/icons/regular/square.svg rename to apps/client/src/static/icons/regular/square.svg diff --git a/src/static/icons/regular/squirrel.svg b/apps/client/src/static/icons/regular/squirrel.svg similarity index 100% rename from src/static/icons/regular/squirrel.svg rename to apps/client/src/static/icons/regular/squirrel.svg diff --git a/src/static/icons/regular/staff.svg b/apps/client/src/static/icons/regular/staff.svg similarity index 100% rename from src/static/icons/regular/staff.svg rename to apps/client/src/static/icons/regular/staff.svg diff --git a/src/static/icons/regular/stamp.svg b/apps/client/src/static/icons/regular/stamp.svg similarity index 100% rename from src/static/icons/regular/stamp.svg rename to apps/client/src/static/icons/regular/stamp.svg diff --git a/src/static/icons/regular/star-and-crescent.svg b/apps/client/src/static/icons/regular/star-and-crescent.svg similarity index 100% rename from src/static/icons/regular/star-and-crescent.svg rename to apps/client/src/static/icons/regular/star-and-crescent.svg diff --git a/src/static/icons/regular/star-christmas.svg b/apps/client/src/static/icons/regular/star-christmas.svg similarity index 100% rename from src/static/icons/regular/star-christmas.svg rename to apps/client/src/static/icons/regular/star-christmas.svg diff --git a/src/static/icons/regular/star-exclamation.svg b/apps/client/src/static/icons/regular/star-exclamation.svg similarity index 100% rename from src/static/icons/regular/star-exclamation.svg rename to apps/client/src/static/icons/regular/star-exclamation.svg diff --git a/src/static/icons/regular/star-half-alt.svg b/apps/client/src/static/icons/regular/star-half-alt.svg similarity index 100% rename from src/static/icons/regular/star-half-alt.svg rename to apps/client/src/static/icons/regular/star-half-alt.svg diff --git a/src/static/icons/regular/star-half.svg b/apps/client/src/static/icons/regular/star-half.svg similarity index 100% rename from src/static/icons/regular/star-half.svg rename to apps/client/src/static/icons/regular/star-half.svg diff --git a/src/static/icons/regular/star-of-david.svg b/apps/client/src/static/icons/regular/star-of-david.svg similarity index 100% rename from src/static/icons/regular/star-of-david.svg rename to apps/client/src/static/icons/regular/star-of-david.svg diff --git a/src/static/icons/regular/star-of-life.svg b/apps/client/src/static/icons/regular/star-of-life.svg similarity index 100% rename from src/static/icons/regular/star-of-life.svg rename to apps/client/src/static/icons/regular/star-of-life.svg diff --git a/src/static/icons/regular/star-shooting.svg b/apps/client/src/static/icons/regular/star-shooting.svg similarity index 100% rename from src/static/icons/regular/star-shooting.svg rename to apps/client/src/static/icons/regular/star-shooting.svg diff --git a/src/static/icons/regular/star.svg b/apps/client/src/static/icons/regular/star.svg similarity index 100% rename from src/static/icons/regular/star.svg rename to apps/client/src/static/icons/regular/star.svg diff --git a/src/static/icons/regular/starfighter-alt.svg b/apps/client/src/static/icons/regular/starfighter-alt.svg similarity index 100% rename from src/static/icons/regular/starfighter-alt.svg rename to apps/client/src/static/icons/regular/starfighter-alt.svg diff --git a/src/static/icons/regular/starfighter.svg b/apps/client/src/static/icons/regular/starfighter.svg similarity index 100% rename from src/static/icons/regular/starfighter.svg rename to apps/client/src/static/icons/regular/starfighter.svg diff --git a/src/static/icons/regular/stars.svg b/apps/client/src/static/icons/regular/stars.svg similarity index 100% rename from src/static/icons/regular/stars.svg rename to apps/client/src/static/icons/regular/stars.svg diff --git a/src/static/icons/regular/starship-freighter.svg b/apps/client/src/static/icons/regular/starship-freighter.svg similarity index 100% rename from src/static/icons/regular/starship-freighter.svg rename to apps/client/src/static/icons/regular/starship-freighter.svg diff --git a/src/static/icons/regular/starship.svg b/apps/client/src/static/icons/regular/starship.svg similarity index 100% rename from src/static/icons/regular/starship.svg rename to apps/client/src/static/icons/regular/starship.svg diff --git a/src/static/icons/regular/steak.svg b/apps/client/src/static/icons/regular/steak.svg similarity index 100% rename from src/static/icons/regular/steak.svg rename to apps/client/src/static/icons/regular/steak.svg diff --git a/src/static/icons/regular/steering-wheel.svg b/apps/client/src/static/icons/regular/steering-wheel.svg similarity index 100% rename from src/static/icons/regular/steering-wheel.svg rename to apps/client/src/static/icons/regular/steering-wheel.svg diff --git a/src/static/icons/regular/step-backward.svg b/apps/client/src/static/icons/regular/step-backward.svg similarity index 100% rename from src/static/icons/regular/step-backward.svg rename to apps/client/src/static/icons/regular/step-backward.svg diff --git a/src/static/icons/regular/step-forward.svg b/apps/client/src/static/icons/regular/step-forward.svg similarity index 100% rename from src/static/icons/regular/step-forward.svg rename to apps/client/src/static/icons/regular/step-forward.svg diff --git a/src/static/icons/regular/stethoscope.svg b/apps/client/src/static/icons/regular/stethoscope.svg similarity index 100% rename from src/static/icons/regular/stethoscope.svg rename to apps/client/src/static/icons/regular/stethoscope.svg diff --git a/src/static/icons/regular/sticky-note.svg b/apps/client/src/static/icons/regular/sticky-note.svg similarity index 100% rename from src/static/icons/regular/sticky-note.svg rename to apps/client/src/static/icons/regular/sticky-note.svg diff --git a/src/static/icons/regular/stocking.svg b/apps/client/src/static/icons/regular/stocking.svg similarity index 100% rename from src/static/icons/regular/stocking.svg rename to apps/client/src/static/icons/regular/stocking.svg diff --git a/src/static/icons/regular/stomach.svg b/apps/client/src/static/icons/regular/stomach.svg similarity index 100% rename from src/static/icons/regular/stomach.svg rename to apps/client/src/static/icons/regular/stomach.svg diff --git a/src/static/icons/regular/stop-circle.svg b/apps/client/src/static/icons/regular/stop-circle.svg similarity index 100% rename from src/static/icons/regular/stop-circle.svg rename to apps/client/src/static/icons/regular/stop-circle.svg diff --git a/src/static/icons/regular/stop.svg b/apps/client/src/static/icons/regular/stop.svg similarity index 100% rename from src/static/icons/regular/stop.svg rename to apps/client/src/static/icons/regular/stop.svg diff --git a/src/static/icons/regular/stopwatch.svg b/apps/client/src/static/icons/regular/stopwatch.svg similarity index 100% rename from src/static/icons/regular/stopwatch.svg rename to apps/client/src/static/icons/regular/stopwatch.svg diff --git a/src/static/icons/regular/store-alt.svg b/apps/client/src/static/icons/regular/store-alt.svg similarity index 100% rename from src/static/icons/regular/store-alt.svg rename to apps/client/src/static/icons/regular/store-alt.svg diff --git a/src/static/icons/regular/store.svg b/apps/client/src/static/icons/regular/store.svg similarity index 100% rename from src/static/icons/regular/store.svg rename to apps/client/src/static/icons/regular/store.svg diff --git a/src/static/icons/regular/stream.svg b/apps/client/src/static/icons/regular/stream.svg similarity index 100% rename from src/static/icons/regular/stream.svg rename to apps/client/src/static/icons/regular/stream.svg diff --git a/src/static/icons/regular/street-view.svg b/apps/client/src/static/icons/regular/street-view.svg similarity index 100% rename from src/static/icons/regular/street-view.svg rename to apps/client/src/static/icons/regular/street-view.svg diff --git a/src/static/icons/regular/stretcher.svg b/apps/client/src/static/icons/regular/stretcher.svg similarity index 100% rename from src/static/icons/regular/stretcher.svg rename to apps/client/src/static/icons/regular/stretcher.svg diff --git a/src/static/icons/regular/strikethrough.svg b/apps/client/src/static/icons/regular/strikethrough.svg similarity index 100% rename from src/static/icons/regular/strikethrough.svg rename to apps/client/src/static/icons/regular/strikethrough.svg diff --git a/src/static/icons/regular/stroopwafel.svg b/apps/client/src/static/icons/regular/stroopwafel.svg similarity index 100% rename from src/static/icons/regular/stroopwafel.svg rename to apps/client/src/static/icons/regular/stroopwafel.svg diff --git a/src/static/icons/regular/subscript.svg b/apps/client/src/static/icons/regular/subscript.svg similarity index 100% rename from src/static/icons/regular/subscript.svg rename to apps/client/src/static/icons/regular/subscript.svg diff --git a/src/static/icons/regular/subway.svg b/apps/client/src/static/icons/regular/subway.svg similarity index 100% rename from src/static/icons/regular/subway.svg rename to apps/client/src/static/icons/regular/subway.svg diff --git a/src/static/icons/regular/suitcase-rolling.svg b/apps/client/src/static/icons/regular/suitcase-rolling.svg similarity index 100% rename from src/static/icons/regular/suitcase-rolling.svg rename to apps/client/src/static/icons/regular/suitcase-rolling.svg diff --git a/src/static/icons/regular/suitcase.svg b/apps/client/src/static/icons/regular/suitcase.svg similarity index 100% rename from src/static/icons/regular/suitcase.svg rename to apps/client/src/static/icons/regular/suitcase.svg diff --git a/src/static/icons/regular/sun-cloud.svg b/apps/client/src/static/icons/regular/sun-cloud.svg similarity index 100% rename from src/static/icons/regular/sun-cloud.svg rename to apps/client/src/static/icons/regular/sun-cloud.svg diff --git a/src/static/icons/regular/sun-dust.svg b/apps/client/src/static/icons/regular/sun-dust.svg similarity index 100% rename from src/static/icons/regular/sun-dust.svg rename to apps/client/src/static/icons/regular/sun-dust.svg diff --git a/src/static/icons/regular/sun-haze.svg b/apps/client/src/static/icons/regular/sun-haze.svg similarity index 100% rename from src/static/icons/regular/sun-haze.svg rename to apps/client/src/static/icons/regular/sun-haze.svg diff --git a/src/static/icons/regular/sun.svg b/apps/client/src/static/icons/regular/sun.svg similarity index 100% rename from src/static/icons/regular/sun.svg rename to apps/client/src/static/icons/regular/sun.svg diff --git a/src/static/icons/regular/sunglasses.svg b/apps/client/src/static/icons/regular/sunglasses.svg similarity index 100% rename from src/static/icons/regular/sunglasses.svg rename to apps/client/src/static/icons/regular/sunglasses.svg diff --git a/src/static/icons/regular/sunrise.svg b/apps/client/src/static/icons/regular/sunrise.svg similarity index 100% rename from src/static/icons/regular/sunrise.svg rename to apps/client/src/static/icons/regular/sunrise.svg diff --git a/src/static/icons/regular/sunset.svg b/apps/client/src/static/icons/regular/sunset.svg similarity index 100% rename from src/static/icons/regular/sunset.svg rename to apps/client/src/static/icons/regular/sunset.svg diff --git a/src/static/icons/regular/superscript.svg b/apps/client/src/static/icons/regular/superscript.svg similarity index 100% rename from src/static/icons/regular/superscript.svg rename to apps/client/src/static/icons/regular/superscript.svg diff --git a/src/static/icons/regular/surprise.svg b/apps/client/src/static/icons/regular/surprise.svg similarity index 100% rename from src/static/icons/regular/surprise.svg rename to apps/client/src/static/icons/regular/surprise.svg diff --git a/src/static/icons/regular/swatchbook.svg b/apps/client/src/static/icons/regular/swatchbook.svg similarity index 100% rename from src/static/icons/regular/swatchbook.svg rename to apps/client/src/static/icons/regular/swatchbook.svg diff --git a/src/static/icons/regular/swimmer.svg b/apps/client/src/static/icons/regular/swimmer.svg similarity index 100% rename from src/static/icons/regular/swimmer.svg rename to apps/client/src/static/icons/regular/swimmer.svg diff --git a/src/static/icons/regular/swimming-pool.svg b/apps/client/src/static/icons/regular/swimming-pool.svg similarity index 100% rename from src/static/icons/regular/swimming-pool.svg rename to apps/client/src/static/icons/regular/swimming-pool.svg diff --git a/src/static/icons/regular/sword-laser-alt.svg b/apps/client/src/static/icons/regular/sword-laser-alt.svg similarity index 100% rename from src/static/icons/regular/sword-laser-alt.svg rename to apps/client/src/static/icons/regular/sword-laser-alt.svg diff --git a/src/static/icons/regular/sword-laser.svg b/apps/client/src/static/icons/regular/sword-laser.svg similarity index 100% rename from src/static/icons/regular/sword-laser.svg rename to apps/client/src/static/icons/regular/sword-laser.svg diff --git a/src/static/icons/regular/sword.svg b/apps/client/src/static/icons/regular/sword.svg similarity index 100% rename from src/static/icons/regular/sword.svg rename to apps/client/src/static/icons/regular/sword.svg diff --git a/src/static/icons/regular/swords-laser.svg b/apps/client/src/static/icons/regular/swords-laser.svg similarity index 100% rename from src/static/icons/regular/swords-laser.svg rename to apps/client/src/static/icons/regular/swords-laser.svg diff --git a/src/static/icons/regular/swords.svg b/apps/client/src/static/icons/regular/swords.svg similarity index 100% rename from src/static/icons/regular/swords.svg rename to apps/client/src/static/icons/regular/swords.svg diff --git a/src/static/icons/regular/synagogue.svg b/apps/client/src/static/icons/regular/synagogue.svg similarity index 100% rename from src/static/icons/regular/synagogue.svg rename to apps/client/src/static/icons/regular/synagogue.svg diff --git a/src/static/icons/regular/sync-alt.svg b/apps/client/src/static/icons/regular/sync-alt.svg similarity index 100% rename from src/static/icons/regular/sync-alt.svg rename to apps/client/src/static/icons/regular/sync-alt.svg diff --git a/src/static/icons/regular/sync.svg b/apps/client/src/static/icons/regular/sync.svg similarity index 100% rename from src/static/icons/regular/sync.svg rename to apps/client/src/static/icons/regular/sync.svg diff --git a/src/static/icons/regular/syringe.svg b/apps/client/src/static/icons/regular/syringe.svg similarity index 100% rename from src/static/icons/regular/syringe.svg rename to apps/client/src/static/icons/regular/syringe.svg diff --git a/src/static/icons/regular/table-tennis.svg b/apps/client/src/static/icons/regular/table-tennis.svg similarity index 100% rename from src/static/icons/regular/table-tennis.svg rename to apps/client/src/static/icons/regular/table-tennis.svg diff --git a/src/static/icons/regular/table.svg b/apps/client/src/static/icons/regular/table.svg similarity index 100% rename from src/static/icons/regular/table.svg rename to apps/client/src/static/icons/regular/table.svg diff --git a/src/static/icons/regular/tablet-alt.svg b/apps/client/src/static/icons/regular/tablet-alt.svg similarity index 100% rename from src/static/icons/regular/tablet-alt.svg rename to apps/client/src/static/icons/regular/tablet-alt.svg diff --git a/src/static/icons/regular/tablet-android-alt.svg b/apps/client/src/static/icons/regular/tablet-android-alt.svg similarity index 100% rename from src/static/icons/regular/tablet-android-alt.svg rename to apps/client/src/static/icons/regular/tablet-android-alt.svg diff --git a/src/static/icons/regular/tablet-android.svg b/apps/client/src/static/icons/regular/tablet-android.svg similarity index 100% rename from src/static/icons/regular/tablet-android.svg rename to apps/client/src/static/icons/regular/tablet-android.svg diff --git a/src/static/icons/regular/tablet-rugged.svg b/apps/client/src/static/icons/regular/tablet-rugged.svg similarity index 100% rename from src/static/icons/regular/tablet-rugged.svg rename to apps/client/src/static/icons/regular/tablet-rugged.svg diff --git a/src/static/icons/regular/tablet.svg b/apps/client/src/static/icons/regular/tablet.svg similarity index 100% rename from src/static/icons/regular/tablet.svg rename to apps/client/src/static/icons/regular/tablet.svg diff --git a/src/static/icons/regular/tablets.svg b/apps/client/src/static/icons/regular/tablets.svg similarity index 100% rename from src/static/icons/regular/tablets.svg rename to apps/client/src/static/icons/regular/tablets.svg diff --git a/src/static/icons/regular/tachometer-alt-average.svg b/apps/client/src/static/icons/regular/tachometer-alt-average.svg similarity index 100% rename from src/static/icons/regular/tachometer-alt-average.svg rename to apps/client/src/static/icons/regular/tachometer-alt-average.svg diff --git a/src/static/icons/regular/tachometer-alt-fast.svg b/apps/client/src/static/icons/regular/tachometer-alt-fast.svg similarity index 100% rename from src/static/icons/regular/tachometer-alt-fast.svg rename to apps/client/src/static/icons/regular/tachometer-alt-fast.svg diff --git a/src/static/icons/regular/tachometer-alt-fastest.svg b/apps/client/src/static/icons/regular/tachometer-alt-fastest.svg similarity index 100% rename from src/static/icons/regular/tachometer-alt-fastest.svg rename to apps/client/src/static/icons/regular/tachometer-alt-fastest.svg diff --git a/src/static/icons/regular/tachometer-alt-slow.svg b/apps/client/src/static/icons/regular/tachometer-alt-slow.svg similarity index 100% rename from src/static/icons/regular/tachometer-alt-slow.svg rename to apps/client/src/static/icons/regular/tachometer-alt-slow.svg diff --git a/src/static/icons/regular/tachometer-alt-slowest.svg b/apps/client/src/static/icons/regular/tachometer-alt-slowest.svg similarity index 100% rename from src/static/icons/regular/tachometer-alt-slowest.svg rename to apps/client/src/static/icons/regular/tachometer-alt-slowest.svg diff --git a/src/static/icons/regular/tachometer-alt.svg b/apps/client/src/static/icons/regular/tachometer-alt.svg similarity index 100% rename from src/static/icons/regular/tachometer-alt.svg rename to apps/client/src/static/icons/regular/tachometer-alt.svg diff --git a/src/static/icons/regular/tachometer-average.svg b/apps/client/src/static/icons/regular/tachometer-average.svg similarity index 100% rename from src/static/icons/regular/tachometer-average.svg rename to apps/client/src/static/icons/regular/tachometer-average.svg diff --git a/src/static/icons/regular/tachometer-fast.svg b/apps/client/src/static/icons/regular/tachometer-fast.svg similarity index 100% rename from src/static/icons/regular/tachometer-fast.svg rename to apps/client/src/static/icons/regular/tachometer-fast.svg diff --git a/src/static/icons/regular/tachometer-fastest.svg b/apps/client/src/static/icons/regular/tachometer-fastest.svg similarity index 100% rename from src/static/icons/regular/tachometer-fastest.svg rename to apps/client/src/static/icons/regular/tachometer-fastest.svg diff --git a/src/static/icons/regular/tachometer-slow.svg b/apps/client/src/static/icons/regular/tachometer-slow.svg similarity index 100% rename from src/static/icons/regular/tachometer-slow.svg rename to apps/client/src/static/icons/regular/tachometer-slow.svg diff --git a/src/static/icons/regular/tachometer-slowest.svg b/apps/client/src/static/icons/regular/tachometer-slowest.svg similarity index 100% rename from src/static/icons/regular/tachometer-slowest.svg rename to apps/client/src/static/icons/regular/tachometer-slowest.svg diff --git a/src/static/icons/regular/tachometer.svg b/apps/client/src/static/icons/regular/tachometer.svg similarity index 100% rename from src/static/icons/regular/tachometer.svg rename to apps/client/src/static/icons/regular/tachometer.svg diff --git a/src/static/icons/regular/taco.svg b/apps/client/src/static/icons/regular/taco.svg similarity index 100% rename from src/static/icons/regular/taco.svg rename to apps/client/src/static/icons/regular/taco.svg diff --git a/src/static/icons/regular/tag.svg b/apps/client/src/static/icons/regular/tag.svg similarity index 100% rename from src/static/icons/regular/tag.svg rename to apps/client/src/static/icons/regular/tag.svg diff --git a/src/static/icons/regular/tags.svg b/apps/client/src/static/icons/regular/tags.svg similarity index 100% rename from src/static/icons/regular/tags.svg rename to apps/client/src/static/icons/regular/tags.svg diff --git a/src/static/icons/regular/tally.svg b/apps/client/src/static/icons/regular/tally.svg similarity index 100% rename from src/static/icons/regular/tally.svg rename to apps/client/src/static/icons/regular/tally.svg diff --git a/src/static/icons/regular/tanakh.svg b/apps/client/src/static/icons/regular/tanakh.svg similarity index 100% rename from src/static/icons/regular/tanakh.svg rename to apps/client/src/static/icons/regular/tanakh.svg diff --git a/src/static/icons/regular/tape.svg b/apps/client/src/static/icons/regular/tape.svg similarity index 100% rename from src/static/icons/regular/tape.svg rename to apps/client/src/static/icons/regular/tape.svg diff --git a/src/static/icons/regular/tasks-alt.svg b/apps/client/src/static/icons/regular/tasks-alt.svg similarity index 100% rename from src/static/icons/regular/tasks-alt.svg rename to apps/client/src/static/icons/regular/tasks-alt.svg diff --git a/src/static/icons/regular/tasks.svg b/apps/client/src/static/icons/regular/tasks.svg similarity index 100% rename from src/static/icons/regular/tasks.svg rename to apps/client/src/static/icons/regular/tasks.svg diff --git a/src/static/icons/regular/taxi.svg b/apps/client/src/static/icons/regular/taxi.svg similarity index 100% rename from src/static/icons/regular/taxi.svg rename to apps/client/src/static/icons/regular/taxi.svg diff --git a/src/static/icons/regular/teeth-open.svg b/apps/client/src/static/icons/regular/teeth-open.svg similarity index 100% rename from src/static/icons/regular/teeth-open.svg rename to apps/client/src/static/icons/regular/teeth-open.svg diff --git a/src/static/icons/regular/teeth.svg b/apps/client/src/static/icons/regular/teeth.svg similarity index 100% rename from src/static/icons/regular/teeth.svg rename to apps/client/src/static/icons/regular/teeth.svg diff --git a/src/static/icons/regular/telescope.svg b/apps/client/src/static/icons/regular/telescope.svg similarity index 100% rename from src/static/icons/regular/telescope.svg rename to apps/client/src/static/icons/regular/telescope.svg diff --git a/src/static/icons/regular/temperature-down.svg b/apps/client/src/static/icons/regular/temperature-down.svg similarity index 100% rename from src/static/icons/regular/temperature-down.svg rename to apps/client/src/static/icons/regular/temperature-down.svg diff --git a/src/static/icons/regular/temperature-frigid.svg b/apps/client/src/static/icons/regular/temperature-frigid.svg similarity index 100% rename from src/static/icons/regular/temperature-frigid.svg rename to apps/client/src/static/icons/regular/temperature-frigid.svg diff --git a/src/static/icons/regular/temperature-high.svg b/apps/client/src/static/icons/regular/temperature-high.svg similarity index 100% rename from src/static/icons/regular/temperature-high.svg rename to apps/client/src/static/icons/regular/temperature-high.svg diff --git a/src/static/icons/regular/temperature-hot.svg b/apps/client/src/static/icons/regular/temperature-hot.svg similarity index 100% rename from src/static/icons/regular/temperature-hot.svg rename to apps/client/src/static/icons/regular/temperature-hot.svg diff --git a/src/static/icons/regular/temperature-low.svg b/apps/client/src/static/icons/regular/temperature-low.svg similarity index 100% rename from src/static/icons/regular/temperature-low.svg rename to apps/client/src/static/icons/regular/temperature-low.svg diff --git a/src/static/icons/regular/temperature-up.svg b/apps/client/src/static/icons/regular/temperature-up.svg similarity index 100% rename from src/static/icons/regular/temperature-up.svg rename to apps/client/src/static/icons/regular/temperature-up.svg diff --git a/src/static/icons/regular/tenge.svg b/apps/client/src/static/icons/regular/tenge.svg similarity index 100% rename from src/static/icons/regular/tenge.svg rename to apps/client/src/static/icons/regular/tenge.svg diff --git a/src/static/icons/regular/tennis-ball.svg b/apps/client/src/static/icons/regular/tennis-ball.svg similarity index 100% rename from src/static/icons/regular/tennis-ball.svg rename to apps/client/src/static/icons/regular/tennis-ball.svg diff --git a/src/static/icons/regular/terminal.svg b/apps/client/src/static/icons/regular/terminal.svg similarity index 100% rename from src/static/icons/regular/terminal.svg rename to apps/client/src/static/icons/regular/terminal.svg diff --git a/src/static/icons/regular/text-height.svg b/apps/client/src/static/icons/regular/text-height.svg similarity index 100% rename from src/static/icons/regular/text-height.svg rename to apps/client/src/static/icons/regular/text-height.svg diff --git a/src/static/icons/regular/text-size.svg b/apps/client/src/static/icons/regular/text-size.svg similarity index 100% rename from src/static/icons/regular/text-size.svg rename to apps/client/src/static/icons/regular/text-size.svg diff --git a/src/static/icons/regular/text-width.svg b/apps/client/src/static/icons/regular/text-width.svg similarity index 100% rename from src/static/icons/regular/text-width.svg rename to apps/client/src/static/icons/regular/text-width.svg diff --git a/src/static/icons/regular/text.svg b/apps/client/src/static/icons/regular/text.svg similarity index 100% rename from src/static/icons/regular/text.svg rename to apps/client/src/static/icons/regular/text.svg diff --git a/src/static/icons/regular/th-large.svg b/apps/client/src/static/icons/regular/th-large.svg similarity index 100% rename from src/static/icons/regular/th-large.svg rename to apps/client/src/static/icons/regular/th-large.svg diff --git a/src/static/icons/regular/th-list.svg b/apps/client/src/static/icons/regular/th-list.svg similarity index 100% rename from src/static/icons/regular/th-list.svg rename to apps/client/src/static/icons/regular/th-list.svg diff --git a/src/static/icons/regular/th.svg b/apps/client/src/static/icons/regular/th.svg similarity index 100% rename from src/static/icons/regular/th.svg rename to apps/client/src/static/icons/regular/th.svg diff --git a/src/static/icons/regular/theater-masks.svg b/apps/client/src/static/icons/regular/theater-masks.svg similarity index 100% rename from src/static/icons/regular/theater-masks.svg rename to apps/client/src/static/icons/regular/theater-masks.svg diff --git a/src/static/icons/regular/thermometer-empty.svg b/apps/client/src/static/icons/regular/thermometer-empty.svg similarity index 100% rename from src/static/icons/regular/thermometer-empty.svg rename to apps/client/src/static/icons/regular/thermometer-empty.svg diff --git a/src/static/icons/regular/thermometer-full.svg b/apps/client/src/static/icons/regular/thermometer-full.svg similarity index 100% rename from src/static/icons/regular/thermometer-full.svg rename to apps/client/src/static/icons/regular/thermometer-full.svg diff --git a/src/static/icons/regular/thermometer-half.svg b/apps/client/src/static/icons/regular/thermometer-half.svg similarity index 100% rename from src/static/icons/regular/thermometer-half.svg rename to apps/client/src/static/icons/regular/thermometer-half.svg diff --git a/src/static/icons/regular/thermometer-quarter.svg b/apps/client/src/static/icons/regular/thermometer-quarter.svg similarity index 100% rename from src/static/icons/regular/thermometer-quarter.svg rename to apps/client/src/static/icons/regular/thermometer-quarter.svg diff --git a/src/static/icons/regular/thermometer-three-quarters.svg b/apps/client/src/static/icons/regular/thermometer-three-quarters.svg similarity index 100% rename from src/static/icons/regular/thermometer-three-quarters.svg rename to apps/client/src/static/icons/regular/thermometer-three-quarters.svg diff --git a/src/static/icons/regular/thermometer.svg b/apps/client/src/static/icons/regular/thermometer.svg similarity index 100% rename from src/static/icons/regular/thermometer.svg rename to apps/client/src/static/icons/regular/thermometer.svg diff --git a/src/static/icons/regular/theta.svg b/apps/client/src/static/icons/regular/theta.svg similarity index 100% rename from src/static/icons/regular/theta.svg rename to apps/client/src/static/icons/regular/theta.svg diff --git a/src/static/icons/regular/thumbs-down.svg b/apps/client/src/static/icons/regular/thumbs-down.svg similarity index 100% rename from src/static/icons/regular/thumbs-down.svg rename to apps/client/src/static/icons/regular/thumbs-down.svg diff --git a/src/static/icons/regular/thumbs-up.svg b/apps/client/src/static/icons/regular/thumbs-up.svg similarity index 100% rename from src/static/icons/regular/thumbs-up.svg rename to apps/client/src/static/icons/regular/thumbs-up.svg diff --git a/src/static/icons/regular/thumbtack.svg b/apps/client/src/static/icons/regular/thumbtack.svg similarity index 100% rename from src/static/icons/regular/thumbtack.svg rename to apps/client/src/static/icons/regular/thumbtack.svg diff --git a/src/static/icons/regular/thunderstorm-moon.svg b/apps/client/src/static/icons/regular/thunderstorm-moon.svg similarity index 100% rename from src/static/icons/regular/thunderstorm-moon.svg rename to apps/client/src/static/icons/regular/thunderstorm-moon.svg diff --git a/src/static/icons/regular/thunderstorm-sun.svg b/apps/client/src/static/icons/regular/thunderstorm-sun.svg similarity index 100% rename from src/static/icons/regular/thunderstorm-sun.svg rename to apps/client/src/static/icons/regular/thunderstorm-sun.svg diff --git a/src/static/icons/regular/thunderstorm.svg b/apps/client/src/static/icons/regular/thunderstorm.svg similarity index 100% rename from src/static/icons/regular/thunderstorm.svg rename to apps/client/src/static/icons/regular/thunderstorm.svg diff --git a/src/static/icons/regular/ticket-alt.svg b/apps/client/src/static/icons/regular/ticket-alt.svg similarity index 100% rename from src/static/icons/regular/ticket-alt.svg rename to apps/client/src/static/icons/regular/ticket-alt.svg diff --git a/src/static/icons/regular/ticket.svg b/apps/client/src/static/icons/regular/ticket.svg similarity index 100% rename from src/static/icons/regular/ticket.svg rename to apps/client/src/static/icons/regular/ticket.svg diff --git a/src/static/icons/regular/tilde.svg b/apps/client/src/static/icons/regular/tilde.svg similarity index 100% rename from src/static/icons/regular/tilde.svg rename to apps/client/src/static/icons/regular/tilde.svg diff --git a/src/static/icons/regular/times-circle.svg b/apps/client/src/static/icons/regular/times-circle.svg similarity index 100% rename from src/static/icons/regular/times-circle.svg rename to apps/client/src/static/icons/regular/times-circle.svg diff --git a/src/static/icons/regular/times-hexagon.svg b/apps/client/src/static/icons/regular/times-hexagon.svg similarity index 100% rename from src/static/icons/regular/times-hexagon.svg rename to apps/client/src/static/icons/regular/times-hexagon.svg diff --git a/src/static/icons/regular/times-octagon.svg b/apps/client/src/static/icons/regular/times-octagon.svg similarity index 100% rename from src/static/icons/regular/times-octagon.svg rename to apps/client/src/static/icons/regular/times-octagon.svg diff --git a/src/static/icons/regular/times-square.svg b/apps/client/src/static/icons/regular/times-square.svg similarity index 100% rename from src/static/icons/regular/times-square.svg rename to apps/client/src/static/icons/regular/times-square.svg diff --git a/src/static/icons/regular/times.svg b/apps/client/src/static/icons/regular/times.svg similarity index 100% rename from src/static/icons/regular/times.svg rename to apps/client/src/static/icons/regular/times.svg diff --git a/src/static/icons/regular/tint-slash.svg b/apps/client/src/static/icons/regular/tint-slash.svg similarity index 100% rename from src/static/icons/regular/tint-slash.svg rename to apps/client/src/static/icons/regular/tint-slash.svg diff --git a/src/static/icons/regular/tint.svg b/apps/client/src/static/icons/regular/tint.svg similarity index 100% rename from src/static/icons/regular/tint.svg rename to apps/client/src/static/icons/regular/tint.svg diff --git a/src/static/icons/regular/tire-flat.svg b/apps/client/src/static/icons/regular/tire-flat.svg similarity index 100% rename from src/static/icons/regular/tire-flat.svg rename to apps/client/src/static/icons/regular/tire-flat.svg diff --git a/src/static/icons/regular/tire-pressure-warning.svg b/apps/client/src/static/icons/regular/tire-pressure-warning.svg similarity index 100% rename from src/static/icons/regular/tire-pressure-warning.svg rename to apps/client/src/static/icons/regular/tire-pressure-warning.svg diff --git a/src/static/icons/regular/tire-rugged.svg b/apps/client/src/static/icons/regular/tire-rugged.svg similarity index 100% rename from src/static/icons/regular/tire-rugged.svg rename to apps/client/src/static/icons/regular/tire-rugged.svg diff --git a/src/static/icons/regular/tire.svg b/apps/client/src/static/icons/regular/tire.svg similarity index 100% rename from src/static/icons/regular/tire.svg rename to apps/client/src/static/icons/regular/tire.svg diff --git a/src/static/icons/regular/tired.svg b/apps/client/src/static/icons/regular/tired.svg similarity index 100% rename from src/static/icons/regular/tired.svg rename to apps/client/src/static/icons/regular/tired.svg diff --git a/src/static/icons/regular/toggle-off.svg b/apps/client/src/static/icons/regular/toggle-off.svg similarity index 100% rename from src/static/icons/regular/toggle-off.svg rename to apps/client/src/static/icons/regular/toggle-off.svg diff --git a/src/static/icons/regular/toggle-on.svg b/apps/client/src/static/icons/regular/toggle-on.svg similarity index 100% rename from src/static/icons/regular/toggle-on.svg rename to apps/client/src/static/icons/regular/toggle-on.svg diff --git a/src/static/icons/regular/toilet-paper-alt.svg b/apps/client/src/static/icons/regular/toilet-paper-alt.svg similarity index 100% rename from src/static/icons/regular/toilet-paper-alt.svg rename to apps/client/src/static/icons/regular/toilet-paper-alt.svg diff --git a/src/static/icons/regular/toilet-paper.svg b/apps/client/src/static/icons/regular/toilet-paper.svg similarity index 100% rename from src/static/icons/regular/toilet-paper.svg rename to apps/client/src/static/icons/regular/toilet-paper.svg diff --git a/src/static/icons/regular/toilet.svg b/apps/client/src/static/icons/regular/toilet.svg similarity index 100% rename from src/static/icons/regular/toilet.svg rename to apps/client/src/static/icons/regular/toilet.svg diff --git a/src/static/icons/regular/tombstone-alt.svg b/apps/client/src/static/icons/regular/tombstone-alt.svg similarity index 100% rename from src/static/icons/regular/tombstone-alt.svg rename to apps/client/src/static/icons/regular/tombstone-alt.svg diff --git a/src/static/icons/regular/tombstone.svg b/apps/client/src/static/icons/regular/tombstone.svg similarity index 100% rename from src/static/icons/regular/tombstone.svg rename to apps/client/src/static/icons/regular/tombstone.svg diff --git a/src/static/icons/regular/toolbox.svg b/apps/client/src/static/icons/regular/toolbox.svg similarity index 100% rename from src/static/icons/regular/toolbox.svg rename to apps/client/src/static/icons/regular/toolbox.svg diff --git a/src/static/icons/regular/tools.svg b/apps/client/src/static/icons/regular/tools.svg similarity index 100% rename from src/static/icons/regular/tools.svg rename to apps/client/src/static/icons/regular/tools.svg diff --git a/src/static/icons/regular/tooth.svg b/apps/client/src/static/icons/regular/tooth.svg similarity index 100% rename from src/static/icons/regular/tooth.svg rename to apps/client/src/static/icons/regular/tooth.svg diff --git a/src/static/icons/regular/toothbrush.svg b/apps/client/src/static/icons/regular/toothbrush.svg similarity index 100% rename from src/static/icons/regular/toothbrush.svg rename to apps/client/src/static/icons/regular/toothbrush.svg diff --git a/src/static/icons/regular/torah.svg b/apps/client/src/static/icons/regular/torah.svg similarity index 100% rename from src/static/icons/regular/torah.svg rename to apps/client/src/static/icons/regular/torah.svg diff --git a/src/static/icons/regular/torii-gate.svg b/apps/client/src/static/icons/regular/torii-gate.svg similarity index 100% rename from src/static/icons/regular/torii-gate.svg rename to apps/client/src/static/icons/regular/torii-gate.svg diff --git a/src/static/icons/regular/tornado.svg b/apps/client/src/static/icons/regular/tornado.svg similarity index 100% rename from src/static/icons/regular/tornado.svg rename to apps/client/src/static/icons/regular/tornado.svg diff --git a/src/static/icons/regular/tractor.svg b/apps/client/src/static/icons/regular/tractor.svg similarity index 100% rename from src/static/icons/regular/tractor.svg rename to apps/client/src/static/icons/regular/tractor.svg diff --git a/src/static/icons/regular/trademark.svg b/apps/client/src/static/icons/regular/trademark.svg similarity index 100% rename from src/static/icons/regular/trademark.svg rename to apps/client/src/static/icons/regular/trademark.svg diff --git a/src/static/icons/regular/traffic-cone.svg b/apps/client/src/static/icons/regular/traffic-cone.svg similarity index 100% rename from src/static/icons/regular/traffic-cone.svg rename to apps/client/src/static/icons/regular/traffic-cone.svg diff --git a/src/static/icons/regular/traffic-light-go.svg b/apps/client/src/static/icons/regular/traffic-light-go.svg similarity index 100% rename from src/static/icons/regular/traffic-light-go.svg rename to apps/client/src/static/icons/regular/traffic-light-go.svg diff --git a/src/static/icons/regular/traffic-light-slow.svg b/apps/client/src/static/icons/regular/traffic-light-slow.svg similarity index 100% rename from src/static/icons/regular/traffic-light-slow.svg rename to apps/client/src/static/icons/regular/traffic-light-slow.svg diff --git a/src/static/icons/regular/traffic-light-stop.svg b/apps/client/src/static/icons/regular/traffic-light-stop.svg similarity index 100% rename from src/static/icons/regular/traffic-light-stop.svg rename to apps/client/src/static/icons/regular/traffic-light-stop.svg diff --git a/src/static/icons/regular/traffic-light.svg b/apps/client/src/static/icons/regular/traffic-light.svg similarity index 100% rename from src/static/icons/regular/traffic-light.svg rename to apps/client/src/static/icons/regular/traffic-light.svg diff --git a/src/static/icons/regular/trailer.svg b/apps/client/src/static/icons/regular/trailer.svg similarity index 100% rename from src/static/icons/regular/trailer.svg rename to apps/client/src/static/icons/regular/trailer.svg diff --git a/src/static/icons/regular/train.svg b/apps/client/src/static/icons/regular/train.svg similarity index 100% rename from src/static/icons/regular/train.svg rename to apps/client/src/static/icons/regular/train.svg diff --git a/src/static/icons/regular/tram.svg b/apps/client/src/static/icons/regular/tram.svg similarity index 100% rename from src/static/icons/regular/tram.svg rename to apps/client/src/static/icons/regular/tram.svg diff --git a/src/static/icons/regular/transgender-alt.svg b/apps/client/src/static/icons/regular/transgender-alt.svg similarity index 100% rename from src/static/icons/regular/transgender-alt.svg rename to apps/client/src/static/icons/regular/transgender-alt.svg diff --git a/src/static/icons/regular/transgender.svg b/apps/client/src/static/icons/regular/transgender.svg similarity index 100% rename from src/static/icons/regular/transgender.svg rename to apps/client/src/static/icons/regular/transgender.svg diff --git a/src/static/icons/regular/transporter-1.svg b/apps/client/src/static/icons/regular/transporter-1.svg similarity index 100% rename from src/static/icons/regular/transporter-1.svg rename to apps/client/src/static/icons/regular/transporter-1.svg diff --git a/src/static/icons/regular/transporter-2.svg b/apps/client/src/static/icons/regular/transporter-2.svg similarity index 100% rename from src/static/icons/regular/transporter-2.svg rename to apps/client/src/static/icons/regular/transporter-2.svg diff --git a/src/static/icons/regular/transporter-3.svg b/apps/client/src/static/icons/regular/transporter-3.svg similarity index 100% rename from src/static/icons/regular/transporter-3.svg rename to apps/client/src/static/icons/regular/transporter-3.svg diff --git a/src/static/icons/regular/transporter-empty.svg b/apps/client/src/static/icons/regular/transporter-empty.svg similarity index 100% rename from src/static/icons/regular/transporter-empty.svg rename to apps/client/src/static/icons/regular/transporter-empty.svg diff --git a/src/static/icons/regular/transporter.svg b/apps/client/src/static/icons/regular/transporter.svg similarity index 100% rename from src/static/icons/regular/transporter.svg rename to apps/client/src/static/icons/regular/transporter.svg diff --git a/src/static/icons/regular/trash-alt.svg b/apps/client/src/static/icons/regular/trash-alt.svg similarity index 100% rename from src/static/icons/regular/trash-alt.svg rename to apps/client/src/static/icons/regular/trash-alt.svg diff --git a/src/static/icons/regular/trash-restore-alt.svg b/apps/client/src/static/icons/regular/trash-restore-alt.svg similarity index 100% rename from src/static/icons/regular/trash-restore-alt.svg rename to apps/client/src/static/icons/regular/trash-restore-alt.svg diff --git a/src/static/icons/regular/trash-restore.svg b/apps/client/src/static/icons/regular/trash-restore.svg similarity index 100% rename from src/static/icons/regular/trash-restore.svg rename to apps/client/src/static/icons/regular/trash-restore.svg diff --git a/src/static/icons/regular/trash-undo-alt.svg b/apps/client/src/static/icons/regular/trash-undo-alt.svg similarity index 100% rename from src/static/icons/regular/trash-undo-alt.svg rename to apps/client/src/static/icons/regular/trash-undo-alt.svg diff --git a/src/static/icons/regular/trash-undo.svg b/apps/client/src/static/icons/regular/trash-undo.svg similarity index 100% rename from src/static/icons/regular/trash-undo.svg rename to apps/client/src/static/icons/regular/trash-undo.svg diff --git a/src/static/icons/regular/trash.svg b/apps/client/src/static/icons/regular/trash.svg similarity index 100% rename from src/static/icons/regular/trash.svg rename to apps/client/src/static/icons/regular/trash.svg diff --git a/src/static/icons/regular/treasure-chest.svg b/apps/client/src/static/icons/regular/treasure-chest.svg similarity index 100% rename from src/static/icons/regular/treasure-chest.svg rename to apps/client/src/static/icons/regular/treasure-chest.svg diff --git a/src/static/icons/regular/tree-alt.svg b/apps/client/src/static/icons/regular/tree-alt.svg similarity index 100% rename from src/static/icons/regular/tree-alt.svg rename to apps/client/src/static/icons/regular/tree-alt.svg diff --git a/src/static/icons/regular/tree-christmas.svg b/apps/client/src/static/icons/regular/tree-christmas.svg similarity index 100% rename from src/static/icons/regular/tree-christmas.svg rename to apps/client/src/static/icons/regular/tree-christmas.svg diff --git a/src/static/icons/regular/tree-decorated.svg b/apps/client/src/static/icons/regular/tree-decorated.svg similarity index 100% rename from src/static/icons/regular/tree-decorated.svg rename to apps/client/src/static/icons/regular/tree-decorated.svg diff --git a/src/static/icons/regular/tree-large.svg b/apps/client/src/static/icons/regular/tree-large.svg similarity index 100% rename from src/static/icons/regular/tree-large.svg rename to apps/client/src/static/icons/regular/tree-large.svg diff --git a/src/static/icons/regular/tree-palm.svg b/apps/client/src/static/icons/regular/tree-palm.svg similarity index 100% rename from src/static/icons/regular/tree-palm.svg rename to apps/client/src/static/icons/regular/tree-palm.svg diff --git a/src/static/icons/regular/tree.svg b/apps/client/src/static/icons/regular/tree.svg similarity index 100% rename from src/static/icons/regular/tree.svg rename to apps/client/src/static/icons/regular/tree.svg diff --git a/src/static/icons/regular/trees.svg b/apps/client/src/static/icons/regular/trees.svg similarity index 100% rename from src/static/icons/regular/trees.svg rename to apps/client/src/static/icons/regular/trees.svg diff --git a/src/static/icons/regular/triangle-music.svg b/apps/client/src/static/icons/regular/triangle-music.svg similarity index 100% rename from src/static/icons/regular/triangle-music.svg rename to apps/client/src/static/icons/regular/triangle-music.svg diff --git a/src/static/icons/regular/triangle.svg b/apps/client/src/static/icons/regular/triangle.svg similarity index 100% rename from src/static/icons/regular/triangle.svg rename to apps/client/src/static/icons/regular/triangle.svg diff --git a/src/static/icons/regular/trophy-alt.svg b/apps/client/src/static/icons/regular/trophy-alt.svg similarity index 100% rename from src/static/icons/regular/trophy-alt.svg rename to apps/client/src/static/icons/regular/trophy-alt.svg diff --git a/src/static/icons/regular/trophy.svg b/apps/client/src/static/icons/regular/trophy.svg similarity index 100% rename from src/static/icons/regular/trophy.svg rename to apps/client/src/static/icons/regular/trophy.svg diff --git a/src/static/icons/regular/truck-container.svg b/apps/client/src/static/icons/regular/truck-container.svg similarity index 100% rename from src/static/icons/regular/truck-container.svg rename to apps/client/src/static/icons/regular/truck-container.svg diff --git a/src/static/icons/regular/truck-couch.svg b/apps/client/src/static/icons/regular/truck-couch.svg similarity index 100% rename from src/static/icons/regular/truck-couch.svg rename to apps/client/src/static/icons/regular/truck-couch.svg diff --git a/src/static/icons/regular/truck-loading.svg b/apps/client/src/static/icons/regular/truck-loading.svg similarity index 100% rename from src/static/icons/regular/truck-loading.svg rename to apps/client/src/static/icons/regular/truck-loading.svg diff --git a/src/static/icons/regular/truck-monster.svg b/apps/client/src/static/icons/regular/truck-monster.svg similarity index 100% rename from src/static/icons/regular/truck-monster.svg rename to apps/client/src/static/icons/regular/truck-monster.svg diff --git a/src/static/icons/regular/truck-moving.svg b/apps/client/src/static/icons/regular/truck-moving.svg similarity index 100% rename from src/static/icons/regular/truck-moving.svg rename to apps/client/src/static/icons/regular/truck-moving.svg diff --git a/src/static/icons/regular/truck-pickup.svg b/apps/client/src/static/icons/regular/truck-pickup.svg similarity index 100% rename from src/static/icons/regular/truck-pickup.svg rename to apps/client/src/static/icons/regular/truck-pickup.svg diff --git a/src/static/icons/regular/truck-plow.svg b/apps/client/src/static/icons/regular/truck-plow.svg similarity index 100% rename from src/static/icons/regular/truck-plow.svg rename to apps/client/src/static/icons/regular/truck-plow.svg diff --git a/src/static/icons/regular/truck-ramp.svg b/apps/client/src/static/icons/regular/truck-ramp.svg similarity index 100% rename from src/static/icons/regular/truck-ramp.svg rename to apps/client/src/static/icons/regular/truck-ramp.svg diff --git a/src/static/icons/regular/truck.svg b/apps/client/src/static/icons/regular/truck.svg similarity index 100% rename from src/static/icons/regular/truck.svg rename to apps/client/src/static/icons/regular/truck.svg diff --git a/src/static/icons/regular/trumpet.svg b/apps/client/src/static/icons/regular/trumpet.svg similarity index 100% rename from src/static/icons/regular/trumpet.svg rename to apps/client/src/static/icons/regular/trumpet.svg diff --git a/src/static/icons/regular/tshirt.svg b/apps/client/src/static/icons/regular/tshirt.svg similarity index 100% rename from src/static/icons/regular/tshirt.svg rename to apps/client/src/static/icons/regular/tshirt.svg diff --git a/src/static/icons/regular/tty.svg b/apps/client/src/static/icons/regular/tty.svg similarity index 100% rename from src/static/icons/regular/tty.svg rename to apps/client/src/static/icons/regular/tty.svg diff --git a/src/static/icons/regular/turkey.svg b/apps/client/src/static/icons/regular/turkey.svg similarity index 100% rename from src/static/icons/regular/turkey.svg rename to apps/client/src/static/icons/regular/turkey.svg diff --git a/src/static/icons/regular/turntable.svg b/apps/client/src/static/icons/regular/turntable.svg similarity index 100% rename from src/static/icons/regular/turntable.svg rename to apps/client/src/static/icons/regular/turntable.svg diff --git a/src/static/icons/regular/turtle.svg b/apps/client/src/static/icons/regular/turtle.svg similarity index 100% rename from src/static/icons/regular/turtle.svg rename to apps/client/src/static/icons/regular/turtle.svg diff --git a/src/static/icons/regular/tv-alt.svg b/apps/client/src/static/icons/regular/tv-alt.svg similarity index 100% rename from src/static/icons/regular/tv-alt.svg rename to apps/client/src/static/icons/regular/tv-alt.svg diff --git a/src/static/icons/regular/tv-music.svg b/apps/client/src/static/icons/regular/tv-music.svg similarity index 100% rename from src/static/icons/regular/tv-music.svg rename to apps/client/src/static/icons/regular/tv-music.svg diff --git a/src/static/icons/regular/tv-retro.svg b/apps/client/src/static/icons/regular/tv-retro.svg similarity index 100% rename from src/static/icons/regular/tv-retro.svg rename to apps/client/src/static/icons/regular/tv-retro.svg diff --git a/src/static/icons/regular/tv.svg b/apps/client/src/static/icons/regular/tv.svg similarity index 100% rename from src/static/icons/regular/tv.svg rename to apps/client/src/static/icons/regular/tv.svg diff --git a/src/static/icons/regular/typewriter.svg b/apps/client/src/static/icons/regular/typewriter.svg similarity index 100% rename from src/static/icons/regular/typewriter.svg rename to apps/client/src/static/icons/regular/typewriter.svg diff --git a/src/static/icons/regular/ufo-beam.svg b/apps/client/src/static/icons/regular/ufo-beam.svg similarity index 100% rename from src/static/icons/regular/ufo-beam.svg rename to apps/client/src/static/icons/regular/ufo-beam.svg diff --git a/src/static/icons/regular/ufo.svg b/apps/client/src/static/icons/regular/ufo.svg similarity index 100% rename from src/static/icons/regular/ufo.svg rename to apps/client/src/static/icons/regular/ufo.svg diff --git a/src/static/icons/regular/umbrella-beach.svg b/apps/client/src/static/icons/regular/umbrella-beach.svg similarity index 100% rename from src/static/icons/regular/umbrella-beach.svg rename to apps/client/src/static/icons/regular/umbrella-beach.svg diff --git a/src/static/icons/regular/umbrella.svg b/apps/client/src/static/icons/regular/umbrella.svg similarity index 100% rename from src/static/icons/regular/umbrella.svg rename to apps/client/src/static/icons/regular/umbrella.svg diff --git a/src/static/icons/regular/underline.svg b/apps/client/src/static/icons/regular/underline.svg similarity index 100% rename from src/static/icons/regular/underline.svg rename to apps/client/src/static/icons/regular/underline.svg diff --git a/src/static/icons/regular/undo-alt.svg b/apps/client/src/static/icons/regular/undo-alt.svg similarity index 100% rename from src/static/icons/regular/undo-alt.svg rename to apps/client/src/static/icons/regular/undo-alt.svg diff --git a/src/static/icons/regular/undo.svg b/apps/client/src/static/icons/regular/undo.svg similarity index 100% rename from src/static/icons/regular/undo.svg rename to apps/client/src/static/icons/regular/undo.svg diff --git a/src/static/icons/regular/unicorn.svg b/apps/client/src/static/icons/regular/unicorn.svg similarity index 100% rename from src/static/icons/regular/unicorn.svg rename to apps/client/src/static/icons/regular/unicorn.svg diff --git a/src/static/icons/regular/union.svg b/apps/client/src/static/icons/regular/union.svg similarity index 100% rename from src/static/icons/regular/union.svg rename to apps/client/src/static/icons/regular/union.svg diff --git a/src/static/icons/regular/universal-access.svg b/apps/client/src/static/icons/regular/universal-access.svg similarity index 100% rename from src/static/icons/regular/universal-access.svg rename to apps/client/src/static/icons/regular/universal-access.svg diff --git a/src/static/icons/regular/university.svg b/apps/client/src/static/icons/regular/university.svg similarity index 100% rename from src/static/icons/regular/university.svg rename to apps/client/src/static/icons/regular/university.svg diff --git a/src/static/icons/regular/unlink.svg b/apps/client/src/static/icons/regular/unlink.svg similarity index 100% rename from src/static/icons/regular/unlink.svg rename to apps/client/src/static/icons/regular/unlink.svg diff --git a/src/static/icons/regular/unlock-alt.svg b/apps/client/src/static/icons/regular/unlock-alt.svg similarity index 100% rename from src/static/icons/regular/unlock-alt.svg rename to apps/client/src/static/icons/regular/unlock-alt.svg diff --git a/src/static/icons/regular/unlock.svg b/apps/client/src/static/icons/regular/unlock.svg similarity index 100% rename from src/static/icons/regular/unlock.svg rename to apps/client/src/static/icons/regular/unlock.svg diff --git a/src/static/icons/regular/upload.svg b/apps/client/src/static/icons/regular/upload.svg similarity index 100% rename from src/static/icons/regular/upload.svg rename to apps/client/src/static/icons/regular/upload.svg diff --git a/src/static/icons/regular/usb-drive.svg b/apps/client/src/static/icons/regular/usb-drive.svg similarity index 100% rename from src/static/icons/regular/usb-drive.svg rename to apps/client/src/static/icons/regular/usb-drive.svg diff --git a/src/static/icons/regular/usd-circle.svg b/apps/client/src/static/icons/regular/usd-circle.svg similarity index 100% rename from src/static/icons/regular/usd-circle.svg rename to apps/client/src/static/icons/regular/usd-circle.svg diff --git a/src/static/icons/regular/usd-square.svg b/apps/client/src/static/icons/regular/usd-square.svg similarity index 100% rename from src/static/icons/regular/usd-square.svg rename to apps/client/src/static/icons/regular/usd-square.svg diff --git a/src/static/icons/regular/user-alien.svg b/apps/client/src/static/icons/regular/user-alien.svg similarity index 100% rename from src/static/icons/regular/user-alien.svg rename to apps/client/src/static/icons/regular/user-alien.svg diff --git a/src/static/icons/regular/user-alt-slash.svg b/apps/client/src/static/icons/regular/user-alt-slash.svg similarity index 100% rename from src/static/icons/regular/user-alt-slash.svg rename to apps/client/src/static/icons/regular/user-alt-slash.svg diff --git a/src/static/icons/regular/user-alt.svg b/apps/client/src/static/icons/regular/user-alt.svg similarity index 100% rename from src/static/icons/regular/user-alt.svg rename to apps/client/src/static/icons/regular/user-alt.svg diff --git a/src/static/icons/regular/user-astronaut.svg b/apps/client/src/static/icons/regular/user-astronaut.svg similarity index 100% rename from src/static/icons/regular/user-astronaut.svg rename to apps/client/src/static/icons/regular/user-astronaut.svg diff --git a/src/static/icons/regular/user-chart.svg b/apps/client/src/static/icons/regular/user-chart.svg similarity index 100% rename from src/static/icons/regular/user-chart.svg rename to apps/client/src/static/icons/regular/user-chart.svg diff --git a/src/static/icons/regular/user-check.svg b/apps/client/src/static/icons/regular/user-check.svg similarity index 100% rename from src/static/icons/regular/user-check.svg rename to apps/client/src/static/icons/regular/user-check.svg diff --git a/src/static/icons/regular/user-circle.svg b/apps/client/src/static/icons/regular/user-circle.svg similarity index 100% rename from src/static/icons/regular/user-circle.svg rename to apps/client/src/static/icons/regular/user-circle.svg diff --git a/src/static/icons/regular/user-clock.svg b/apps/client/src/static/icons/regular/user-clock.svg similarity index 100% rename from src/static/icons/regular/user-clock.svg rename to apps/client/src/static/icons/regular/user-clock.svg diff --git a/src/static/icons/regular/user-cog.svg b/apps/client/src/static/icons/regular/user-cog.svg similarity index 100% rename from src/static/icons/regular/user-cog.svg rename to apps/client/src/static/icons/regular/user-cog.svg diff --git a/src/static/icons/regular/user-cowboy.svg b/apps/client/src/static/icons/regular/user-cowboy.svg similarity index 100% rename from src/static/icons/regular/user-cowboy.svg rename to apps/client/src/static/icons/regular/user-cowboy.svg diff --git a/src/static/icons/regular/user-crown.svg b/apps/client/src/static/icons/regular/user-crown.svg similarity index 100% rename from src/static/icons/regular/user-crown.svg rename to apps/client/src/static/icons/regular/user-crown.svg diff --git a/src/static/icons/regular/user-edit.svg b/apps/client/src/static/icons/regular/user-edit.svg similarity index 100% rename from src/static/icons/regular/user-edit.svg rename to apps/client/src/static/icons/regular/user-edit.svg diff --git a/src/static/icons/regular/user-friends.svg b/apps/client/src/static/icons/regular/user-friends.svg similarity index 100% rename from src/static/icons/regular/user-friends.svg rename to apps/client/src/static/icons/regular/user-friends.svg diff --git a/src/static/icons/regular/user-graduate.svg b/apps/client/src/static/icons/regular/user-graduate.svg similarity index 100% rename from src/static/icons/regular/user-graduate.svg rename to apps/client/src/static/icons/regular/user-graduate.svg diff --git a/src/static/icons/regular/user-hard-hat.svg b/apps/client/src/static/icons/regular/user-hard-hat.svg similarity index 100% rename from src/static/icons/regular/user-hard-hat.svg rename to apps/client/src/static/icons/regular/user-hard-hat.svg diff --git a/src/static/icons/regular/user-headset.svg b/apps/client/src/static/icons/regular/user-headset.svg similarity index 100% rename from src/static/icons/regular/user-headset.svg rename to apps/client/src/static/icons/regular/user-headset.svg diff --git a/src/static/icons/regular/user-injured.svg b/apps/client/src/static/icons/regular/user-injured.svg similarity index 100% rename from src/static/icons/regular/user-injured.svg rename to apps/client/src/static/icons/regular/user-injured.svg diff --git a/src/static/icons/regular/user-lock.svg b/apps/client/src/static/icons/regular/user-lock.svg similarity index 100% rename from src/static/icons/regular/user-lock.svg rename to apps/client/src/static/icons/regular/user-lock.svg diff --git a/src/static/icons/regular/user-md-chat.svg b/apps/client/src/static/icons/regular/user-md-chat.svg similarity index 100% rename from src/static/icons/regular/user-md-chat.svg rename to apps/client/src/static/icons/regular/user-md-chat.svg diff --git a/src/static/icons/regular/user-md.svg b/apps/client/src/static/icons/regular/user-md.svg similarity index 100% rename from src/static/icons/regular/user-md.svg rename to apps/client/src/static/icons/regular/user-md.svg diff --git a/src/static/icons/regular/user-minus.svg b/apps/client/src/static/icons/regular/user-minus.svg similarity index 100% rename from src/static/icons/regular/user-minus.svg rename to apps/client/src/static/icons/regular/user-minus.svg diff --git a/src/static/icons/regular/user-music.svg b/apps/client/src/static/icons/regular/user-music.svg similarity index 100% rename from src/static/icons/regular/user-music.svg rename to apps/client/src/static/icons/regular/user-music.svg diff --git a/src/static/icons/regular/user-ninja.svg b/apps/client/src/static/icons/regular/user-ninja.svg similarity index 100% rename from src/static/icons/regular/user-ninja.svg rename to apps/client/src/static/icons/regular/user-ninja.svg diff --git a/src/static/icons/regular/user-nurse.svg b/apps/client/src/static/icons/regular/user-nurse.svg similarity index 100% rename from src/static/icons/regular/user-nurse.svg rename to apps/client/src/static/icons/regular/user-nurse.svg diff --git a/src/static/icons/regular/user-plus.svg b/apps/client/src/static/icons/regular/user-plus.svg similarity index 100% rename from src/static/icons/regular/user-plus.svg rename to apps/client/src/static/icons/regular/user-plus.svg diff --git a/src/static/icons/regular/user-robot.svg b/apps/client/src/static/icons/regular/user-robot.svg similarity index 100% rename from src/static/icons/regular/user-robot.svg rename to apps/client/src/static/icons/regular/user-robot.svg diff --git a/src/static/icons/regular/user-secret.svg b/apps/client/src/static/icons/regular/user-secret.svg similarity index 100% rename from src/static/icons/regular/user-secret.svg rename to apps/client/src/static/icons/regular/user-secret.svg diff --git a/src/static/icons/regular/user-shield.svg b/apps/client/src/static/icons/regular/user-shield.svg similarity index 100% rename from src/static/icons/regular/user-shield.svg rename to apps/client/src/static/icons/regular/user-shield.svg diff --git a/src/static/icons/regular/user-slash.svg b/apps/client/src/static/icons/regular/user-slash.svg similarity index 100% rename from src/static/icons/regular/user-slash.svg rename to apps/client/src/static/icons/regular/user-slash.svg diff --git a/src/static/icons/regular/user-tag.svg b/apps/client/src/static/icons/regular/user-tag.svg similarity index 100% rename from src/static/icons/regular/user-tag.svg rename to apps/client/src/static/icons/regular/user-tag.svg diff --git a/src/static/icons/regular/user-tie.svg b/apps/client/src/static/icons/regular/user-tie.svg similarity index 100% rename from src/static/icons/regular/user-tie.svg rename to apps/client/src/static/icons/regular/user-tie.svg diff --git a/src/static/icons/regular/user-times.svg b/apps/client/src/static/icons/regular/user-times.svg similarity index 100% rename from src/static/icons/regular/user-times.svg rename to apps/client/src/static/icons/regular/user-times.svg diff --git a/src/static/icons/regular/user-visor.svg b/apps/client/src/static/icons/regular/user-visor.svg similarity index 100% rename from src/static/icons/regular/user-visor.svg rename to apps/client/src/static/icons/regular/user-visor.svg diff --git a/src/static/icons/regular/user.svg b/apps/client/src/static/icons/regular/user.svg similarity index 100% rename from src/static/icons/regular/user.svg rename to apps/client/src/static/icons/regular/user.svg diff --git a/src/static/icons/regular/users-class.svg b/apps/client/src/static/icons/regular/users-class.svg similarity index 100% rename from src/static/icons/regular/users-class.svg rename to apps/client/src/static/icons/regular/users-class.svg diff --git a/src/static/icons/regular/users-cog.svg b/apps/client/src/static/icons/regular/users-cog.svg similarity index 100% rename from src/static/icons/regular/users-cog.svg rename to apps/client/src/static/icons/regular/users-cog.svg diff --git a/src/static/icons/regular/users-crown.svg b/apps/client/src/static/icons/regular/users-crown.svg similarity index 100% rename from src/static/icons/regular/users-crown.svg rename to apps/client/src/static/icons/regular/users-crown.svg diff --git a/src/static/icons/regular/users-medical.svg b/apps/client/src/static/icons/regular/users-medical.svg similarity index 100% rename from src/static/icons/regular/users-medical.svg rename to apps/client/src/static/icons/regular/users-medical.svg diff --git a/src/static/icons/regular/users.svg b/apps/client/src/static/icons/regular/users.svg similarity index 100% rename from src/static/icons/regular/users.svg rename to apps/client/src/static/icons/regular/users.svg diff --git a/src/static/icons/regular/utensil-fork.svg b/apps/client/src/static/icons/regular/utensil-fork.svg similarity index 100% rename from src/static/icons/regular/utensil-fork.svg rename to apps/client/src/static/icons/regular/utensil-fork.svg diff --git a/src/static/icons/regular/utensil-knife.svg b/apps/client/src/static/icons/regular/utensil-knife.svg similarity index 100% rename from src/static/icons/regular/utensil-knife.svg rename to apps/client/src/static/icons/regular/utensil-knife.svg diff --git a/src/static/icons/regular/utensil-spoon.svg b/apps/client/src/static/icons/regular/utensil-spoon.svg similarity index 100% rename from src/static/icons/regular/utensil-spoon.svg rename to apps/client/src/static/icons/regular/utensil-spoon.svg diff --git a/src/static/icons/regular/utensils-alt.svg b/apps/client/src/static/icons/regular/utensils-alt.svg similarity index 100% rename from src/static/icons/regular/utensils-alt.svg rename to apps/client/src/static/icons/regular/utensils-alt.svg diff --git a/src/static/icons/regular/utensils.svg b/apps/client/src/static/icons/regular/utensils.svg similarity index 100% rename from src/static/icons/regular/utensils.svg rename to apps/client/src/static/icons/regular/utensils.svg diff --git a/src/static/icons/regular/vacuum-robot.svg b/apps/client/src/static/icons/regular/vacuum-robot.svg similarity index 100% rename from src/static/icons/regular/vacuum-robot.svg rename to apps/client/src/static/icons/regular/vacuum-robot.svg diff --git a/src/static/icons/regular/vacuum.svg b/apps/client/src/static/icons/regular/vacuum.svg similarity index 100% rename from src/static/icons/regular/vacuum.svg rename to apps/client/src/static/icons/regular/vacuum.svg diff --git a/src/static/icons/regular/value-absolute.svg b/apps/client/src/static/icons/regular/value-absolute.svg similarity index 100% rename from src/static/icons/regular/value-absolute.svg rename to apps/client/src/static/icons/regular/value-absolute.svg diff --git a/src/static/icons/regular/vector-square.svg b/apps/client/src/static/icons/regular/vector-square.svg similarity index 100% rename from src/static/icons/regular/vector-square.svg rename to apps/client/src/static/icons/regular/vector-square.svg diff --git a/src/static/icons/regular/venus-double.svg b/apps/client/src/static/icons/regular/venus-double.svg similarity index 100% rename from src/static/icons/regular/venus-double.svg rename to apps/client/src/static/icons/regular/venus-double.svg diff --git a/src/static/icons/regular/venus-mars.svg b/apps/client/src/static/icons/regular/venus-mars.svg similarity index 100% rename from src/static/icons/regular/venus-mars.svg rename to apps/client/src/static/icons/regular/venus-mars.svg diff --git a/src/static/icons/regular/venus.svg b/apps/client/src/static/icons/regular/venus.svg similarity index 100% rename from src/static/icons/regular/venus.svg rename to apps/client/src/static/icons/regular/venus.svg diff --git a/src/static/icons/regular/vhs.svg b/apps/client/src/static/icons/regular/vhs.svg similarity index 100% rename from src/static/icons/regular/vhs.svg rename to apps/client/src/static/icons/regular/vhs.svg diff --git a/src/static/icons/regular/vial.svg b/apps/client/src/static/icons/regular/vial.svg similarity index 100% rename from src/static/icons/regular/vial.svg rename to apps/client/src/static/icons/regular/vial.svg diff --git a/src/static/icons/regular/vials.svg b/apps/client/src/static/icons/regular/vials.svg similarity index 100% rename from src/static/icons/regular/vials.svg rename to apps/client/src/static/icons/regular/vials.svg diff --git a/src/static/icons/regular/video-plus.svg b/apps/client/src/static/icons/regular/video-plus.svg similarity index 100% rename from src/static/icons/regular/video-plus.svg rename to apps/client/src/static/icons/regular/video-plus.svg diff --git a/src/static/icons/regular/video-slash.svg b/apps/client/src/static/icons/regular/video-slash.svg similarity index 100% rename from src/static/icons/regular/video-slash.svg rename to apps/client/src/static/icons/regular/video-slash.svg diff --git a/src/static/icons/regular/video.svg b/apps/client/src/static/icons/regular/video.svg similarity index 100% rename from src/static/icons/regular/video.svg rename to apps/client/src/static/icons/regular/video.svg diff --git a/src/static/icons/regular/vihara.svg b/apps/client/src/static/icons/regular/vihara.svg similarity index 100% rename from src/static/icons/regular/vihara.svg rename to apps/client/src/static/icons/regular/vihara.svg diff --git a/src/static/icons/regular/violin.svg b/apps/client/src/static/icons/regular/violin.svg similarity index 100% rename from src/static/icons/regular/violin.svg rename to apps/client/src/static/icons/regular/violin.svg diff --git a/src/static/icons/regular/voicemail.svg b/apps/client/src/static/icons/regular/voicemail.svg similarity index 100% rename from src/static/icons/regular/voicemail.svg rename to apps/client/src/static/icons/regular/voicemail.svg diff --git a/src/static/icons/regular/volcano.svg b/apps/client/src/static/icons/regular/volcano.svg similarity index 100% rename from src/static/icons/regular/volcano.svg rename to apps/client/src/static/icons/regular/volcano.svg diff --git a/src/static/icons/regular/volleyball-ball.svg b/apps/client/src/static/icons/regular/volleyball-ball.svg similarity index 100% rename from src/static/icons/regular/volleyball-ball.svg rename to apps/client/src/static/icons/regular/volleyball-ball.svg diff --git a/src/static/icons/regular/volume-down.svg b/apps/client/src/static/icons/regular/volume-down.svg similarity index 100% rename from src/static/icons/regular/volume-down.svg rename to apps/client/src/static/icons/regular/volume-down.svg diff --git a/src/static/icons/regular/volume-mute.svg b/apps/client/src/static/icons/regular/volume-mute.svg similarity index 100% rename from src/static/icons/regular/volume-mute.svg rename to apps/client/src/static/icons/regular/volume-mute.svg diff --git a/src/static/icons/regular/volume-off.svg b/apps/client/src/static/icons/regular/volume-off.svg similarity index 100% rename from src/static/icons/regular/volume-off.svg rename to apps/client/src/static/icons/regular/volume-off.svg diff --git a/src/static/icons/regular/volume-slash.svg b/apps/client/src/static/icons/regular/volume-slash.svg similarity index 100% rename from src/static/icons/regular/volume-slash.svg rename to apps/client/src/static/icons/regular/volume-slash.svg diff --git a/src/static/icons/regular/volume-up.svg b/apps/client/src/static/icons/regular/volume-up.svg similarity index 100% rename from src/static/icons/regular/volume-up.svg rename to apps/client/src/static/icons/regular/volume-up.svg diff --git a/src/static/icons/regular/volume.svg b/apps/client/src/static/icons/regular/volume.svg similarity index 100% rename from src/static/icons/regular/volume.svg rename to apps/client/src/static/icons/regular/volume.svg diff --git a/src/static/icons/regular/vote-nay.svg b/apps/client/src/static/icons/regular/vote-nay.svg similarity index 100% rename from src/static/icons/regular/vote-nay.svg rename to apps/client/src/static/icons/regular/vote-nay.svg diff --git a/src/static/icons/regular/vote-yea.svg b/apps/client/src/static/icons/regular/vote-yea.svg similarity index 100% rename from src/static/icons/regular/vote-yea.svg rename to apps/client/src/static/icons/regular/vote-yea.svg diff --git a/src/static/icons/regular/vr-cardboard.svg b/apps/client/src/static/icons/regular/vr-cardboard.svg similarity index 100% rename from src/static/icons/regular/vr-cardboard.svg rename to apps/client/src/static/icons/regular/vr-cardboard.svg diff --git a/src/static/icons/regular/wagon-covered.svg b/apps/client/src/static/icons/regular/wagon-covered.svg similarity index 100% rename from src/static/icons/regular/wagon-covered.svg rename to apps/client/src/static/icons/regular/wagon-covered.svg diff --git a/src/static/icons/regular/walker.svg b/apps/client/src/static/icons/regular/walker.svg similarity index 100% rename from src/static/icons/regular/walker.svg rename to apps/client/src/static/icons/regular/walker.svg diff --git a/src/static/icons/regular/walkie-talkie.svg b/apps/client/src/static/icons/regular/walkie-talkie.svg similarity index 100% rename from src/static/icons/regular/walkie-talkie.svg rename to apps/client/src/static/icons/regular/walkie-talkie.svg diff --git a/src/static/icons/regular/walking.svg b/apps/client/src/static/icons/regular/walking.svg similarity index 100% rename from src/static/icons/regular/walking.svg rename to apps/client/src/static/icons/regular/walking.svg diff --git a/src/static/icons/regular/wallet.svg b/apps/client/src/static/icons/regular/wallet.svg similarity index 100% rename from src/static/icons/regular/wallet.svg rename to apps/client/src/static/icons/regular/wallet.svg diff --git a/src/static/icons/regular/wand-magic.svg b/apps/client/src/static/icons/regular/wand-magic.svg similarity index 100% rename from src/static/icons/regular/wand-magic.svg rename to apps/client/src/static/icons/regular/wand-magic.svg diff --git a/src/static/icons/regular/wand.svg b/apps/client/src/static/icons/regular/wand.svg similarity index 100% rename from src/static/icons/regular/wand.svg rename to apps/client/src/static/icons/regular/wand.svg diff --git a/src/static/icons/regular/warehouse-alt.svg b/apps/client/src/static/icons/regular/warehouse-alt.svg similarity index 100% rename from src/static/icons/regular/warehouse-alt.svg rename to apps/client/src/static/icons/regular/warehouse-alt.svg diff --git a/src/static/icons/regular/warehouse.svg b/apps/client/src/static/icons/regular/warehouse.svg similarity index 100% rename from src/static/icons/regular/warehouse.svg rename to apps/client/src/static/icons/regular/warehouse.svg diff --git a/src/static/icons/regular/washer.svg b/apps/client/src/static/icons/regular/washer.svg similarity index 100% rename from src/static/icons/regular/washer.svg rename to apps/client/src/static/icons/regular/washer.svg diff --git a/src/static/icons/regular/watch-calculator.svg b/apps/client/src/static/icons/regular/watch-calculator.svg similarity index 100% rename from src/static/icons/regular/watch-calculator.svg rename to apps/client/src/static/icons/regular/watch-calculator.svg diff --git a/src/static/icons/regular/watch-fitness.svg b/apps/client/src/static/icons/regular/watch-fitness.svg similarity index 100% rename from src/static/icons/regular/watch-fitness.svg rename to apps/client/src/static/icons/regular/watch-fitness.svg diff --git a/src/static/icons/regular/watch.svg b/apps/client/src/static/icons/regular/watch.svg similarity index 100% rename from src/static/icons/regular/watch.svg rename to apps/client/src/static/icons/regular/watch.svg diff --git a/src/static/icons/regular/water-lower.svg b/apps/client/src/static/icons/regular/water-lower.svg similarity index 100% rename from src/static/icons/regular/water-lower.svg rename to apps/client/src/static/icons/regular/water-lower.svg diff --git a/src/static/icons/regular/water-rise.svg b/apps/client/src/static/icons/regular/water-rise.svg similarity index 100% rename from src/static/icons/regular/water-rise.svg rename to apps/client/src/static/icons/regular/water-rise.svg diff --git a/src/static/icons/regular/water.svg b/apps/client/src/static/icons/regular/water.svg similarity index 100% rename from src/static/icons/regular/water.svg rename to apps/client/src/static/icons/regular/water.svg diff --git a/src/static/icons/regular/wave-sine.svg b/apps/client/src/static/icons/regular/wave-sine.svg similarity index 100% rename from src/static/icons/regular/wave-sine.svg rename to apps/client/src/static/icons/regular/wave-sine.svg diff --git a/src/static/icons/regular/wave-square.svg b/apps/client/src/static/icons/regular/wave-square.svg similarity index 100% rename from src/static/icons/regular/wave-square.svg rename to apps/client/src/static/icons/regular/wave-square.svg diff --git a/src/static/icons/regular/wave-triangle.svg b/apps/client/src/static/icons/regular/wave-triangle.svg similarity index 100% rename from src/static/icons/regular/wave-triangle.svg rename to apps/client/src/static/icons/regular/wave-triangle.svg diff --git a/src/static/icons/regular/waveform-path.svg b/apps/client/src/static/icons/regular/waveform-path.svg similarity index 100% rename from src/static/icons/regular/waveform-path.svg rename to apps/client/src/static/icons/regular/waveform-path.svg diff --git a/src/static/icons/regular/waveform.svg b/apps/client/src/static/icons/regular/waveform.svg similarity index 100% rename from src/static/icons/regular/waveform.svg rename to apps/client/src/static/icons/regular/waveform.svg diff --git a/src/static/icons/regular/webcam-slash.svg b/apps/client/src/static/icons/regular/webcam-slash.svg similarity index 100% rename from src/static/icons/regular/webcam-slash.svg rename to apps/client/src/static/icons/regular/webcam-slash.svg diff --git a/src/static/icons/regular/webcam.svg b/apps/client/src/static/icons/regular/webcam.svg similarity index 100% rename from src/static/icons/regular/webcam.svg rename to apps/client/src/static/icons/regular/webcam.svg diff --git a/src/static/icons/regular/weight-hanging.svg b/apps/client/src/static/icons/regular/weight-hanging.svg similarity index 100% rename from src/static/icons/regular/weight-hanging.svg rename to apps/client/src/static/icons/regular/weight-hanging.svg diff --git a/src/static/icons/regular/weight.svg b/apps/client/src/static/icons/regular/weight.svg similarity index 100% rename from src/static/icons/regular/weight.svg rename to apps/client/src/static/icons/regular/weight.svg diff --git a/src/static/icons/regular/whale.svg b/apps/client/src/static/icons/regular/whale.svg similarity index 100% rename from src/static/icons/regular/whale.svg rename to apps/client/src/static/icons/regular/whale.svg diff --git a/src/static/icons/regular/wheat.svg b/apps/client/src/static/icons/regular/wheat.svg similarity index 100% rename from src/static/icons/regular/wheat.svg rename to apps/client/src/static/icons/regular/wheat.svg diff --git a/src/static/icons/regular/wheelchair.svg b/apps/client/src/static/icons/regular/wheelchair.svg similarity index 100% rename from src/static/icons/regular/wheelchair.svg rename to apps/client/src/static/icons/regular/wheelchair.svg diff --git a/src/static/icons/regular/whistle.svg b/apps/client/src/static/icons/regular/whistle.svg similarity index 100% rename from src/static/icons/regular/whistle.svg rename to apps/client/src/static/icons/regular/whistle.svg diff --git a/src/static/icons/regular/wifi-1.svg b/apps/client/src/static/icons/regular/wifi-1.svg similarity index 100% rename from src/static/icons/regular/wifi-1.svg rename to apps/client/src/static/icons/regular/wifi-1.svg diff --git a/src/static/icons/regular/wifi-2.svg b/apps/client/src/static/icons/regular/wifi-2.svg similarity index 100% rename from src/static/icons/regular/wifi-2.svg rename to apps/client/src/static/icons/regular/wifi-2.svg diff --git a/src/static/icons/regular/wifi-slash.svg b/apps/client/src/static/icons/regular/wifi-slash.svg similarity index 100% rename from src/static/icons/regular/wifi-slash.svg rename to apps/client/src/static/icons/regular/wifi-slash.svg diff --git a/src/static/icons/regular/wifi.svg b/apps/client/src/static/icons/regular/wifi.svg similarity index 100% rename from src/static/icons/regular/wifi.svg rename to apps/client/src/static/icons/regular/wifi.svg diff --git a/src/static/icons/regular/wind-turbine.svg b/apps/client/src/static/icons/regular/wind-turbine.svg similarity index 100% rename from src/static/icons/regular/wind-turbine.svg rename to apps/client/src/static/icons/regular/wind-turbine.svg diff --git a/src/static/icons/regular/wind-warning.svg b/apps/client/src/static/icons/regular/wind-warning.svg similarity index 100% rename from src/static/icons/regular/wind-warning.svg rename to apps/client/src/static/icons/regular/wind-warning.svg diff --git a/src/static/icons/regular/wind.svg b/apps/client/src/static/icons/regular/wind.svg similarity index 100% rename from src/static/icons/regular/wind.svg rename to apps/client/src/static/icons/regular/wind.svg diff --git a/src/static/icons/regular/window-alt.svg b/apps/client/src/static/icons/regular/window-alt.svg similarity index 100% rename from src/static/icons/regular/window-alt.svg rename to apps/client/src/static/icons/regular/window-alt.svg diff --git a/src/static/icons/regular/window-close.svg b/apps/client/src/static/icons/regular/window-close.svg similarity index 100% rename from src/static/icons/regular/window-close.svg rename to apps/client/src/static/icons/regular/window-close.svg diff --git a/src/static/icons/regular/window-frame-open.svg b/apps/client/src/static/icons/regular/window-frame-open.svg similarity index 100% rename from src/static/icons/regular/window-frame-open.svg rename to apps/client/src/static/icons/regular/window-frame-open.svg diff --git a/src/static/icons/regular/window-frame.svg b/apps/client/src/static/icons/regular/window-frame.svg similarity index 100% rename from src/static/icons/regular/window-frame.svg rename to apps/client/src/static/icons/regular/window-frame.svg diff --git a/src/static/icons/regular/window-maximize.svg b/apps/client/src/static/icons/regular/window-maximize.svg similarity index 100% rename from src/static/icons/regular/window-maximize.svg rename to apps/client/src/static/icons/regular/window-maximize.svg diff --git a/src/static/icons/regular/window-minimize.svg b/apps/client/src/static/icons/regular/window-minimize.svg similarity index 100% rename from src/static/icons/regular/window-minimize.svg rename to apps/client/src/static/icons/regular/window-minimize.svg diff --git a/src/static/icons/regular/window-restore.svg b/apps/client/src/static/icons/regular/window-restore.svg similarity index 100% rename from src/static/icons/regular/window-restore.svg rename to apps/client/src/static/icons/regular/window-restore.svg diff --git a/src/static/icons/regular/window.svg b/apps/client/src/static/icons/regular/window.svg similarity index 100% rename from src/static/icons/regular/window.svg rename to apps/client/src/static/icons/regular/window.svg diff --git a/src/static/icons/regular/windsock.svg b/apps/client/src/static/icons/regular/windsock.svg similarity index 100% rename from src/static/icons/regular/windsock.svg rename to apps/client/src/static/icons/regular/windsock.svg diff --git a/src/static/icons/regular/wine-bottle.svg b/apps/client/src/static/icons/regular/wine-bottle.svg similarity index 100% rename from src/static/icons/regular/wine-bottle.svg rename to apps/client/src/static/icons/regular/wine-bottle.svg diff --git a/src/static/icons/regular/wine-glass-alt.svg b/apps/client/src/static/icons/regular/wine-glass-alt.svg similarity index 100% rename from src/static/icons/regular/wine-glass-alt.svg rename to apps/client/src/static/icons/regular/wine-glass-alt.svg diff --git a/src/static/icons/regular/wine-glass.svg b/apps/client/src/static/icons/regular/wine-glass.svg similarity index 100% rename from src/static/icons/regular/wine-glass.svg rename to apps/client/src/static/icons/regular/wine-glass.svg diff --git a/src/static/icons/regular/won-sign.svg b/apps/client/src/static/icons/regular/won-sign.svg similarity index 100% rename from src/static/icons/regular/won-sign.svg rename to apps/client/src/static/icons/regular/won-sign.svg diff --git a/src/static/icons/regular/wreath.svg b/apps/client/src/static/icons/regular/wreath.svg similarity index 100% rename from src/static/icons/regular/wreath.svg rename to apps/client/src/static/icons/regular/wreath.svg diff --git a/src/static/icons/regular/wrench.svg b/apps/client/src/static/icons/regular/wrench.svg similarity index 100% rename from src/static/icons/regular/wrench.svg rename to apps/client/src/static/icons/regular/wrench.svg diff --git a/src/static/icons/regular/x-ray.svg b/apps/client/src/static/icons/regular/x-ray.svg similarity index 100% rename from src/static/icons/regular/x-ray.svg rename to apps/client/src/static/icons/regular/x-ray.svg diff --git a/src/static/icons/regular/yen-sign.svg b/apps/client/src/static/icons/regular/yen-sign.svg similarity index 100% rename from src/static/icons/regular/yen-sign.svg rename to apps/client/src/static/icons/regular/yen-sign.svg diff --git a/src/static/icons/regular/yin-yang.svg b/apps/client/src/static/icons/regular/yin-yang.svg similarity index 100% rename from src/static/icons/regular/yin-yang.svg rename to apps/client/src/static/icons/regular/yin-yang.svg diff --git a/src/static/icons/solid/abacus.svg b/apps/client/src/static/icons/solid/abacus.svg similarity index 100% rename from src/static/icons/solid/abacus.svg rename to apps/client/src/static/icons/solid/abacus.svg diff --git a/src/static/icons/solid/acorn.svg b/apps/client/src/static/icons/solid/acorn.svg similarity index 100% rename from src/static/icons/solid/acorn.svg rename to apps/client/src/static/icons/solid/acorn.svg diff --git a/src/static/icons/solid/ad.svg b/apps/client/src/static/icons/solid/ad.svg similarity index 100% rename from src/static/icons/solid/ad.svg rename to apps/client/src/static/icons/solid/ad.svg diff --git a/src/static/icons/solid/address-book.svg b/apps/client/src/static/icons/solid/address-book.svg similarity index 100% rename from src/static/icons/solid/address-book.svg rename to apps/client/src/static/icons/solid/address-book.svg diff --git a/src/static/icons/solid/address-card.svg b/apps/client/src/static/icons/solid/address-card.svg similarity index 100% rename from src/static/icons/solid/address-card.svg rename to apps/client/src/static/icons/solid/address-card.svg diff --git a/src/static/icons/solid/adjust.svg b/apps/client/src/static/icons/solid/adjust.svg similarity index 100% rename from src/static/icons/solid/adjust.svg rename to apps/client/src/static/icons/solid/adjust.svg diff --git a/src/static/icons/solid/air-conditioner.svg b/apps/client/src/static/icons/solid/air-conditioner.svg similarity index 100% rename from src/static/icons/solid/air-conditioner.svg rename to apps/client/src/static/icons/solid/air-conditioner.svg diff --git a/src/static/icons/solid/air-freshener.svg b/apps/client/src/static/icons/solid/air-freshener.svg similarity index 100% rename from src/static/icons/solid/air-freshener.svg rename to apps/client/src/static/icons/solid/air-freshener.svg diff --git a/src/static/icons/solid/alarm-clock.svg b/apps/client/src/static/icons/solid/alarm-clock.svg similarity index 100% rename from src/static/icons/solid/alarm-clock.svg rename to apps/client/src/static/icons/solid/alarm-clock.svg diff --git a/src/static/icons/solid/alarm-exclamation.svg b/apps/client/src/static/icons/solid/alarm-exclamation.svg similarity index 100% rename from src/static/icons/solid/alarm-exclamation.svg rename to apps/client/src/static/icons/solid/alarm-exclamation.svg diff --git a/src/static/icons/solid/alarm-plus.svg b/apps/client/src/static/icons/solid/alarm-plus.svg similarity index 100% rename from src/static/icons/solid/alarm-plus.svg rename to apps/client/src/static/icons/solid/alarm-plus.svg diff --git a/src/static/icons/solid/alarm-snooze.svg b/apps/client/src/static/icons/solid/alarm-snooze.svg similarity index 100% rename from src/static/icons/solid/alarm-snooze.svg rename to apps/client/src/static/icons/solid/alarm-snooze.svg diff --git a/src/static/icons/solid/album-collection.svg b/apps/client/src/static/icons/solid/album-collection.svg similarity index 100% rename from src/static/icons/solid/album-collection.svg rename to apps/client/src/static/icons/solid/album-collection.svg diff --git a/src/static/icons/solid/album.svg b/apps/client/src/static/icons/solid/album.svg similarity index 100% rename from src/static/icons/solid/album.svg rename to apps/client/src/static/icons/solid/album.svg diff --git a/src/static/icons/solid/alicorn.svg b/apps/client/src/static/icons/solid/alicorn.svg similarity index 100% rename from src/static/icons/solid/alicorn.svg rename to apps/client/src/static/icons/solid/alicorn.svg diff --git a/src/static/icons/solid/alien-monster.svg b/apps/client/src/static/icons/solid/alien-monster.svg similarity index 100% rename from src/static/icons/solid/alien-monster.svg rename to apps/client/src/static/icons/solid/alien-monster.svg diff --git a/src/static/icons/solid/alien.svg b/apps/client/src/static/icons/solid/alien.svg similarity index 100% rename from src/static/icons/solid/alien.svg rename to apps/client/src/static/icons/solid/alien.svg diff --git a/src/static/icons/solid/align-center.svg b/apps/client/src/static/icons/solid/align-center.svg similarity index 100% rename from src/static/icons/solid/align-center.svg rename to apps/client/src/static/icons/solid/align-center.svg diff --git a/src/static/icons/solid/align-justify.svg b/apps/client/src/static/icons/solid/align-justify.svg similarity index 100% rename from src/static/icons/solid/align-justify.svg rename to apps/client/src/static/icons/solid/align-justify.svg diff --git a/src/static/icons/solid/align-left.svg b/apps/client/src/static/icons/solid/align-left.svg similarity index 100% rename from src/static/icons/solid/align-left.svg rename to apps/client/src/static/icons/solid/align-left.svg diff --git a/src/static/icons/solid/align-right.svg b/apps/client/src/static/icons/solid/align-right.svg similarity index 100% rename from src/static/icons/solid/align-right.svg rename to apps/client/src/static/icons/solid/align-right.svg diff --git a/src/static/icons/solid/align-slash.svg b/apps/client/src/static/icons/solid/align-slash.svg similarity index 100% rename from src/static/icons/solid/align-slash.svg rename to apps/client/src/static/icons/solid/align-slash.svg diff --git a/src/static/icons/solid/allergies.svg b/apps/client/src/static/icons/solid/allergies.svg similarity index 100% rename from src/static/icons/solid/allergies.svg rename to apps/client/src/static/icons/solid/allergies.svg diff --git a/src/static/icons/solid/ambulance.svg b/apps/client/src/static/icons/solid/ambulance.svg similarity index 100% rename from src/static/icons/solid/ambulance.svg rename to apps/client/src/static/icons/solid/ambulance.svg diff --git a/src/static/icons/solid/american-sign-language-interpreting.svg b/apps/client/src/static/icons/solid/american-sign-language-interpreting.svg similarity index 100% rename from src/static/icons/solid/american-sign-language-interpreting.svg rename to apps/client/src/static/icons/solid/american-sign-language-interpreting.svg diff --git a/src/static/icons/solid/amp-guitar.svg b/apps/client/src/static/icons/solid/amp-guitar.svg similarity index 100% rename from src/static/icons/solid/amp-guitar.svg rename to apps/client/src/static/icons/solid/amp-guitar.svg diff --git a/src/static/icons/solid/analytics.svg b/apps/client/src/static/icons/solid/analytics.svg similarity index 100% rename from src/static/icons/solid/analytics.svg rename to apps/client/src/static/icons/solid/analytics.svg diff --git a/src/static/icons/solid/anchor.svg b/apps/client/src/static/icons/solid/anchor.svg similarity index 100% rename from src/static/icons/solid/anchor.svg rename to apps/client/src/static/icons/solid/anchor.svg diff --git a/src/static/icons/solid/angel.svg b/apps/client/src/static/icons/solid/angel.svg similarity index 100% rename from src/static/icons/solid/angel.svg rename to apps/client/src/static/icons/solid/angel.svg diff --git a/src/static/icons/solid/angle-double-down.svg b/apps/client/src/static/icons/solid/angle-double-down.svg similarity index 100% rename from src/static/icons/solid/angle-double-down.svg rename to apps/client/src/static/icons/solid/angle-double-down.svg diff --git a/src/static/icons/solid/angle-double-left.svg b/apps/client/src/static/icons/solid/angle-double-left.svg similarity index 100% rename from src/static/icons/solid/angle-double-left.svg rename to apps/client/src/static/icons/solid/angle-double-left.svg diff --git a/src/static/icons/solid/angle-double-right.svg b/apps/client/src/static/icons/solid/angle-double-right.svg similarity index 100% rename from src/static/icons/solid/angle-double-right.svg rename to apps/client/src/static/icons/solid/angle-double-right.svg diff --git a/src/static/icons/solid/angle-double-up.svg b/apps/client/src/static/icons/solid/angle-double-up.svg similarity index 100% rename from src/static/icons/solid/angle-double-up.svg rename to apps/client/src/static/icons/solid/angle-double-up.svg diff --git a/src/static/icons/solid/angle-down.svg b/apps/client/src/static/icons/solid/angle-down.svg similarity index 100% rename from src/static/icons/solid/angle-down.svg rename to apps/client/src/static/icons/solid/angle-down.svg diff --git a/src/static/icons/solid/angle-left.svg b/apps/client/src/static/icons/solid/angle-left.svg similarity index 100% rename from src/static/icons/solid/angle-left.svg rename to apps/client/src/static/icons/solid/angle-left.svg diff --git a/src/static/icons/solid/angle-right.svg b/apps/client/src/static/icons/solid/angle-right.svg similarity index 100% rename from src/static/icons/solid/angle-right.svg rename to apps/client/src/static/icons/solid/angle-right.svg diff --git a/src/static/icons/solid/angle-up.svg b/apps/client/src/static/icons/solid/angle-up.svg similarity index 100% rename from src/static/icons/solid/angle-up.svg rename to apps/client/src/static/icons/solid/angle-up.svg diff --git a/src/static/icons/solid/angry.svg b/apps/client/src/static/icons/solid/angry.svg similarity index 100% rename from src/static/icons/solid/angry.svg rename to apps/client/src/static/icons/solid/angry.svg diff --git a/src/static/icons/solid/ankh.svg b/apps/client/src/static/icons/solid/ankh.svg similarity index 100% rename from src/static/icons/solid/ankh.svg rename to apps/client/src/static/icons/solid/ankh.svg diff --git a/src/static/icons/solid/apple-alt.svg b/apps/client/src/static/icons/solid/apple-alt.svg similarity index 100% rename from src/static/icons/solid/apple-alt.svg rename to apps/client/src/static/icons/solid/apple-alt.svg diff --git a/src/static/icons/solid/apple-crate.svg b/apps/client/src/static/icons/solid/apple-crate.svg similarity index 100% rename from src/static/icons/solid/apple-crate.svg rename to apps/client/src/static/icons/solid/apple-crate.svg diff --git a/src/static/icons/solid/archive.svg b/apps/client/src/static/icons/solid/archive.svg similarity index 100% rename from src/static/icons/solid/archive.svg rename to apps/client/src/static/icons/solid/archive.svg diff --git a/src/static/icons/solid/archway.svg b/apps/client/src/static/icons/solid/archway.svg similarity index 100% rename from src/static/icons/solid/archway.svg rename to apps/client/src/static/icons/solid/archway.svg diff --git a/src/static/icons/solid/arrow-alt-circle-down.svg b/apps/client/src/static/icons/solid/arrow-alt-circle-down.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-circle-down.svg rename to apps/client/src/static/icons/solid/arrow-alt-circle-down.svg diff --git a/src/static/icons/solid/arrow-alt-circle-left.svg b/apps/client/src/static/icons/solid/arrow-alt-circle-left.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-circle-left.svg rename to apps/client/src/static/icons/solid/arrow-alt-circle-left.svg diff --git a/src/static/icons/solid/arrow-alt-circle-right.svg b/apps/client/src/static/icons/solid/arrow-alt-circle-right.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-circle-right.svg rename to apps/client/src/static/icons/solid/arrow-alt-circle-right.svg diff --git a/src/static/icons/solid/arrow-alt-circle-up.svg b/apps/client/src/static/icons/solid/arrow-alt-circle-up.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-circle-up.svg rename to apps/client/src/static/icons/solid/arrow-alt-circle-up.svg diff --git a/src/static/icons/solid/arrow-alt-down.svg b/apps/client/src/static/icons/solid/arrow-alt-down.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-down.svg rename to apps/client/src/static/icons/solid/arrow-alt-down.svg diff --git a/src/static/icons/solid/arrow-alt-from-bottom.svg b/apps/client/src/static/icons/solid/arrow-alt-from-bottom.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-from-bottom.svg rename to apps/client/src/static/icons/solid/arrow-alt-from-bottom.svg diff --git a/src/static/icons/solid/arrow-alt-from-left.svg b/apps/client/src/static/icons/solid/arrow-alt-from-left.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-from-left.svg rename to apps/client/src/static/icons/solid/arrow-alt-from-left.svg diff --git a/src/static/icons/solid/arrow-alt-from-right.svg b/apps/client/src/static/icons/solid/arrow-alt-from-right.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-from-right.svg rename to apps/client/src/static/icons/solid/arrow-alt-from-right.svg diff --git a/src/static/icons/solid/arrow-alt-from-top.svg b/apps/client/src/static/icons/solid/arrow-alt-from-top.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-from-top.svg rename to apps/client/src/static/icons/solid/arrow-alt-from-top.svg diff --git a/src/static/icons/solid/arrow-alt-left.svg b/apps/client/src/static/icons/solid/arrow-alt-left.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-left.svg rename to apps/client/src/static/icons/solid/arrow-alt-left.svg diff --git a/src/static/icons/solid/arrow-alt-right.svg b/apps/client/src/static/icons/solid/arrow-alt-right.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-right.svg rename to apps/client/src/static/icons/solid/arrow-alt-right.svg diff --git a/src/static/icons/solid/arrow-alt-square-down.svg b/apps/client/src/static/icons/solid/arrow-alt-square-down.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-square-down.svg rename to apps/client/src/static/icons/solid/arrow-alt-square-down.svg diff --git a/src/static/icons/solid/arrow-alt-square-left.svg b/apps/client/src/static/icons/solid/arrow-alt-square-left.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-square-left.svg rename to apps/client/src/static/icons/solid/arrow-alt-square-left.svg diff --git a/src/static/icons/solid/arrow-alt-square-right.svg b/apps/client/src/static/icons/solid/arrow-alt-square-right.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-square-right.svg rename to apps/client/src/static/icons/solid/arrow-alt-square-right.svg diff --git a/src/static/icons/solid/arrow-alt-square-up.svg b/apps/client/src/static/icons/solid/arrow-alt-square-up.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-square-up.svg rename to apps/client/src/static/icons/solid/arrow-alt-square-up.svg diff --git a/src/static/icons/solid/arrow-alt-to-bottom.svg b/apps/client/src/static/icons/solid/arrow-alt-to-bottom.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-to-bottom.svg rename to apps/client/src/static/icons/solid/arrow-alt-to-bottom.svg diff --git a/src/static/icons/solid/arrow-alt-to-left.svg b/apps/client/src/static/icons/solid/arrow-alt-to-left.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-to-left.svg rename to apps/client/src/static/icons/solid/arrow-alt-to-left.svg diff --git a/src/static/icons/solid/arrow-alt-to-right.svg b/apps/client/src/static/icons/solid/arrow-alt-to-right.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-to-right.svg rename to apps/client/src/static/icons/solid/arrow-alt-to-right.svg diff --git a/src/static/icons/solid/arrow-alt-to-top.svg b/apps/client/src/static/icons/solid/arrow-alt-to-top.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-to-top.svg rename to apps/client/src/static/icons/solid/arrow-alt-to-top.svg diff --git a/src/static/icons/solid/arrow-alt-up.svg b/apps/client/src/static/icons/solid/arrow-alt-up.svg similarity index 100% rename from src/static/icons/solid/arrow-alt-up.svg rename to apps/client/src/static/icons/solid/arrow-alt-up.svg diff --git a/src/static/icons/solid/arrow-circle-down.svg b/apps/client/src/static/icons/solid/arrow-circle-down.svg similarity index 100% rename from src/static/icons/solid/arrow-circle-down.svg rename to apps/client/src/static/icons/solid/arrow-circle-down.svg diff --git a/src/static/icons/solid/arrow-circle-left.svg b/apps/client/src/static/icons/solid/arrow-circle-left.svg similarity index 100% rename from src/static/icons/solid/arrow-circle-left.svg rename to apps/client/src/static/icons/solid/arrow-circle-left.svg diff --git a/src/static/icons/solid/arrow-circle-right.svg b/apps/client/src/static/icons/solid/arrow-circle-right.svg similarity index 100% rename from src/static/icons/solid/arrow-circle-right.svg rename to apps/client/src/static/icons/solid/arrow-circle-right.svg diff --git a/src/static/icons/solid/arrow-circle-up.svg b/apps/client/src/static/icons/solid/arrow-circle-up.svg similarity index 100% rename from src/static/icons/solid/arrow-circle-up.svg rename to apps/client/src/static/icons/solid/arrow-circle-up.svg diff --git a/src/static/icons/solid/arrow-down.svg b/apps/client/src/static/icons/solid/arrow-down.svg similarity index 100% rename from src/static/icons/solid/arrow-down.svg rename to apps/client/src/static/icons/solid/arrow-down.svg diff --git a/src/static/icons/solid/arrow-from-bottom.svg b/apps/client/src/static/icons/solid/arrow-from-bottom.svg similarity index 100% rename from src/static/icons/solid/arrow-from-bottom.svg rename to apps/client/src/static/icons/solid/arrow-from-bottom.svg diff --git a/src/static/icons/solid/arrow-from-left.svg b/apps/client/src/static/icons/solid/arrow-from-left.svg similarity index 100% rename from src/static/icons/solid/arrow-from-left.svg rename to apps/client/src/static/icons/solid/arrow-from-left.svg diff --git a/src/static/icons/solid/arrow-from-right.svg b/apps/client/src/static/icons/solid/arrow-from-right.svg similarity index 100% rename from src/static/icons/solid/arrow-from-right.svg rename to apps/client/src/static/icons/solid/arrow-from-right.svg diff --git a/src/static/icons/solid/arrow-from-top.svg b/apps/client/src/static/icons/solid/arrow-from-top.svg similarity index 100% rename from src/static/icons/solid/arrow-from-top.svg rename to apps/client/src/static/icons/solid/arrow-from-top.svg diff --git a/src/static/icons/solid/arrow-left.svg b/apps/client/src/static/icons/solid/arrow-left.svg similarity index 100% rename from src/static/icons/solid/arrow-left.svg rename to apps/client/src/static/icons/solid/arrow-left.svg diff --git a/src/static/icons/solid/arrow-right.svg b/apps/client/src/static/icons/solid/arrow-right.svg similarity index 100% rename from src/static/icons/solid/arrow-right.svg rename to apps/client/src/static/icons/solid/arrow-right.svg diff --git a/src/static/icons/solid/arrow-square-down.svg b/apps/client/src/static/icons/solid/arrow-square-down.svg similarity index 100% rename from src/static/icons/solid/arrow-square-down.svg rename to apps/client/src/static/icons/solid/arrow-square-down.svg diff --git a/src/static/icons/solid/arrow-square-left.svg b/apps/client/src/static/icons/solid/arrow-square-left.svg similarity index 100% rename from src/static/icons/solid/arrow-square-left.svg rename to apps/client/src/static/icons/solid/arrow-square-left.svg diff --git a/src/static/icons/solid/arrow-square-right.svg b/apps/client/src/static/icons/solid/arrow-square-right.svg similarity index 100% rename from src/static/icons/solid/arrow-square-right.svg rename to apps/client/src/static/icons/solid/arrow-square-right.svg diff --git a/src/static/icons/solid/arrow-square-up.svg b/apps/client/src/static/icons/solid/arrow-square-up.svg similarity index 100% rename from src/static/icons/solid/arrow-square-up.svg rename to apps/client/src/static/icons/solid/arrow-square-up.svg diff --git a/src/static/icons/solid/arrow-to-bottom.svg b/apps/client/src/static/icons/solid/arrow-to-bottom.svg similarity index 100% rename from src/static/icons/solid/arrow-to-bottom.svg rename to apps/client/src/static/icons/solid/arrow-to-bottom.svg diff --git a/src/static/icons/solid/arrow-to-left.svg b/apps/client/src/static/icons/solid/arrow-to-left.svg similarity index 100% rename from src/static/icons/solid/arrow-to-left.svg rename to apps/client/src/static/icons/solid/arrow-to-left.svg diff --git a/src/static/icons/solid/arrow-to-right.svg b/apps/client/src/static/icons/solid/arrow-to-right.svg similarity index 100% rename from src/static/icons/solid/arrow-to-right.svg rename to apps/client/src/static/icons/solid/arrow-to-right.svg diff --git a/src/static/icons/solid/arrow-to-top.svg b/apps/client/src/static/icons/solid/arrow-to-top.svg similarity index 100% rename from src/static/icons/solid/arrow-to-top.svg rename to apps/client/src/static/icons/solid/arrow-to-top.svg diff --git a/src/static/icons/solid/arrow-up.svg b/apps/client/src/static/icons/solid/arrow-up.svg similarity index 100% rename from src/static/icons/solid/arrow-up.svg rename to apps/client/src/static/icons/solid/arrow-up.svg diff --git a/src/static/icons/solid/arrows-alt-h.svg b/apps/client/src/static/icons/solid/arrows-alt-h.svg similarity index 100% rename from src/static/icons/solid/arrows-alt-h.svg rename to apps/client/src/static/icons/solid/arrows-alt-h.svg diff --git a/src/static/icons/solid/arrows-alt-v.svg b/apps/client/src/static/icons/solid/arrows-alt-v.svg similarity index 100% rename from src/static/icons/solid/arrows-alt-v.svg rename to apps/client/src/static/icons/solid/arrows-alt-v.svg diff --git a/src/static/icons/solid/arrows-alt.svg b/apps/client/src/static/icons/solid/arrows-alt.svg similarity index 100% rename from src/static/icons/solid/arrows-alt.svg rename to apps/client/src/static/icons/solid/arrows-alt.svg diff --git a/src/static/icons/solid/arrows-h.svg b/apps/client/src/static/icons/solid/arrows-h.svg similarity index 100% rename from src/static/icons/solid/arrows-h.svg rename to apps/client/src/static/icons/solid/arrows-h.svg diff --git a/src/static/icons/solid/arrows-v.svg b/apps/client/src/static/icons/solid/arrows-v.svg similarity index 100% rename from src/static/icons/solid/arrows-v.svg rename to apps/client/src/static/icons/solid/arrows-v.svg diff --git a/src/static/icons/solid/arrows.svg b/apps/client/src/static/icons/solid/arrows.svg similarity index 100% rename from src/static/icons/solid/arrows.svg rename to apps/client/src/static/icons/solid/arrows.svg diff --git a/src/static/icons/solid/assistive-listening-systems.svg b/apps/client/src/static/icons/solid/assistive-listening-systems.svg similarity index 100% rename from src/static/icons/solid/assistive-listening-systems.svg rename to apps/client/src/static/icons/solid/assistive-listening-systems.svg diff --git a/src/static/icons/solid/asterisk.svg b/apps/client/src/static/icons/solid/asterisk.svg similarity index 100% rename from src/static/icons/solid/asterisk.svg rename to apps/client/src/static/icons/solid/asterisk.svg diff --git a/src/static/icons/solid/at.svg b/apps/client/src/static/icons/solid/at.svg similarity index 100% rename from src/static/icons/solid/at.svg rename to apps/client/src/static/icons/solid/at.svg diff --git a/src/static/icons/solid/atlas.svg b/apps/client/src/static/icons/solid/atlas.svg similarity index 100% rename from src/static/icons/solid/atlas.svg rename to apps/client/src/static/icons/solid/atlas.svg diff --git a/src/static/icons/solid/atom-alt.svg b/apps/client/src/static/icons/solid/atom-alt.svg similarity index 100% rename from src/static/icons/solid/atom-alt.svg rename to apps/client/src/static/icons/solid/atom-alt.svg diff --git a/src/static/icons/solid/atom.svg b/apps/client/src/static/icons/solid/atom.svg similarity index 100% rename from src/static/icons/solid/atom.svg rename to apps/client/src/static/icons/solid/atom.svg diff --git a/src/static/icons/solid/audio-description.svg b/apps/client/src/static/icons/solid/audio-description.svg similarity index 100% rename from src/static/icons/solid/audio-description.svg rename to apps/client/src/static/icons/solid/audio-description.svg diff --git a/src/static/icons/solid/award.svg b/apps/client/src/static/icons/solid/award.svg similarity index 100% rename from src/static/icons/solid/award.svg rename to apps/client/src/static/icons/solid/award.svg diff --git a/src/static/icons/solid/axe-battle.svg b/apps/client/src/static/icons/solid/axe-battle.svg similarity index 100% rename from src/static/icons/solid/axe-battle.svg rename to apps/client/src/static/icons/solid/axe-battle.svg diff --git a/src/static/icons/solid/axe.svg b/apps/client/src/static/icons/solid/axe.svg similarity index 100% rename from src/static/icons/solid/axe.svg rename to apps/client/src/static/icons/solid/axe.svg diff --git a/src/static/icons/solid/baby-carriage.svg b/apps/client/src/static/icons/solid/baby-carriage.svg similarity index 100% rename from src/static/icons/solid/baby-carriage.svg rename to apps/client/src/static/icons/solid/baby-carriage.svg diff --git a/src/static/icons/solid/baby.svg b/apps/client/src/static/icons/solid/baby.svg similarity index 100% rename from src/static/icons/solid/baby.svg rename to apps/client/src/static/icons/solid/baby.svg diff --git a/src/static/icons/solid/backpack.svg b/apps/client/src/static/icons/solid/backpack.svg similarity index 100% rename from src/static/icons/solid/backpack.svg rename to apps/client/src/static/icons/solid/backpack.svg diff --git a/src/static/icons/solid/backspace.svg b/apps/client/src/static/icons/solid/backspace.svg similarity index 100% rename from src/static/icons/solid/backspace.svg rename to apps/client/src/static/icons/solid/backspace.svg diff --git a/src/static/icons/solid/backward.svg b/apps/client/src/static/icons/solid/backward.svg similarity index 100% rename from src/static/icons/solid/backward.svg rename to apps/client/src/static/icons/solid/backward.svg diff --git a/src/static/icons/solid/bacon.svg b/apps/client/src/static/icons/solid/bacon.svg similarity index 100% rename from src/static/icons/solid/bacon.svg rename to apps/client/src/static/icons/solid/bacon.svg diff --git a/src/static/icons/solid/badge-check.svg b/apps/client/src/static/icons/solid/badge-check.svg similarity index 100% rename from src/static/icons/solid/badge-check.svg rename to apps/client/src/static/icons/solid/badge-check.svg diff --git a/src/static/icons/solid/badge-dollar.svg b/apps/client/src/static/icons/solid/badge-dollar.svg similarity index 100% rename from src/static/icons/solid/badge-dollar.svg rename to apps/client/src/static/icons/solid/badge-dollar.svg diff --git a/src/static/icons/solid/badge-percent.svg b/apps/client/src/static/icons/solid/badge-percent.svg similarity index 100% rename from src/static/icons/solid/badge-percent.svg rename to apps/client/src/static/icons/solid/badge-percent.svg diff --git a/src/static/icons/solid/badge-sheriff.svg b/apps/client/src/static/icons/solid/badge-sheriff.svg similarity index 100% rename from src/static/icons/solid/badge-sheriff.svg rename to apps/client/src/static/icons/solid/badge-sheriff.svg diff --git a/src/static/icons/solid/badge.svg b/apps/client/src/static/icons/solid/badge.svg similarity index 100% rename from src/static/icons/solid/badge.svg rename to apps/client/src/static/icons/solid/badge.svg diff --git a/src/static/icons/solid/badger-honey.svg b/apps/client/src/static/icons/solid/badger-honey.svg similarity index 100% rename from src/static/icons/solid/badger-honey.svg rename to apps/client/src/static/icons/solid/badger-honey.svg diff --git a/src/static/icons/solid/bags-shopping.svg b/apps/client/src/static/icons/solid/bags-shopping.svg similarity index 100% rename from src/static/icons/solid/bags-shopping.svg rename to apps/client/src/static/icons/solid/bags-shopping.svg diff --git a/src/static/icons/solid/bahai.svg b/apps/client/src/static/icons/solid/bahai.svg similarity index 100% rename from src/static/icons/solid/bahai.svg rename to apps/client/src/static/icons/solid/bahai.svg diff --git a/src/static/icons/solid/balance-scale-left.svg b/apps/client/src/static/icons/solid/balance-scale-left.svg similarity index 100% rename from src/static/icons/solid/balance-scale-left.svg rename to apps/client/src/static/icons/solid/balance-scale-left.svg diff --git a/src/static/icons/solid/balance-scale-right.svg b/apps/client/src/static/icons/solid/balance-scale-right.svg similarity index 100% rename from src/static/icons/solid/balance-scale-right.svg rename to apps/client/src/static/icons/solid/balance-scale-right.svg diff --git a/src/static/icons/solid/balance-scale.svg b/apps/client/src/static/icons/solid/balance-scale.svg similarity index 100% rename from src/static/icons/solid/balance-scale.svg rename to apps/client/src/static/icons/solid/balance-scale.svg diff --git a/src/static/icons/solid/ball-pile.svg b/apps/client/src/static/icons/solid/ball-pile.svg similarity index 100% rename from src/static/icons/solid/ball-pile.svg rename to apps/client/src/static/icons/solid/ball-pile.svg diff --git a/src/static/icons/solid/ballot-check.svg b/apps/client/src/static/icons/solid/ballot-check.svg similarity index 100% rename from src/static/icons/solid/ballot-check.svg rename to apps/client/src/static/icons/solid/ballot-check.svg diff --git a/src/static/icons/solid/ballot.svg b/apps/client/src/static/icons/solid/ballot.svg similarity index 100% rename from src/static/icons/solid/ballot.svg rename to apps/client/src/static/icons/solid/ballot.svg diff --git a/src/static/icons/solid/ban.svg b/apps/client/src/static/icons/solid/ban.svg similarity index 100% rename from src/static/icons/solid/ban.svg rename to apps/client/src/static/icons/solid/ban.svg diff --git a/src/static/icons/solid/band-aid.svg b/apps/client/src/static/icons/solid/band-aid.svg similarity index 100% rename from src/static/icons/solid/band-aid.svg rename to apps/client/src/static/icons/solid/band-aid.svg diff --git a/src/static/icons/solid/banjo.svg b/apps/client/src/static/icons/solid/banjo.svg similarity index 100% rename from src/static/icons/solid/banjo.svg rename to apps/client/src/static/icons/solid/banjo.svg diff --git a/src/static/icons/solid/barcode-alt.svg b/apps/client/src/static/icons/solid/barcode-alt.svg similarity index 100% rename from src/static/icons/solid/barcode-alt.svg rename to apps/client/src/static/icons/solid/barcode-alt.svg diff --git a/src/static/icons/solid/barcode-read.svg b/apps/client/src/static/icons/solid/barcode-read.svg similarity index 100% rename from src/static/icons/solid/barcode-read.svg rename to apps/client/src/static/icons/solid/barcode-read.svg diff --git a/src/static/icons/solid/barcode-scan.svg b/apps/client/src/static/icons/solid/barcode-scan.svg similarity index 100% rename from src/static/icons/solid/barcode-scan.svg rename to apps/client/src/static/icons/solid/barcode-scan.svg diff --git a/src/static/icons/solid/barcode.svg b/apps/client/src/static/icons/solid/barcode.svg similarity index 100% rename from src/static/icons/solid/barcode.svg rename to apps/client/src/static/icons/solid/barcode.svg diff --git a/src/static/icons/solid/bars.svg b/apps/client/src/static/icons/solid/bars.svg similarity index 100% rename from src/static/icons/solid/bars.svg rename to apps/client/src/static/icons/solid/bars.svg diff --git a/src/static/icons/solid/baseball-ball.svg b/apps/client/src/static/icons/solid/baseball-ball.svg similarity index 100% rename from src/static/icons/solid/baseball-ball.svg rename to apps/client/src/static/icons/solid/baseball-ball.svg diff --git a/src/static/icons/solid/baseball.svg b/apps/client/src/static/icons/solid/baseball.svg similarity index 100% rename from src/static/icons/solid/baseball.svg rename to apps/client/src/static/icons/solid/baseball.svg diff --git a/src/static/icons/solid/basketball-ball.svg b/apps/client/src/static/icons/solid/basketball-ball.svg similarity index 100% rename from src/static/icons/solid/basketball-ball.svg rename to apps/client/src/static/icons/solid/basketball-ball.svg diff --git a/src/static/icons/solid/basketball-hoop.svg b/apps/client/src/static/icons/solid/basketball-hoop.svg similarity index 100% rename from src/static/icons/solid/basketball-hoop.svg rename to apps/client/src/static/icons/solid/basketball-hoop.svg diff --git a/src/static/icons/solid/bat.svg b/apps/client/src/static/icons/solid/bat.svg similarity index 100% rename from src/static/icons/solid/bat.svg rename to apps/client/src/static/icons/solid/bat.svg diff --git a/src/static/icons/solid/bath.svg b/apps/client/src/static/icons/solid/bath.svg similarity index 100% rename from src/static/icons/solid/bath.svg rename to apps/client/src/static/icons/solid/bath.svg diff --git a/src/static/icons/solid/battery-bolt.svg b/apps/client/src/static/icons/solid/battery-bolt.svg similarity index 100% rename from src/static/icons/solid/battery-bolt.svg rename to apps/client/src/static/icons/solid/battery-bolt.svg diff --git a/src/static/icons/solid/battery-empty.svg b/apps/client/src/static/icons/solid/battery-empty.svg similarity index 100% rename from src/static/icons/solid/battery-empty.svg rename to apps/client/src/static/icons/solid/battery-empty.svg diff --git a/src/static/icons/solid/battery-full.svg b/apps/client/src/static/icons/solid/battery-full.svg similarity index 100% rename from src/static/icons/solid/battery-full.svg rename to apps/client/src/static/icons/solid/battery-full.svg diff --git a/src/static/icons/solid/battery-half.svg b/apps/client/src/static/icons/solid/battery-half.svg similarity index 100% rename from src/static/icons/solid/battery-half.svg rename to apps/client/src/static/icons/solid/battery-half.svg diff --git a/src/static/icons/solid/battery-quarter.svg b/apps/client/src/static/icons/solid/battery-quarter.svg similarity index 100% rename from src/static/icons/solid/battery-quarter.svg rename to apps/client/src/static/icons/solid/battery-quarter.svg diff --git a/src/static/icons/solid/battery-slash.svg b/apps/client/src/static/icons/solid/battery-slash.svg similarity index 100% rename from src/static/icons/solid/battery-slash.svg rename to apps/client/src/static/icons/solid/battery-slash.svg diff --git a/src/static/icons/solid/battery-three-quarters.svg b/apps/client/src/static/icons/solid/battery-three-quarters.svg similarity index 100% rename from src/static/icons/solid/battery-three-quarters.svg rename to apps/client/src/static/icons/solid/battery-three-quarters.svg diff --git a/src/static/icons/solid/bed-alt.svg b/apps/client/src/static/icons/solid/bed-alt.svg similarity index 100% rename from src/static/icons/solid/bed-alt.svg rename to apps/client/src/static/icons/solid/bed-alt.svg diff --git a/src/static/icons/solid/bed-bunk.svg b/apps/client/src/static/icons/solid/bed-bunk.svg similarity index 100% rename from src/static/icons/solid/bed-bunk.svg rename to apps/client/src/static/icons/solid/bed-bunk.svg diff --git a/src/static/icons/solid/bed-empty.svg b/apps/client/src/static/icons/solid/bed-empty.svg similarity index 100% rename from src/static/icons/solid/bed-empty.svg rename to apps/client/src/static/icons/solid/bed-empty.svg diff --git a/src/static/icons/solid/bed.svg b/apps/client/src/static/icons/solid/bed.svg similarity index 100% rename from src/static/icons/solid/bed.svg rename to apps/client/src/static/icons/solid/bed.svg diff --git a/src/static/icons/solid/beer.svg b/apps/client/src/static/icons/solid/beer.svg similarity index 100% rename from src/static/icons/solid/beer.svg rename to apps/client/src/static/icons/solid/beer.svg diff --git a/src/static/icons/solid/bell-exclamation.svg b/apps/client/src/static/icons/solid/bell-exclamation.svg similarity index 100% rename from src/static/icons/solid/bell-exclamation.svg rename to apps/client/src/static/icons/solid/bell-exclamation.svg diff --git a/src/static/icons/solid/bell-on.svg b/apps/client/src/static/icons/solid/bell-on.svg similarity index 100% rename from src/static/icons/solid/bell-on.svg rename to apps/client/src/static/icons/solid/bell-on.svg diff --git a/src/static/icons/solid/bell-plus.svg b/apps/client/src/static/icons/solid/bell-plus.svg similarity index 100% rename from src/static/icons/solid/bell-plus.svg rename to apps/client/src/static/icons/solid/bell-plus.svg diff --git a/src/static/icons/solid/bell-school-slash.svg b/apps/client/src/static/icons/solid/bell-school-slash.svg similarity index 100% rename from src/static/icons/solid/bell-school-slash.svg rename to apps/client/src/static/icons/solid/bell-school-slash.svg diff --git a/src/static/icons/solid/bell-school.svg b/apps/client/src/static/icons/solid/bell-school.svg similarity index 100% rename from src/static/icons/solid/bell-school.svg rename to apps/client/src/static/icons/solid/bell-school.svg diff --git a/src/static/icons/solid/bell-slash.svg b/apps/client/src/static/icons/solid/bell-slash.svg similarity index 100% rename from src/static/icons/solid/bell-slash.svg rename to apps/client/src/static/icons/solid/bell-slash.svg diff --git a/src/static/icons/solid/bell.svg b/apps/client/src/static/icons/solid/bell.svg similarity index 100% rename from src/static/icons/solid/bell.svg rename to apps/client/src/static/icons/solid/bell.svg diff --git a/src/static/icons/solid/bells.svg b/apps/client/src/static/icons/solid/bells.svg similarity index 100% rename from src/static/icons/solid/bells.svg rename to apps/client/src/static/icons/solid/bells.svg diff --git a/src/static/icons/solid/betamax.svg b/apps/client/src/static/icons/solid/betamax.svg similarity index 100% rename from src/static/icons/solid/betamax.svg rename to apps/client/src/static/icons/solid/betamax.svg diff --git a/src/static/icons/solid/bezier-curve.svg b/apps/client/src/static/icons/solid/bezier-curve.svg similarity index 100% rename from src/static/icons/solid/bezier-curve.svg rename to apps/client/src/static/icons/solid/bezier-curve.svg diff --git a/src/static/icons/solid/bible.svg b/apps/client/src/static/icons/solid/bible.svg similarity index 100% rename from src/static/icons/solid/bible.svg rename to apps/client/src/static/icons/solid/bible.svg diff --git a/src/static/icons/solid/bicycle.svg b/apps/client/src/static/icons/solid/bicycle.svg similarity index 100% rename from src/static/icons/solid/bicycle.svg rename to apps/client/src/static/icons/solid/bicycle.svg diff --git a/src/static/icons/solid/biking-mountain.svg b/apps/client/src/static/icons/solid/biking-mountain.svg similarity index 100% rename from src/static/icons/solid/biking-mountain.svg rename to apps/client/src/static/icons/solid/biking-mountain.svg diff --git a/src/static/icons/solid/biking.svg b/apps/client/src/static/icons/solid/biking.svg similarity index 100% rename from src/static/icons/solid/biking.svg rename to apps/client/src/static/icons/solid/biking.svg diff --git a/src/static/icons/solid/binoculars.svg b/apps/client/src/static/icons/solid/binoculars.svg similarity index 100% rename from src/static/icons/solid/binoculars.svg rename to apps/client/src/static/icons/solid/binoculars.svg diff --git a/src/static/icons/solid/biohazard.svg b/apps/client/src/static/icons/solid/biohazard.svg similarity index 100% rename from src/static/icons/solid/biohazard.svg rename to apps/client/src/static/icons/solid/biohazard.svg diff --git a/src/static/icons/solid/birthday-cake.svg b/apps/client/src/static/icons/solid/birthday-cake.svg similarity index 100% rename from src/static/icons/solid/birthday-cake.svg rename to apps/client/src/static/icons/solid/birthday-cake.svg diff --git a/src/static/icons/solid/blanket.svg b/apps/client/src/static/icons/solid/blanket.svg similarity index 100% rename from src/static/icons/solid/blanket.svg rename to apps/client/src/static/icons/solid/blanket.svg diff --git a/src/static/icons/solid/blender-phone.svg b/apps/client/src/static/icons/solid/blender-phone.svg similarity index 100% rename from src/static/icons/solid/blender-phone.svg rename to apps/client/src/static/icons/solid/blender-phone.svg diff --git a/src/static/icons/solid/blender.svg b/apps/client/src/static/icons/solid/blender.svg similarity index 100% rename from src/static/icons/solid/blender.svg rename to apps/client/src/static/icons/solid/blender.svg diff --git a/src/static/icons/solid/blind.svg b/apps/client/src/static/icons/solid/blind.svg similarity index 100% rename from src/static/icons/solid/blind.svg rename to apps/client/src/static/icons/solid/blind.svg diff --git a/src/static/icons/solid/blinds-open.svg b/apps/client/src/static/icons/solid/blinds-open.svg similarity index 100% rename from src/static/icons/solid/blinds-open.svg rename to apps/client/src/static/icons/solid/blinds-open.svg diff --git a/src/static/icons/solid/blinds-raised.svg b/apps/client/src/static/icons/solid/blinds-raised.svg similarity index 100% rename from src/static/icons/solid/blinds-raised.svg rename to apps/client/src/static/icons/solid/blinds-raised.svg diff --git a/src/static/icons/solid/blinds.svg b/apps/client/src/static/icons/solid/blinds.svg similarity index 100% rename from src/static/icons/solid/blinds.svg rename to apps/client/src/static/icons/solid/blinds.svg diff --git a/src/static/icons/solid/blog.svg b/apps/client/src/static/icons/solid/blog.svg similarity index 100% rename from src/static/icons/solid/blog.svg rename to apps/client/src/static/icons/solid/blog.svg diff --git a/src/static/icons/solid/bold.svg b/apps/client/src/static/icons/solid/bold.svg similarity index 100% rename from src/static/icons/solid/bold.svg rename to apps/client/src/static/icons/solid/bold.svg diff --git a/src/static/icons/solid/bolt.svg b/apps/client/src/static/icons/solid/bolt.svg similarity index 100% rename from src/static/icons/solid/bolt.svg rename to apps/client/src/static/icons/solid/bolt.svg diff --git a/src/static/icons/solid/bomb.svg b/apps/client/src/static/icons/solid/bomb.svg similarity index 100% rename from src/static/icons/solid/bomb.svg rename to apps/client/src/static/icons/solid/bomb.svg diff --git a/src/static/icons/solid/bone-break.svg b/apps/client/src/static/icons/solid/bone-break.svg similarity index 100% rename from src/static/icons/solid/bone-break.svg rename to apps/client/src/static/icons/solid/bone-break.svg diff --git a/src/static/icons/solid/bone.svg b/apps/client/src/static/icons/solid/bone.svg similarity index 100% rename from src/static/icons/solid/bone.svg rename to apps/client/src/static/icons/solid/bone.svg diff --git a/src/static/icons/solid/bong.svg b/apps/client/src/static/icons/solid/bong.svg similarity index 100% rename from src/static/icons/solid/bong.svg rename to apps/client/src/static/icons/solid/bong.svg diff --git a/src/static/icons/solid/book-alt.svg b/apps/client/src/static/icons/solid/book-alt.svg similarity index 100% rename from src/static/icons/solid/book-alt.svg rename to apps/client/src/static/icons/solid/book-alt.svg diff --git a/src/static/icons/solid/book-dead.svg b/apps/client/src/static/icons/solid/book-dead.svg similarity index 100% rename from src/static/icons/solid/book-dead.svg rename to apps/client/src/static/icons/solid/book-dead.svg diff --git a/src/static/icons/solid/book-heart.svg b/apps/client/src/static/icons/solid/book-heart.svg similarity index 100% rename from src/static/icons/solid/book-heart.svg rename to apps/client/src/static/icons/solid/book-heart.svg diff --git a/src/static/icons/solid/book-medical.svg b/apps/client/src/static/icons/solid/book-medical.svg similarity index 100% rename from src/static/icons/solid/book-medical.svg rename to apps/client/src/static/icons/solid/book-medical.svg diff --git a/src/static/icons/solid/book-open.svg b/apps/client/src/static/icons/solid/book-open.svg similarity index 100% rename from src/static/icons/solid/book-open.svg rename to apps/client/src/static/icons/solid/book-open.svg diff --git a/src/static/icons/solid/book-reader.svg b/apps/client/src/static/icons/solid/book-reader.svg similarity index 100% rename from src/static/icons/solid/book-reader.svg rename to apps/client/src/static/icons/solid/book-reader.svg diff --git a/src/static/icons/solid/book-spells.svg b/apps/client/src/static/icons/solid/book-spells.svg similarity index 100% rename from src/static/icons/solid/book-spells.svg rename to apps/client/src/static/icons/solid/book-spells.svg diff --git a/src/static/icons/solid/book-user.svg b/apps/client/src/static/icons/solid/book-user.svg similarity index 100% rename from src/static/icons/solid/book-user.svg rename to apps/client/src/static/icons/solid/book-user.svg diff --git a/src/static/icons/solid/book.svg b/apps/client/src/static/icons/solid/book.svg similarity index 100% rename from src/static/icons/solid/book.svg rename to apps/client/src/static/icons/solid/book.svg diff --git a/src/static/icons/solid/bookmark.svg b/apps/client/src/static/icons/solid/bookmark.svg similarity index 100% rename from src/static/icons/solid/bookmark.svg rename to apps/client/src/static/icons/solid/bookmark.svg diff --git a/src/static/icons/solid/books-medical.svg b/apps/client/src/static/icons/solid/books-medical.svg similarity index 100% rename from src/static/icons/solid/books-medical.svg rename to apps/client/src/static/icons/solid/books-medical.svg diff --git a/src/static/icons/solid/books.svg b/apps/client/src/static/icons/solid/books.svg similarity index 100% rename from src/static/icons/solid/books.svg rename to apps/client/src/static/icons/solid/books.svg diff --git a/src/static/icons/solid/boombox.svg b/apps/client/src/static/icons/solid/boombox.svg similarity index 100% rename from src/static/icons/solid/boombox.svg rename to apps/client/src/static/icons/solid/boombox.svg diff --git a/src/static/icons/solid/boot.svg b/apps/client/src/static/icons/solid/boot.svg similarity index 100% rename from src/static/icons/solid/boot.svg rename to apps/client/src/static/icons/solid/boot.svg diff --git a/src/static/icons/solid/booth-curtain.svg b/apps/client/src/static/icons/solid/booth-curtain.svg similarity index 100% rename from src/static/icons/solid/booth-curtain.svg rename to apps/client/src/static/icons/solid/booth-curtain.svg diff --git a/src/static/icons/solid/border-all.svg b/apps/client/src/static/icons/solid/border-all.svg similarity index 100% rename from src/static/icons/solid/border-all.svg rename to apps/client/src/static/icons/solid/border-all.svg diff --git a/src/static/icons/solid/border-bottom.svg b/apps/client/src/static/icons/solid/border-bottom.svg similarity index 100% rename from src/static/icons/solid/border-bottom.svg rename to apps/client/src/static/icons/solid/border-bottom.svg diff --git a/src/static/icons/solid/border-center-h.svg b/apps/client/src/static/icons/solid/border-center-h.svg similarity index 100% rename from src/static/icons/solid/border-center-h.svg rename to apps/client/src/static/icons/solid/border-center-h.svg diff --git a/src/static/icons/solid/border-center-v.svg b/apps/client/src/static/icons/solid/border-center-v.svg similarity index 100% rename from src/static/icons/solid/border-center-v.svg rename to apps/client/src/static/icons/solid/border-center-v.svg diff --git a/src/static/icons/solid/border-inner.svg b/apps/client/src/static/icons/solid/border-inner.svg similarity index 100% rename from src/static/icons/solid/border-inner.svg rename to apps/client/src/static/icons/solid/border-inner.svg diff --git a/src/static/icons/solid/border-left.svg b/apps/client/src/static/icons/solid/border-left.svg similarity index 100% rename from src/static/icons/solid/border-left.svg rename to apps/client/src/static/icons/solid/border-left.svg diff --git a/src/static/icons/solid/border-none.svg b/apps/client/src/static/icons/solid/border-none.svg similarity index 100% rename from src/static/icons/solid/border-none.svg rename to apps/client/src/static/icons/solid/border-none.svg diff --git a/src/static/icons/solid/border-outer.svg b/apps/client/src/static/icons/solid/border-outer.svg similarity index 100% rename from src/static/icons/solid/border-outer.svg rename to apps/client/src/static/icons/solid/border-outer.svg diff --git a/src/static/icons/solid/border-right.svg b/apps/client/src/static/icons/solid/border-right.svg similarity index 100% rename from src/static/icons/solid/border-right.svg rename to apps/client/src/static/icons/solid/border-right.svg diff --git a/src/static/icons/solid/border-style-alt.svg b/apps/client/src/static/icons/solid/border-style-alt.svg similarity index 100% rename from src/static/icons/solid/border-style-alt.svg rename to apps/client/src/static/icons/solid/border-style-alt.svg diff --git a/src/static/icons/solid/border-style.svg b/apps/client/src/static/icons/solid/border-style.svg similarity index 100% rename from src/static/icons/solid/border-style.svg rename to apps/client/src/static/icons/solid/border-style.svg diff --git a/src/static/icons/solid/border-top.svg b/apps/client/src/static/icons/solid/border-top.svg similarity index 100% rename from src/static/icons/solid/border-top.svg rename to apps/client/src/static/icons/solid/border-top.svg diff --git a/src/static/icons/solid/bow-arrow.svg b/apps/client/src/static/icons/solid/bow-arrow.svg similarity index 100% rename from src/static/icons/solid/bow-arrow.svg rename to apps/client/src/static/icons/solid/bow-arrow.svg diff --git a/src/static/icons/solid/bowling-ball.svg b/apps/client/src/static/icons/solid/bowling-ball.svg similarity index 100% rename from src/static/icons/solid/bowling-ball.svg rename to apps/client/src/static/icons/solid/bowling-ball.svg diff --git a/src/static/icons/solid/bowling-pins.svg b/apps/client/src/static/icons/solid/bowling-pins.svg similarity index 100% rename from src/static/icons/solid/bowling-pins.svg rename to apps/client/src/static/icons/solid/bowling-pins.svg diff --git a/src/static/icons/solid/box-alt.svg b/apps/client/src/static/icons/solid/box-alt.svg similarity index 100% rename from src/static/icons/solid/box-alt.svg rename to apps/client/src/static/icons/solid/box-alt.svg diff --git a/src/static/icons/solid/box-ballot.svg b/apps/client/src/static/icons/solid/box-ballot.svg similarity index 100% rename from src/static/icons/solid/box-ballot.svg rename to apps/client/src/static/icons/solid/box-ballot.svg diff --git a/src/static/icons/solid/box-check.svg b/apps/client/src/static/icons/solid/box-check.svg similarity index 100% rename from src/static/icons/solid/box-check.svg rename to apps/client/src/static/icons/solid/box-check.svg diff --git a/src/static/icons/solid/box-fragile.svg b/apps/client/src/static/icons/solid/box-fragile.svg similarity index 100% rename from src/static/icons/solid/box-fragile.svg rename to apps/client/src/static/icons/solid/box-fragile.svg diff --git a/src/static/icons/solid/box-full.svg b/apps/client/src/static/icons/solid/box-full.svg similarity index 100% rename from src/static/icons/solid/box-full.svg rename to apps/client/src/static/icons/solid/box-full.svg diff --git a/src/static/icons/solid/box-heart.svg b/apps/client/src/static/icons/solid/box-heart.svg similarity index 100% rename from src/static/icons/solid/box-heart.svg rename to apps/client/src/static/icons/solid/box-heart.svg diff --git a/src/static/icons/solid/box-open.svg b/apps/client/src/static/icons/solid/box-open.svg similarity index 100% rename from src/static/icons/solid/box-open.svg rename to apps/client/src/static/icons/solid/box-open.svg diff --git a/src/static/icons/solid/box-up.svg b/apps/client/src/static/icons/solid/box-up.svg similarity index 100% rename from src/static/icons/solid/box-up.svg rename to apps/client/src/static/icons/solid/box-up.svg diff --git a/src/static/icons/solid/box-usd.svg b/apps/client/src/static/icons/solid/box-usd.svg similarity index 100% rename from src/static/icons/solid/box-usd.svg rename to apps/client/src/static/icons/solid/box-usd.svg diff --git a/src/static/icons/solid/box.svg b/apps/client/src/static/icons/solid/box.svg similarity index 100% rename from src/static/icons/solid/box.svg rename to apps/client/src/static/icons/solid/box.svg diff --git a/src/static/icons/solid/boxes-alt.svg b/apps/client/src/static/icons/solid/boxes-alt.svg similarity index 100% rename from src/static/icons/solid/boxes-alt.svg rename to apps/client/src/static/icons/solid/boxes-alt.svg diff --git a/src/static/icons/solid/boxes.svg b/apps/client/src/static/icons/solid/boxes.svg similarity index 100% rename from src/static/icons/solid/boxes.svg rename to apps/client/src/static/icons/solid/boxes.svg diff --git a/src/static/icons/solid/boxing-glove.svg b/apps/client/src/static/icons/solid/boxing-glove.svg similarity index 100% rename from src/static/icons/solid/boxing-glove.svg rename to apps/client/src/static/icons/solid/boxing-glove.svg diff --git a/src/static/icons/solid/brackets-curly.svg b/apps/client/src/static/icons/solid/brackets-curly.svg similarity index 100% rename from src/static/icons/solid/brackets-curly.svg rename to apps/client/src/static/icons/solid/brackets-curly.svg diff --git a/src/static/icons/solid/brackets.svg b/apps/client/src/static/icons/solid/brackets.svg similarity index 100% rename from src/static/icons/solid/brackets.svg rename to apps/client/src/static/icons/solid/brackets.svg diff --git a/src/static/icons/solid/braille.svg b/apps/client/src/static/icons/solid/braille.svg similarity index 100% rename from src/static/icons/solid/braille.svg rename to apps/client/src/static/icons/solid/braille.svg diff --git a/src/static/icons/solid/brain.svg b/apps/client/src/static/icons/solid/brain.svg similarity index 100% rename from src/static/icons/solid/brain.svg rename to apps/client/src/static/icons/solid/brain.svg diff --git a/src/static/icons/solid/bread-loaf.svg b/apps/client/src/static/icons/solid/bread-loaf.svg similarity index 100% rename from src/static/icons/solid/bread-loaf.svg rename to apps/client/src/static/icons/solid/bread-loaf.svg diff --git a/src/static/icons/solid/bread-slice.svg b/apps/client/src/static/icons/solid/bread-slice.svg similarity index 100% rename from src/static/icons/solid/bread-slice.svg rename to apps/client/src/static/icons/solid/bread-slice.svg diff --git a/src/static/icons/solid/briefcase-medical.svg b/apps/client/src/static/icons/solid/briefcase-medical.svg similarity index 100% rename from src/static/icons/solid/briefcase-medical.svg rename to apps/client/src/static/icons/solid/briefcase-medical.svg diff --git a/src/static/icons/solid/briefcase.svg b/apps/client/src/static/icons/solid/briefcase.svg similarity index 100% rename from src/static/icons/solid/briefcase.svg rename to apps/client/src/static/icons/solid/briefcase.svg diff --git a/src/static/icons/solid/bring-forward.svg b/apps/client/src/static/icons/solid/bring-forward.svg similarity index 100% rename from src/static/icons/solid/bring-forward.svg rename to apps/client/src/static/icons/solid/bring-forward.svg diff --git a/src/static/icons/solid/bring-front.svg b/apps/client/src/static/icons/solid/bring-front.svg similarity index 100% rename from src/static/icons/solid/bring-front.svg rename to apps/client/src/static/icons/solid/bring-front.svg diff --git a/src/static/icons/solid/broadcast-tower.svg b/apps/client/src/static/icons/solid/broadcast-tower.svg similarity index 100% rename from src/static/icons/solid/broadcast-tower.svg rename to apps/client/src/static/icons/solid/broadcast-tower.svg diff --git a/src/static/icons/solid/broom.svg b/apps/client/src/static/icons/solid/broom.svg similarity index 100% rename from src/static/icons/solid/broom.svg rename to apps/client/src/static/icons/solid/broom.svg diff --git a/src/static/icons/solid/browser.svg b/apps/client/src/static/icons/solid/browser.svg similarity index 100% rename from src/static/icons/solid/browser.svg rename to apps/client/src/static/icons/solid/browser.svg diff --git a/src/static/icons/solid/brush.svg b/apps/client/src/static/icons/solid/brush.svg similarity index 100% rename from src/static/icons/solid/brush.svg rename to apps/client/src/static/icons/solid/brush.svg diff --git a/src/static/icons/solid/bug.svg b/apps/client/src/static/icons/solid/bug.svg similarity index 100% rename from src/static/icons/solid/bug.svg rename to apps/client/src/static/icons/solid/bug.svg diff --git a/src/static/icons/solid/building.svg b/apps/client/src/static/icons/solid/building.svg similarity index 100% rename from src/static/icons/solid/building.svg rename to apps/client/src/static/icons/solid/building.svg diff --git a/src/static/icons/solid/bullhorn.svg b/apps/client/src/static/icons/solid/bullhorn.svg similarity index 100% rename from src/static/icons/solid/bullhorn.svg rename to apps/client/src/static/icons/solid/bullhorn.svg diff --git a/src/static/icons/solid/bullseye-arrow.svg b/apps/client/src/static/icons/solid/bullseye-arrow.svg similarity index 100% rename from src/static/icons/solid/bullseye-arrow.svg rename to apps/client/src/static/icons/solid/bullseye-arrow.svg diff --git a/src/static/icons/solid/bullseye-pointer.svg b/apps/client/src/static/icons/solid/bullseye-pointer.svg similarity index 100% rename from src/static/icons/solid/bullseye-pointer.svg rename to apps/client/src/static/icons/solid/bullseye-pointer.svg diff --git a/src/static/icons/solid/bullseye.svg b/apps/client/src/static/icons/solid/bullseye.svg similarity index 100% rename from src/static/icons/solid/bullseye.svg rename to apps/client/src/static/icons/solid/bullseye.svg diff --git a/src/static/icons/solid/burger-soda.svg b/apps/client/src/static/icons/solid/burger-soda.svg similarity index 100% rename from src/static/icons/solid/burger-soda.svg rename to apps/client/src/static/icons/solid/burger-soda.svg diff --git a/src/static/icons/solid/burn.svg b/apps/client/src/static/icons/solid/burn.svg similarity index 100% rename from src/static/icons/solid/burn.svg rename to apps/client/src/static/icons/solid/burn.svg diff --git a/src/static/icons/solid/burrito.svg b/apps/client/src/static/icons/solid/burrito.svg similarity index 100% rename from src/static/icons/solid/burrito.svg rename to apps/client/src/static/icons/solid/burrito.svg diff --git a/src/static/icons/solid/bus-alt.svg b/apps/client/src/static/icons/solid/bus-alt.svg similarity index 100% rename from src/static/icons/solid/bus-alt.svg rename to apps/client/src/static/icons/solid/bus-alt.svg diff --git a/src/static/icons/solid/bus-school.svg b/apps/client/src/static/icons/solid/bus-school.svg similarity index 100% rename from src/static/icons/solid/bus-school.svg rename to apps/client/src/static/icons/solid/bus-school.svg diff --git a/src/static/icons/solid/bus.svg b/apps/client/src/static/icons/solid/bus.svg similarity index 100% rename from src/static/icons/solid/bus.svg rename to apps/client/src/static/icons/solid/bus.svg diff --git a/src/static/icons/solid/business-time.svg b/apps/client/src/static/icons/solid/business-time.svg similarity index 100% rename from src/static/icons/solid/business-time.svg rename to apps/client/src/static/icons/solid/business-time.svg diff --git a/src/static/icons/solid/cabinet-filing.svg b/apps/client/src/static/icons/solid/cabinet-filing.svg similarity index 100% rename from src/static/icons/solid/cabinet-filing.svg rename to apps/client/src/static/icons/solid/cabinet-filing.svg diff --git a/src/static/icons/solid/cactus.svg b/apps/client/src/static/icons/solid/cactus.svg similarity index 100% rename from src/static/icons/solid/cactus.svg rename to apps/client/src/static/icons/solid/cactus.svg diff --git a/src/static/icons/solid/calculator-alt.svg b/apps/client/src/static/icons/solid/calculator-alt.svg similarity index 100% rename from src/static/icons/solid/calculator-alt.svg rename to apps/client/src/static/icons/solid/calculator-alt.svg diff --git a/src/static/icons/solid/calculator.svg b/apps/client/src/static/icons/solid/calculator.svg similarity index 100% rename from src/static/icons/solid/calculator.svg rename to apps/client/src/static/icons/solid/calculator.svg diff --git a/src/static/icons/solid/calendar-alt.svg b/apps/client/src/static/icons/solid/calendar-alt.svg similarity index 100% rename from src/static/icons/solid/calendar-alt.svg rename to apps/client/src/static/icons/solid/calendar-alt.svg diff --git a/src/static/icons/solid/calendar-check.svg b/apps/client/src/static/icons/solid/calendar-check.svg similarity index 100% rename from src/static/icons/solid/calendar-check.svg rename to apps/client/src/static/icons/solid/calendar-check.svg diff --git a/src/static/icons/solid/calendar-day.svg b/apps/client/src/static/icons/solid/calendar-day.svg similarity index 100% rename from src/static/icons/solid/calendar-day.svg rename to apps/client/src/static/icons/solid/calendar-day.svg diff --git a/src/static/icons/solid/calendar-edit.svg b/apps/client/src/static/icons/solid/calendar-edit.svg similarity index 100% rename from src/static/icons/solid/calendar-edit.svg rename to apps/client/src/static/icons/solid/calendar-edit.svg diff --git a/src/static/icons/solid/calendar-exclamation.svg b/apps/client/src/static/icons/solid/calendar-exclamation.svg similarity index 100% rename from src/static/icons/solid/calendar-exclamation.svg rename to apps/client/src/static/icons/solid/calendar-exclamation.svg diff --git a/src/static/icons/solid/calendar-minus.svg b/apps/client/src/static/icons/solid/calendar-minus.svg similarity index 100% rename from src/static/icons/solid/calendar-minus.svg rename to apps/client/src/static/icons/solid/calendar-minus.svg diff --git a/src/static/icons/solid/calendar-plus.svg b/apps/client/src/static/icons/solid/calendar-plus.svg similarity index 100% rename from src/static/icons/solid/calendar-plus.svg rename to apps/client/src/static/icons/solid/calendar-plus.svg diff --git a/src/static/icons/solid/calendar-star.svg b/apps/client/src/static/icons/solid/calendar-star.svg similarity index 100% rename from src/static/icons/solid/calendar-star.svg rename to apps/client/src/static/icons/solid/calendar-star.svg diff --git a/src/static/icons/solid/calendar-times.svg b/apps/client/src/static/icons/solid/calendar-times.svg similarity index 100% rename from src/static/icons/solid/calendar-times.svg rename to apps/client/src/static/icons/solid/calendar-times.svg diff --git a/src/static/icons/solid/calendar-week.svg b/apps/client/src/static/icons/solid/calendar-week.svg similarity index 100% rename from src/static/icons/solid/calendar-week.svg rename to apps/client/src/static/icons/solid/calendar-week.svg diff --git a/src/static/icons/solid/calendar.svg b/apps/client/src/static/icons/solid/calendar.svg similarity index 100% rename from src/static/icons/solid/calendar.svg rename to apps/client/src/static/icons/solid/calendar.svg diff --git a/src/static/icons/solid/camcorder.svg b/apps/client/src/static/icons/solid/camcorder.svg similarity index 100% rename from src/static/icons/solid/camcorder.svg rename to apps/client/src/static/icons/solid/camcorder.svg diff --git a/src/static/icons/solid/camera-alt.svg b/apps/client/src/static/icons/solid/camera-alt.svg similarity index 100% rename from src/static/icons/solid/camera-alt.svg rename to apps/client/src/static/icons/solid/camera-alt.svg diff --git a/src/static/icons/solid/camera-home.svg b/apps/client/src/static/icons/solid/camera-home.svg similarity index 100% rename from src/static/icons/solid/camera-home.svg rename to apps/client/src/static/icons/solid/camera-home.svg diff --git a/src/static/icons/solid/camera-movie.svg b/apps/client/src/static/icons/solid/camera-movie.svg similarity index 100% rename from src/static/icons/solid/camera-movie.svg rename to apps/client/src/static/icons/solid/camera-movie.svg diff --git a/src/static/icons/solid/camera-polaroid.svg b/apps/client/src/static/icons/solid/camera-polaroid.svg similarity index 100% rename from src/static/icons/solid/camera-polaroid.svg rename to apps/client/src/static/icons/solid/camera-polaroid.svg diff --git a/src/static/icons/solid/camera-retro.svg b/apps/client/src/static/icons/solid/camera-retro.svg similarity index 100% rename from src/static/icons/solid/camera-retro.svg rename to apps/client/src/static/icons/solid/camera-retro.svg diff --git a/src/static/icons/solid/camera.svg b/apps/client/src/static/icons/solid/camera.svg similarity index 100% rename from src/static/icons/solid/camera.svg rename to apps/client/src/static/icons/solid/camera.svg diff --git a/src/static/icons/solid/campfire.svg b/apps/client/src/static/icons/solid/campfire.svg similarity index 100% rename from src/static/icons/solid/campfire.svg rename to apps/client/src/static/icons/solid/campfire.svg diff --git a/src/static/icons/solid/campground.svg b/apps/client/src/static/icons/solid/campground.svg similarity index 100% rename from src/static/icons/solid/campground.svg rename to apps/client/src/static/icons/solid/campground.svg diff --git a/src/static/icons/solid/candle-holder.svg b/apps/client/src/static/icons/solid/candle-holder.svg similarity index 100% rename from src/static/icons/solid/candle-holder.svg rename to apps/client/src/static/icons/solid/candle-holder.svg diff --git a/src/static/icons/solid/candy-cane.svg b/apps/client/src/static/icons/solid/candy-cane.svg similarity index 100% rename from src/static/icons/solid/candy-cane.svg rename to apps/client/src/static/icons/solid/candy-cane.svg diff --git a/src/static/icons/solid/candy-corn.svg b/apps/client/src/static/icons/solid/candy-corn.svg similarity index 100% rename from src/static/icons/solid/candy-corn.svg rename to apps/client/src/static/icons/solid/candy-corn.svg diff --git a/src/static/icons/solid/cannabis.svg b/apps/client/src/static/icons/solid/cannabis.svg similarity index 100% rename from src/static/icons/solid/cannabis.svg rename to apps/client/src/static/icons/solid/cannabis.svg diff --git a/src/static/icons/solid/capsules.svg b/apps/client/src/static/icons/solid/capsules.svg similarity index 100% rename from src/static/icons/solid/capsules.svg rename to apps/client/src/static/icons/solid/capsules.svg diff --git a/src/static/icons/solid/car-alt.svg b/apps/client/src/static/icons/solid/car-alt.svg similarity index 100% rename from src/static/icons/solid/car-alt.svg rename to apps/client/src/static/icons/solid/car-alt.svg diff --git a/src/static/icons/solid/car-battery.svg b/apps/client/src/static/icons/solid/car-battery.svg similarity index 100% rename from src/static/icons/solid/car-battery.svg rename to apps/client/src/static/icons/solid/car-battery.svg diff --git a/src/static/icons/solid/car-building.svg b/apps/client/src/static/icons/solid/car-building.svg similarity index 100% rename from src/static/icons/solid/car-building.svg rename to apps/client/src/static/icons/solid/car-building.svg diff --git a/src/static/icons/solid/car-bump.svg b/apps/client/src/static/icons/solid/car-bump.svg similarity index 100% rename from src/static/icons/solid/car-bump.svg rename to apps/client/src/static/icons/solid/car-bump.svg diff --git a/src/static/icons/solid/car-bus.svg b/apps/client/src/static/icons/solid/car-bus.svg similarity index 100% rename from src/static/icons/solid/car-bus.svg rename to apps/client/src/static/icons/solid/car-bus.svg diff --git a/src/static/icons/solid/car-crash.svg b/apps/client/src/static/icons/solid/car-crash.svg similarity index 100% rename from src/static/icons/solid/car-crash.svg rename to apps/client/src/static/icons/solid/car-crash.svg diff --git a/src/static/icons/solid/car-garage.svg b/apps/client/src/static/icons/solid/car-garage.svg similarity index 100% rename from src/static/icons/solid/car-garage.svg rename to apps/client/src/static/icons/solid/car-garage.svg diff --git a/src/static/icons/solid/car-mechanic.svg b/apps/client/src/static/icons/solid/car-mechanic.svg similarity index 100% rename from src/static/icons/solid/car-mechanic.svg rename to apps/client/src/static/icons/solid/car-mechanic.svg diff --git a/src/static/icons/solid/car-side.svg b/apps/client/src/static/icons/solid/car-side.svg similarity index 100% rename from src/static/icons/solid/car-side.svg rename to apps/client/src/static/icons/solid/car-side.svg diff --git a/src/static/icons/solid/car-tilt.svg b/apps/client/src/static/icons/solid/car-tilt.svg similarity index 100% rename from src/static/icons/solid/car-tilt.svg rename to apps/client/src/static/icons/solid/car-tilt.svg diff --git a/src/static/icons/solid/car-wash.svg b/apps/client/src/static/icons/solid/car-wash.svg similarity index 100% rename from src/static/icons/solid/car-wash.svg rename to apps/client/src/static/icons/solid/car-wash.svg diff --git a/src/static/icons/solid/car.svg b/apps/client/src/static/icons/solid/car.svg similarity index 100% rename from src/static/icons/solid/car.svg rename to apps/client/src/static/icons/solid/car.svg diff --git a/src/static/icons/solid/caravan-alt.svg b/apps/client/src/static/icons/solid/caravan-alt.svg similarity index 100% rename from src/static/icons/solid/caravan-alt.svg rename to apps/client/src/static/icons/solid/caravan-alt.svg diff --git a/src/static/icons/solid/caravan.svg b/apps/client/src/static/icons/solid/caravan.svg similarity index 100% rename from src/static/icons/solid/caravan.svg rename to apps/client/src/static/icons/solid/caravan.svg diff --git a/src/static/icons/solid/caret-circle-down.svg b/apps/client/src/static/icons/solid/caret-circle-down.svg similarity index 100% rename from src/static/icons/solid/caret-circle-down.svg rename to apps/client/src/static/icons/solid/caret-circle-down.svg diff --git a/src/static/icons/solid/caret-circle-left.svg b/apps/client/src/static/icons/solid/caret-circle-left.svg similarity index 100% rename from src/static/icons/solid/caret-circle-left.svg rename to apps/client/src/static/icons/solid/caret-circle-left.svg diff --git a/src/static/icons/solid/caret-circle-right.svg b/apps/client/src/static/icons/solid/caret-circle-right.svg similarity index 100% rename from src/static/icons/solid/caret-circle-right.svg rename to apps/client/src/static/icons/solid/caret-circle-right.svg diff --git a/src/static/icons/solid/caret-circle-up.svg b/apps/client/src/static/icons/solid/caret-circle-up.svg similarity index 100% rename from src/static/icons/solid/caret-circle-up.svg rename to apps/client/src/static/icons/solid/caret-circle-up.svg diff --git a/src/static/icons/solid/caret-down.svg b/apps/client/src/static/icons/solid/caret-down.svg similarity index 100% rename from src/static/icons/solid/caret-down.svg rename to apps/client/src/static/icons/solid/caret-down.svg diff --git a/src/static/icons/solid/caret-left.svg b/apps/client/src/static/icons/solid/caret-left.svg similarity index 100% rename from src/static/icons/solid/caret-left.svg rename to apps/client/src/static/icons/solid/caret-left.svg diff --git a/src/static/icons/solid/caret-right.svg b/apps/client/src/static/icons/solid/caret-right.svg similarity index 100% rename from src/static/icons/solid/caret-right.svg rename to apps/client/src/static/icons/solid/caret-right.svg diff --git a/src/static/icons/solid/caret-square-down.svg b/apps/client/src/static/icons/solid/caret-square-down.svg similarity index 100% rename from src/static/icons/solid/caret-square-down.svg rename to apps/client/src/static/icons/solid/caret-square-down.svg diff --git a/src/static/icons/solid/caret-square-left.svg b/apps/client/src/static/icons/solid/caret-square-left.svg similarity index 100% rename from src/static/icons/solid/caret-square-left.svg rename to apps/client/src/static/icons/solid/caret-square-left.svg diff --git a/src/static/icons/solid/caret-square-right.svg b/apps/client/src/static/icons/solid/caret-square-right.svg similarity index 100% rename from src/static/icons/solid/caret-square-right.svg rename to apps/client/src/static/icons/solid/caret-square-right.svg diff --git a/src/static/icons/solid/caret-square-up.svg b/apps/client/src/static/icons/solid/caret-square-up.svg similarity index 100% rename from src/static/icons/solid/caret-square-up.svg rename to apps/client/src/static/icons/solid/caret-square-up.svg diff --git a/src/static/icons/solid/caret-up.svg b/apps/client/src/static/icons/solid/caret-up.svg similarity index 100% rename from src/static/icons/solid/caret-up.svg rename to apps/client/src/static/icons/solid/caret-up.svg diff --git a/src/static/icons/solid/carrot.svg b/apps/client/src/static/icons/solid/carrot.svg similarity index 100% rename from src/static/icons/solid/carrot.svg rename to apps/client/src/static/icons/solid/carrot.svg diff --git a/src/static/icons/solid/cars.svg b/apps/client/src/static/icons/solid/cars.svg similarity index 100% rename from src/static/icons/solid/cars.svg rename to apps/client/src/static/icons/solid/cars.svg diff --git a/src/static/icons/solid/cart-arrow-down.svg b/apps/client/src/static/icons/solid/cart-arrow-down.svg similarity index 100% rename from src/static/icons/solid/cart-arrow-down.svg rename to apps/client/src/static/icons/solid/cart-arrow-down.svg diff --git a/src/static/icons/solid/cart-plus.svg b/apps/client/src/static/icons/solid/cart-plus.svg similarity index 100% rename from src/static/icons/solid/cart-plus.svg rename to apps/client/src/static/icons/solid/cart-plus.svg diff --git a/src/static/icons/solid/cash-register.svg b/apps/client/src/static/icons/solid/cash-register.svg similarity index 100% rename from src/static/icons/solid/cash-register.svg rename to apps/client/src/static/icons/solid/cash-register.svg diff --git a/src/static/icons/solid/cassette-tape.svg b/apps/client/src/static/icons/solid/cassette-tape.svg similarity index 100% rename from src/static/icons/solid/cassette-tape.svg rename to apps/client/src/static/icons/solid/cassette-tape.svg diff --git a/src/static/icons/solid/cat-space.svg b/apps/client/src/static/icons/solid/cat-space.svg similarity index 100% rename from src/static/icons/solid/cat-space.svg rename to apps/client/src/static/icons/solid/cat-space.svg diff --git a/src/static/icons/solid/cat.svg b/apps/client/src/static/icons/solid/cat.svg similarity index 100% rename from src/static/icons/solid/cat.svg rename to apps/client/src/static/icons/solid/cat.svg diff --git a/src/static/icons/solid/cauldron.svg b/apps/client/src/static/icons/solid/cauldron.svg similarity index 100% rename from src/static/icons/solid/cauldron.svg rename to apps/client/src/static/icons/solid/cauldron.svg diff --git a/src/static/icons/solid/cctv.svg b/apps/client/src/static/icons/solid/cctv.svg similarity index 100% rename from src/static/icons/solid/cctv.svg rename to apps/client/src/static/icons/solid/cctv.svg diff --git a/src/static/icons/solid/certificate.svg b/apps/client/src/static/icons/solid/certificate.svg similarity index 100% rename from src/static/icons/solid/certificate.svg rename to apps/client/src/static/icons/solid/certificate.svg diff --git a/src/static/icons/solid/chair-office.svg b/apps/client/src/static/icons/solid/chair-office.svg similarity index 100% rename from src/static/icons/solid/chair-office.svg rename to apps/client/src/static/icons/solid/chair-office.svg diff --git a/src/static/icons/solid/chair.svg b/apps/client/src/static/icons/solid/chair.svg similarity index 100% rename from src/static/icons/solid/chair.svg rename to apps/client/src/static/icons/solid/chair.svg diff --git a/src/static/icons/solid/chalkboard-teacher.svg b/apps/client/src/static/icons/solid/chalkboard-teacher.svg similarity index 100% rename from src/static/icons/solid/chalkboard-teacher.svg rename to apps/client/src/static/icons/solid/chalkboard-teacher.svg diff --git a/src/static/icons/solid/chalkboard.svg b/apps/client/src/static/icons/solid/chalkboard.svg similarity index 100% rename from src/static/icons/solid/chalkboard.svg rename to apps/client/src/static/icons/solid/chalkboard.svg diff --git a/src/static/icons/solid/charging-station.svg b/apps/client/src/static/icons/solid/charging-station.svg similarity index 100% rename from src/static/icons/solid/charging-station.svg rename to apps/client/src/static/icons/solid/charging-station.svg diff --git a/src/static/icons/solid/chart-area.svg b/apps/client/src/static/icons/solid/chart-area.svg similarity index 100% rename from src/static/icons/solid/chart-area.svg rename to apps/client/src/static/icons/solid/chart-area.svg diff --git a/src/static/icons/solid/chart-bar.svg b/apps/client/src/static/icons/solid/chart-bar.svg similarity index 100% rename from src/static/icons/solid/chart-bar.svg rename to apps/client/src/static/icons/solid/chart-bar.svg diff --git a/src/static/icons/solid/chart-line-down.svg b/apps/client/src/static/icons/solid/chart-line-down.svg similarity index 100% rename from src/static/icons/solid/chart-line-down.svg rename to apps/client/src/static/icons/solid/chart-line-down.svg diff --git a/src/static/icons/solid/chart-line.svg b/apps/client/src/static/icons/solid/chart-line.svg similarity index 100% rename from src/static/icons/solid/chart-line.svg rename to apps/client/src/static/icons/solid/chart-line.svg diff --git a/src/static/icons/solid/chart-network.svg b/apps/client/src/static/icons/solid/chart-network.svg similarity index 100% rename from src/static/icons/solid/chart-network.svg rename to apps/client/src/static/icons/solid/chart-network.svg diff --git a/src/static/icons/solid/chart-pie-alt.svg b/apps/client/src/static/icons/solid/chart-pie-alt.svg similarity index 100% rename from src/static/icons/solid/chart-pie-alt.svg rename to apps/client/src/static/icons/solid/chart-pie-alt.svg diff --git a/src/static/icons/solid/chart-pie.svg b/apps/client/src/static/icons/solid/chart-pie.svg similarity index 100% rename from src/static/icons/solid/chart-pie.svg rename to apps/client/src/static/icons/solid/chart-pie.svg diff --git a/src/static/icons/solid/chart-scatter.svg b/apps/client/src/static/icons/solid/chart-scatter.svg similarity index 100% rename from src/static/icons/solid/chart-scatter.svg rename to apps/client/src/static/icons/solid/chart-scatter.svg diff --git a/src/static/icons/solid/check-circle.svg b/apps/client/src/static/icons/solid/check-circle.svg similarity index 100% rename from src/static/icons/solid/check-circle.svg rename to apps/client/src/static/icons/solid/check-circle.svg diff --git a/src/static/icons/solid/check-double.svg b/apps/client/src/static/icons/solid/check-double.svg similarity index 100% rename from src/static/icons/solid/check-double.svg rename to apps/client/src/static/icons/solid/check-double.svg diff --git a/src/static/icons/solid/check-square.svg b/apps/client/src/static/icons/solid/check-square.svg similarity index 100% rename from src/static/icons/solid/check-square.svg rename to apps/client/src/static/icons/solid/check-square.svg diff --git a/src/static/icons/solid/check.svg b/apps/client/src/static/icons/solid/check.svg similarity index 100% rename from src/static/icons/solid/check.svg rename to apps/client/src/static/icons/solid/check.svg diff --git a/src/static/icons/solid/cheese-swiss.svg b/apps/client/src/static/icons/solid/cheese-swiss.svg similarity index 100% rename from src/static/icons/solid/cheese-swiss.svg rename to apps/client/src/static/icons/solid/cheese-swiss.svg diff --git a/src/static/icons/solid/cheese.svg b/apps/client/src/static/icons/solid/cheese.svg similarity index 100% rename from src/static/icons/solid/cheese.svg rename to apps/client/src/static/icons/solid/cheese.svg diff --git a/src/static/icons/solid/cheeseburger.svg b/apps/client/src/static/icons/solid/cheeseburger.svg similarity index 100% rename from src/static/icons/solid/cheeseburger.svg rename to apps/client/src/static/icons/solid/cheeseburger.svg diff --git a/src/static/icons/solid/chess-bishop-alt.svg b/apps/client/src/static/icons/solid/chess-bishop-alt.svg similarity index 100% rename from src/static/icons/solid/chess-bishop-alt.svg rename to apps/client/src/static/icons/solid/chess-bishop-alt.svg diff --git a/src/static/icons/solid/chess-bishop.svg b/apps/client/src/static/icons/solid/chess-bishop.svg similarity index 100% rename from src/static/icons/solid/chess-bishop.svg rename to apps/client/src/static/icons/solid/chess-bishop.svg diff --git a/src/static/icons/solid/chess-board.svg b/apps/client/src/static/icons/solid/chess-board.svg similarity index 100% rename from src/static/icons/solid/chess-board.svg rename to apps/client/src/static/icons/solid/chess-board.svg diff --git a/src/static/icons/solid/chess-clock-alt.svg b/apps/client/src/static/icons/solid/chess-clock-alt.svg similarity index 100% rename from src/static/icons/solid/chess-clock-alt.svg rename to apps/client/src/static/icons/solid/chess-clock-alt.svg diff --git a/src/static/icons/solid/chess-clock.svg b/apps/client/src/static/icons/solid/chess-clock.svg similarity index 100% rename from src/static/icons/solid/chess-clock.svg rename to apps/client/src/static/icons/solid/chess-clock.svg diff --git a/src/static/icons/solid/chess-king-alt.svg b/apps/client/src/static/icons/solid/chess-king-alt.svg similarity index 100% rename from src/static/icons/solid/chess-king-alt.svg rename to apps/client/src/static/icons/solid/chess-king-alt.svg diff --git a/src/static/icons/solid/chess-king.svg b/apps/client/src/static/icons/solid/chess-king.svg similarity index 100% rename from src/static/icons/solid/chess-king.svg rename to apps/client/src/static/icons/solid/chess-king.svg diff --git a/src/static/icons/solid/chess-knight-alt.svg b/apps/client/src/static/icons/solid/chess-knight-alt.svg similarity index 100% rename from src/static/icons/solid/chess-knight-alt.svg rename to apps/client/src/static/icons/solid/chess-knight-alt.svg diff --git a/src/static/icons/solid/chess-knight.svg b/apps/client/src/static/icons/solid/chess-knight.svg similarity index 100% rename from src/static/icons/solid/chess-knight.svg rename to apps/client/src/static/icons/solid/chess-knight.svg diff --git a/src/static/icons/solid/chess-pawn-alt.svg b/apps/client/src/static/icons/solid/chess-pawn-alt.svg similarity index 100% rename from src/static/icons/solid/chess-pawn-alt.svg rename to apps/client/src/static/icons/solid/chess-pawn-alt.svg diff --git a/src/static/icons/solid/chess-pawn.svg b/apps/client/src/static/icons/solid/chess-pawn.svg similarity index 100% rename from src/static/icons/solid/chess-pawn.svg rename to apps/client/src/static/icons/solid/chess-pawn.svg diff --git a/src/static/icons/solid/chess-queen-alt.svg b/apps/client/src/static/icons/solid/chess-queen-alt.svg similarity index 100% rename from src/static/icons/solid/chess-queen-alt.svg rename to apps/client/src/static/icons/solid/chess-queen-alt.svg diff --git a/src/static/icons/solid/chess-queen.svg b/apps/client/src/static/icons/solid/chess-queen.svg similarity index 100% rename from src/static/icons/solid/chess-queen.svg rename to apps/client/src/static/icons/solid/chess-queen.svg diff --git a/src/static/icons/solid/chess-rook-alt.svg b/apps/client/src/static/icons/solid/chess-rook-alt.svg similarity index 100% rename from src/static/icons/solid/chess-rook-alt.svg rename to apps/client/src/static/icons/solid/chess-rook-alt.svg diff --git a/src/static/icons/solid/chess-rook.svg b/apps/client/src/static/icons/solid/chess-rook.svg similarity index 100% rename from src/static/icons/solid/chess-rook.svg rename to apps/client/src/static/icons/solid/chess-rook.svg diff --git a/src/static/icons/solid/chess.svg b/apps/client/src/static/icons/solid/chess.svg similarity index 100% rename from src/static/icons/solid/chess.svg rename to apps/client/src/static/icons/solid/chess.svg diff --git a/src/static/icons/solid/chevron-circle-down.svg b/apps/client/src/static/icons/solid/chevron-circle-down.svg similarity index 100% rename from src/static/icons/solid/chevron-circle-down.svg rename to apps/client/src/static/icons/solid/chevron-circle-down.svg diff --git a/src/static/icons/solid/chevron-circle-left.svg b/apps/client/src/static/icons/solid/chevron-circle-left.svg similarity index 100% rename from src/static/icons/solid/chevron-circle-left.svg rename to apps/client/src/static/icons/solid/chevron-circle-left.svg diff --git a/src/static/icons/solid/chevron-circle-right.svg b/apps/client/src/static/icons/solid/chevron-circle-right.svg similarity index 100% rename from src/static/icons/solid/chevron-circle-right.svg rename to apps/client/src/static/icons/solid/chevron-circle-right.svg diff --git a/src/static/icons/solid/chevron-circle-up.svg b/apps/client/src/static/icons/solid/chevron-circle-up.svg similarity index 100% rename from src/static/icons/solid/chevron-circle-up.svg rename to apps/client/src/static/icons/solid/chevron-circle-up.svg diff --git a/src/static/icons/solid/chevron-double-down.svg b/apps/client/src/static/icons/solid/chevron-double-down.svg similarity index 100% rename from src/static/icons/solid/chevron-double-down.svg rename to apps/client/src/static/icons/solid/chevron-double-down.svg diff --git a/src/static/icons/solid/chevron-double-left.svg b/apps/client/src/static/icons/solid/chevron-double-left.svg similarity index 100% rename from src/static/icons/solid/chevron-double-left.svg rename to apps/client/src/static/icons/solid/chevron-double-left.svg diff --git a/src/static/icons/solid/chevron-double-right.svg b/apps/client/src/static/icons/solid/chevron-double-right.svg similarity index 100% rename from src/static/icons/solid/chevron-double-right.svg rename to apps/client/src/static/icons/solid/chevron-double-right.svg diff --git a/src/static/icons/solid/chevron-double-up.svg b/apps/client/src/static/icons/solid/chevron-double-up.svg similarity index 100% rename from src/static/icons/solid/chevron-double-up.svg rename to apps/client/src/static/icons/solid/chevron-double-up.svg diff --git a/src/static/icons/solid/chevron-down.svg b/apps/client/src/static/icons/solid/chevron-down.svg similarity index 100% rename from src/static/icons/solid/chevron-down.svg rename to apps/client/src/static/icons/solid/chevron-down.svg diff --git a/src/static/icons/solid/chevron-left.svg b/apps/client/src/static/icons/solid/chevron-left.svg similarity index 100% rename from src/static/icons/solid/chevron-left.svg rename to apps/client/src/static/icons/solid/chevron-left.svg diff --git a/src/static/icons/solid/chevron-right.svg b/apps/client/src/static/icons/solid/chevron-right.svg similarity index 100% rename from src/static/icons/solid/chevron-right.svg rename to apps/client/src/static/icons/solid/chevron-right.svg diff --git a/src/static/icons/solid/chevron-square-down.svg b/apps/client/src/static/icons/solid/chevron-square-down.svg similarity index 100% rename from src/static/icons/solid/chevron-square-down.svg rename to apps/client/src/static/icons/solid/chevron-square-down.svg diff --git a/src/static/icons/solid/chevron-square-left.svg b/apps/client/src/static/icons/solid/chevron-square-left.svg similarity index 100% rename from src/static/icons/solid/chevron-square-left.svg rename to apps/client/src/static/icons/solid/chevron-square-left.svg diff --git a/src/static/icons/solid/chevron-square-right.svg b/apps/client/src/static/icons/solid/chevron-square-right.svg similarity index 100% rename from src/static/icons/solid/chevron-square-right.svg rename to apps/client/src/static/icons/solid/chevron-square-right.svg diff --git a/src/static/icons/solid/chevron-square-up.svg b/apps/client/src/static/icons/solid/chevron-square-up.svg similarity index 100% rename from src/static/icons/solid/chevron-square-up.svg rename to apps/client/src/static/icons/solid/chevron-square-up.svg diff --git a/src/static/icons/solid/chevron-up.svg b/apps/client/src/static/icons/solid/chevron-up.svg similarity index 100% rename from src/static/icons/solid/chevron-up.svg rename to apps/client/src/static/icons/solid/chevron-up.svg diff --git a/src/static/icons/solid/child.svg b/apps/client/src/static/icons/solid/child.svg similarity index 100% rename from src/static/icons/solid/child.svg rename to apps/client/src/static/icons/solid/child.svg diff --git a/src/static/icons/solid/chimney.svg b/apps/client/src/static/icons/solid/chimney.svg similarity index 100% rename from src/static/icons/solid/chimney.svg rename to apps/client/src/static/icons/solid/chimney.svg diff --git a/src/static/icons/solid/church.svg b/apps/client/src/static/icons/solid/church.svg similarity index 100% rename from src/static/icons/solid/church.svg rename to apps/client/src/static/icons/solid/church.svg diff --git a/src/static/icons/solid/circle-notch.svg b/apps/client/src/static/icons/solid/circle-notch.svg similarity index 100% rename from src/static/icons/solid/circle-notch.svg rename to apps/client/src/static/icons/solid/circle-notch.svg diff --git a/src/static/icons/solid/circle.svg b/apps/client/src/static/icons/solid/circle.svg similarity index 100% rename from src/static/icons/solid/circle.svg rename to apps/client/src/static/icons/solid/circle.svg diff --git a/src/static/icons/solid/city.svg b/apps/client/src/static/icons/solid/city.svg similarity index 100% rename from src/static/icons/solid/city.svg rename to apps/client/src/static/icons/solid/city.svg diff --git a/src/static/icons/solid/clarinet.svg b/apps/client/src/static/icons/solid/clarinet.svg similarity index 100% rename from src/static/icons/solid/clarinet.svg rename to apps/client/src/static/icons/solid/clarinet.svg diff --git a/src/static/icons/solid/claw-marks.svg b/apps/client/src/static/icons/solid/claw-marks.svg similarity index 100% rename from src/static/icons/solid/claw-marks.svg rename to apps/client/src/static/icons/solid/claw-marks.svg diff --git a/src/static/icons/solid/clinic-medical.svg b/apps/client/src/static/icons/solid/clinic-medical.svg similarity index 100% rename from src/static/icons/solid/clinic-medical.svg rename to apps/client/src/static/icons/solid/clinic-medical.svg diff --git a/src/static/icons/solid/clipboard-check.svg b/apps/client/src/static/icons/solid/clipboard-check.svg similarity index 100% rename from src/static/icons/solid/clipboard-check.svg rename to apps/client/src/static/icons/solid/clipboard-check.svg diff --git a/src/static/icons/solid/clipboard-list-check.svg b/apps/client/src/static/icons/solid/clipboard-list-check.svg similarity index 100% rename from src/static/icons/solid/clipboard-list-check.svg rename to apps/client/src/static/icons/solid/clipboard-list-check.svg diff --git a/src/static/icons/solid/clipboard-list.svg b/apps/client/src/static/icons/solid/clipboard-list.svg similarity index 100% rename from src/static/icons/solid/clipboard-list.svg rename to apps/client/src/static/icons/solid/clipboard-list.svg diff --git a/src/static/icons/solid/clipboard-prescription.svg b/apps/client/src/static/icons/solid/clipboard-prescription.svg similarity index 100% rename from src/static/icons/solid/clipboard-prescription.svg rename to apps/client/src/static/icons/solid/clipboard-prescription.svg diff --git a/src/static/icons/solid/clipboard-user.svg b/apps/client/src/static/icons/solid/clipboard-user.svg similarity index 100% rename from src/static/icons/solid/clipboard-user.svg rename to apps/client/src/static/icons/solid/clipboard-user.svg diff --git a/src/static/icons/solid/clipboard.svg b/apps/client/src/static/icons/solid/clipboard.svg similarity index 100% rename from src/static/icons/solid/clipboard.svg rename to apps/client/src/static/icons/solid/clipboard.svg diff --git a/src/static/icons/solid/clock.svg b/apps/client/src/static/icons/solid/clock.svg similarity index 100% rename from src/static/icons/solid/clock.svg rename to apps/client/src/static/icons/solid/clock.svg diff --git a/src/static/icons/solid/clone.svg b/apps/client/src/static/icons/solid/clone.svg similarity index 100% rename from src/static/icons/solid/clone.svg rename to apps/client/src/static/icons/solid/clone.svg diff --git a/src/static/icons/solid/closed-captioning.svg b/apps/client/src/static/icons/solid/closed-captioning.svg similarity index 100% rename from src/static/icons/solid/closed-captioning.svg rename to apps/client/src/static/icons/solid/closed-captioning.svg diff --git a/src/static/icons/solid/cloud-download-alt.svg b/apps/client/src/static/icons/solid/cloud-download-alt.svg similarity index 100% rename from src/static/icons/solid/cloud-download-alt.svg rename to apps/client/src/static/icons/solid/cloud-download-alt.svg diff --git a/src/static/icons/solid/cloud-download.svg b/apps/client/src/static/icons/solid/cloud-download.svg similarity index 100% rename from src/static/icons/solid/cloud-download.svg rename to apps/client/src/static/icons/solid/cloud-download.svg diff --git a/src/static/icons/solid/cloud-drizzle.svg b/apps/client/src/static/icons/solid/cloud-drizzle.svg similarity index 100% rename from src/static/icons/solid/cloud-drizzle.svg rename to apps/client/src/static/icons/solid/cloud-drizzle.svg diff --git a/src/static/icons/solid/cloud-hail-mixed.svg b/apps/client/src/static/icons/solid/cloud-hail-mixed.svg similarity index 100% rename from src/static/icons/solid/cloud-hail-mixed.svg rename to apps/client/src/static/icons/solid/cloud-hail-mixed.svg diff --git a/src/static/icons/solid/cloud-hail.svg b/apps/client/src/static/icons/solid/cloud-hail.svg similarity index 100% rename from src/static/icons/solid/cloud-hail.svg rename to apps/client/src/static/icons/solid/cloud-hail.svg diff --git a/src/static/icons/solid/cloud-meatball.svg b/apps/client/src/static/icons/solid/cloud-meatball.svg similarity index 100% rename from src/static/icons/solid/cloud-meatball.svg rename to apps/client/src/static/icons/solid/cloud-meatball.svg diff --git a/src/static/icons/solid/cloud-moon-rain.svg b/apps/client/src/static/icons/solid/cloud-moon-rain.svg similarity index 100% rename from src/static/icons/solid/cloud-moon-rain.svg rename to apps/client/src/static/icons/solid/cloud-moon-rain.svg diff --git a/src/static/icons/solid/cloud-moon.svg b/apps/client/src/static/icons/solid/cloud-moon.svg similarity index 100% rename from src/static/icons/solid/cloud-moon.svg rename to apps/client/src/static/icons/solid/cloud-moon.svg diff --git a/src/static/icons/solid/cloud-music.svg b/apps/client/src/static/icons/solid/cloud-music.svg similarity index 100% rename from src/static/icons/solid/cloud-music.svg rename to apps/client/src/static/icons/solid/cloud-music.svg diff --git a/src/static/icons/solid/cloud-rain.svg b/apps/client/src/static/icons/solid/cloud-rain.svg similarity index 100% rename from src/static/icons/solid/cloud-rain.svg rename to apps/client/src/static/icons/solid/cloud-rain.svg diff --git a/src/static/icons/solid/cloud-rainbow.svg b/apps/client/src/static/icons/solid/cloud-rainbow.svg similarity index 100% rename from src/static/icons/solid/cloud-rainbow.svg rename to apps/client/src/static/icons/solid/cloud-rainbow.svg diff --git a/src/static/icons/solid/cloud-showers-heavy.svg b/apps/client/src/static/icons/solid/cloud-showers-heavy.svg similarity index 100% rename from src/static/icons/solid/cloud-showers-heavy.svg rename to apps/client/src/static/icons/solid/cloud-showers-heavy.svg diff --git a/src/static/icons/solid/cloud-showers.svg b/apps/client/src/static/icons/solid/cloud-showers.svg similarity index 100% rename from src/static/icons/solid/cloud-showers.svg rename to apps/client/src/static/icons/solid/cloud-showers.svg diff --git a/src/static/icons/solid/cloud-sleet.svg b/apps/client/src/static/icons/solid/cloud-sleet.svg similarity index 100% rename from src/static/icons/solid/cloud-sleet.svg rename to apps/client/src/static/icons/solid/cloud-sleet.svg diff --git a/src/static/icons/solid/cloud-snow.svg b/apps/client/src/static/icons/solid/cloud-snow.svg similarity index 100% rename from src/static/icons/solid/cloud-snow.svg rename to apps/client/src/static/icons/solid/cloud-snow.svg diff --git a/src/static/icons/solid/cloud-sun-rain.svg b/apps/client/src/static/icons/solid/cloud-sun-rain.svg similarity index 100% rename from src/static/icons/solid/cloud-sun-rain.svg rename to apps/client/src/static/icons/solid/cloud-sun-rain.svg diff --git a/src/static/icons/solid/cloud-sun.svg b/apps/client/src/static/icons/solid/cloud-sun.svg similarity index 100% rename from src/static/icons/solid/cloud-sun.svg rename to apps/client/src/static/icons/solid/cloud-sun.svg diff --git a/src/static/icons/solid/cloud-upload-alt.svg b/apps/client/src/static/icons/solid/cloud-upload-alt.svg similarity index 100% rename from src/static/icons/solid/cloud-upload-alt.svg rename to apps/client/src/static/icons/solid/cloud-upload-alt.svg diff --git a/src/static/icons/solid/cloud-upload.svg b/apps/client/src/static/icons/solid/cloud-upload.svg similarity index 100% rename from src/static/icons/solid/cloud-upload.svg rename to apps/client/src/static/icons/solid/cloud-upload.svg diff --git a/src/static/icons/solid/cloud.svg b/apps/client/src/static/icons/solid/cloud.svg similarity index 100% rename from src/static/icons/solid/cloud.svg rename to apps/client/src/static/icons/solid/cloud.svg diff --git a/src/static/icons/solid/clouds-moon.svg b/apps/client/src/static/icons/solid/clouds-moon.svg similarity index 100% rename from src/static/icons/solid/clouds-moon.svg rename to apps/client/src/static/icons/solid/clouds-moon.svg diff --git a/src/static/icons/solid/clouds-sun.svg b/apps/client/src/static/icons/solid/clouds-sun.svg similarity index 100% rename from src/static/icons/solid/clouds-sun.svg rename to apps/client/src/static/icons/solid/clouds-sun.svg diff --git a/src/static/icons/solid/clouds.svg b/apps/client/src/static/icons/solid/clouds.svg similarity index 100% rename from src/static/icons/solid/clouds.svg rename to apps/client/src/static/icons/solid/clouds.svg diff --git a/src/static/icons/solid/club.svg b/apps/client/src/static/icons/solid/club.svg similarity index 100% rename from src/static/icons/solid/club.svg rename to apps/client/src/static/icons/solid/club.svg diff --git a/src/static/icons/solid/cocktail.svg b/apps/client/src/static/icons/solid/cocktail.svg similarity index 100% rename from src/static/icons/solid/cocktail.svg rename to apps/client/src/static/icons/solid/cocktail.svg diff --git a/src/static/icons/solid/code-branch.svg b/apps/client/src/static/icons/solid/code-branch.svg similarity index 100% rename from src/static/icons/solid/code-branch.svg rename to apps/client/src/static/icons/solid/code-branch.svg diff --git a/src/static/icons/solid/code-commit.svg b/apps/client/src/static/icons/solid/code-commit.svg similarity index 100% rename from src/static/icons/solid/code-commit.svg rename to apps/client/src/static/icons/solid/code-commit.svg diff --git a/src/static/icons/solid/code-merge.svg b/apps/client/src/static/icons/solid/code-merge.svg similarity index 100% rename from src/static/icons/solid/code-merge.svg rename to apps/client/src/static/icons/solid/code-merge.svg diff --git a/src/static/icons/solid/code.svg b/apps/client/src/static/icons/solid/code.svg similarity index 100% rename from src/static/icons/solid/code.svg rename to apps/client/src/static/icons/solid/code.svg diff --git a/src/static/icons/solid/coffee-pot.svg b/apps/client/src/static/icons/solid/coffee-pot.svg similarity index 100% rename from src/static/icons/solid/coffee-pot.svg rename to apps/client/src/static/icons/solid/coffee-pot.svg diff --git a/src/static/icons/solid/coffee-togo.svg b/apps/client/src/static/icons/solid/coffee-togo.svg similarity index 100% rename from src/static/icons/solid/coffee-togo.svg rename to apps/client/src/static/icons/solid/coffee-togo.svg diff --git a/src/static/icons/solid/coffee.svg b/apps/client/src/static/icons/solid/coffee.svg similarity index 100% rename from src/static/icons/solid/coffee.svg rename to apps/client/src/static/icons/solid/coffee.svg diff --git a/src/static/icons/solid/coffin.svg b/apps/client/src/static/icons/solid/coffin.svg similarity index 100% rename from src/static/icons/solid/coffin.svg rename to apps/client/src/static/icons/solid/coffin.svg diff --git a/src/static/icons/solid/cog.svg b/apps/client/src/static/icons/solid/cog.svg similarity index 100% rename from src/static/icons/solid/cog.svg rename to apps/client/src/static/icons/solid/cog.svg diff --git a/src/static/icons/solid/cogs.svg b/apps/client/src/static/icons/solid/cogs.svg similarity index 100% rename from src/static/icons/solid/cogs.svg rename to apps/client/src/static/icons/solid/cogs.svg diff --git a/src/static/icons/solid/coin.svg b/apps/client/src/static/icons/solid/coin.svg similarity index 100% rename from src/static/icons/solid/coin.svg rename to apps/client/src/static/icons/solid/coin.svg diff --git a/src/static/icons/solid/coins.svg b/apps/client/src/static/icons/solid/coins.svg similarity index 100% rename from src/static/icons/solid/coins.svg rename to apps/client/src/static/icons/solid/coins.svg diff --git a/src/static/icons/solid/columns.svg b/apps/client/src/static/icons/solid/columns.svg similarity index 100% rename from src/static/icons/solid/columns.svg rename to apps/client/src/static/icons/solid/columns.svg diff --git a/src/static/icons/solid/comet.svg b/apps/client/src/static/icons/solid/comet.svg similarity index 100% rename from src/static/icons/solid/comet.svg rename to apps/client/src/static/icons/solid/comet.svg diff --git a/src/static/icons/solid/comment-alt-check.svg b/apps/client/src/static/icons/solid/comment-alt-check.svg similarity index 100% rename from src/static/icons/solid/comment-alt-check.svg rename to apps/client/src/static/icons/solid/comment-alt-check.svg diff --git a/src/static/icons/solid/comment-alt-dollar.svg b/apps/client/src/static/icons/solid/comment-alt-dollar.svg similarity index 100% rename from src/static/icons/solid/comment-alt-dollar.svg rename to apps/client/src/static/icons/solid/comment-alt-dollar.svg diff --git a/src/static/icons/solid/comment-alt-dots.svg b/apps/client/src/static/icons/solid/comment-alt-dots.svg similarity index 100% rename from src/static/icons/solid/comment-alt-dots.svg rename to apps/client/src/static/icons/solid/comment-alt-dots.svg diff --git a/src/static/icons/solid/comment-alt-edit.svg b/apps/client/src/static/icons/solid/comment-alt-edit.svg similarity index 100% rename from src/static/icons/solid/comment-alt-edit.svg rename to apps/client/src/static/icons/solid/comment-alt-edit.svg diff --git a/src/static/icons/solid/comment-alt-exclamation.svg b/apps/client/src/static/icons/solid/comment-alt-exclamation.svg similarity index 100% rename from src/static/icons/solid/comment-alt-exclamation.svg rename to apps/client/src/static/icons/solid/comment-alt-exclamation.svg diff --git a/src/static/icons/solid/comment-alt-lines.svg b/apps/client/src/static/icons/solid/comment-alt-lines.svg similarity index 100% rename from src/static/icons/solid/comment-alt-lines.svg rename to apps/client/src/static/icons/solid/comment-alt-lines.svg diff --git a/src/static/icons/solid/comment-alt-medical.svg b/apps/client/src/static/icons/solid/comment-alt-medical.svg similarity index 100% rename from src/static/icons/solid/comment-alt-medical.svg rename to apps/client/src/static/icons/solid/comment-alt-medical.svg diff --git a/src/static/icons/solid/comment-alt-minus.svg b/apps/client/src/static/icons/solid/comment-alt-minus.svg similarity index 100% rename from src/static/icons/solid/comment-alt-minus.svg rename to apps/client/src/static/icons/solid/comment-alt-minus.svg diff --git a/src/static/icons/solid/comment-alt-music.svg b/apps/client/src/static/icons/solid/comment-alt-music.svg similarity index 100% rename from src/static/icons/solid/comment-alt-music.svg rename to apps/client/src/static/icons/solid/comment-alt-music.svg diff --git a/src/static/icons/solid/comment-alt-plus.svg b/apps/client/src/static/icons/solid/comment-alt-plus.svg similarity index 100% rename from src/static/icons/solid/comment-alt-plus.svg rename to apps/client/src/static/icons/solid/comment-alt-plus.svg diff --git a/src/static/icons/solid/comment-alt-slash.svg b/apps/client/src/static/icons/solid/comment-alt-slash.svg similarity index 100% rename from src/static/icons/solid/comment-alt-slash.svg rename to apps/client/src/static/icons/solid/comment-alt-slash.svg diff --git a/src/static/icons/solid/comment-alt-smile.svg b/apps/client/src/static/icons/solid/comment-alt-smile.svg similarity index 100% rename from src/static/icons/solid/comment-alt-smile.svg rename to apps/client/src/static/icons/solid/comment-alt-smile.svg diff --git a/src/static/icons/solid/comment-alt-times.svg b/apps/client/src/static/icons/solid/comment-alt-times.svg similarity index 100% rename from src/static/icons/solid/comment-alt-times.svg rename to apps/client/src/static/icons/solid/comment-alt-times.svg diff --git a/src/static/icons/solid/comment-alt.svg b/apps/client/src/static/icons/solid/comment-alt.svg similarity index 100% rename from src/static/icons/solid/comment-alt.svg rename to apps/client/src/static/icons/solid/comment-alt.svg diff --git a/src/static/icons/solid/comment-check.svg b/apps/client/src/static/icons/solid/comment-check.svg similarity index 100% rename from src/static/icons/solid/comment-check.svg rename to apps/client/src/static/icons/solid/comment-check.svg diff --git a/src/static/icons/solid/comment-dollar.svg b/apps/client/src/static/icons/solid/comment-dollar.svg similarity index 100% rename from src/static/icons/solid/comment-dollar.svg rename to apps/client/src/static/icons/solid/comment-dollar.svg diff --git a/src/static/icons/solid/comment-dots.svg b/apps/client/src/static/icons/solid/comment-dots.svg similarity index 100% rename from src/static/icons/solid/comment-dots.svg rename to apps/client/src/static/icons/solid/comment-dots.svg diff --git a/src/static/icons/solid/comment-edit.svg b/apps/client/src/static/icons/solid/comment-edit.svg similarity index 100% rename from src/static/icons/solid/comment-edit.svg rename to apps/client/src/static/icons/solid/comment-edit.svg diff --git a/src/static/icons/solid/comment-exclamation.svg b/apps/client/src/static/icons/solid/comment-exclamation.svg similarity index 100% rename from src/static/icons/solid/comment-exclamation.svg rename to apps/client/src/static/icons/solid/comment-exclamation.svg diff --git a/src/static/icons/solid/comment-lines.svg b/apps/client/src/static/icons/solid/comment-lines.svg similarity index 100% rename from src/static/icons/solid/comment-lines.svg rename to apps/client/src/static/icons/solid/comment-lines.svg diff --git a/src/static/icons/solid/comment-medical.svg b/apps/client/src/static/icons/solid/comment-medical.svg similarity index 100% rename from src/static/icons/solid/comment-medical.svg rename to apps/client/src/static/icons/solid/comment-medical.svg diff --git a/src/static/icons/solid/comment-minus.svg b/apps/client/src/static/icons/solid/comment-minus.svg similarity index 100% rename from src/static/icons/solid/comment-minus.svg rename to apps/client/src/static/icons/solid/comment-minus.svg diff --git a/src/static/icons/solid/comment-music.svg b/apps/client/src/static/icons/solid/comment-music.svg similarity index 100% rename from src/static/icons/solid/comment-music.svg rename to apps/client/src/static/icons/solid/comment-music.svg diff --git a/src/static/icons/solid/comment-plus.svg b/apps/client/src/static/icons/solid/comment-plus.svg similarity index 100% rename from src/static/icons/solid/comment-plus.svg rename to apps/client/src/static/icons/solid/comment-plus.svg diff --git a/src/static/icons/solid/comment-slash.svg b/apps/client/src/static/icons/solid/comment-slash.svg similarity index 100% rename from src/static/icons/solid/comment-slash.svg rename to apps/client/src/static/icons/solid/comment-slash.svg diff --git a/src/static/icons/solid/comment-smile.svg b/apps/client/src/static/icons/solid/comment-smile.svg similarity index 100% rename from src/static/icons/solid/comment-smile.svg rename to apps/client/src/static/icons/solid/comment-smile.svg diff --git a/src/static/icons/solid/comment-times.svg b/apps/client/src/static/icons/solid/comment-times.svg similarity index 100% rename from src/static/icons/solid/comment-times.svg rename to apps/client/src/static/icons/solid/comment-times.svg diff --git a/src/static/icons/solid/comment.svg b/apps/client/src/static/icons/solid/comment.svg similarity index 100% rename from src/static/icons/solid/comment.svg rename to apps/client/src/static/icons/solid/comment.svg diff --git a/src/static/icons/solid/comments-alt-dollar.svg b/apps/client/src/static/icons/solid/comments-alt-dollar.svg similarity index 100% rename from src/static/icons/solid/comments-alt-dollar.svg rename to apps/client/src/static/icons/solid/comments-alt-dollar.svg diff --git a/src/static/icons/solid/comments-alt.svg b/apps/client/src/static/icons/solid/comments-alt.svg similarity index 100% rename from src/static/icons/solid/comments-alt.svg rename to apps/client/src/static/icons/solid/comments-alt.svg diff --git a/src/static/icons/solid/comments-dollar.svg b/apps/client/src/static/icons/solid/comments-dollar.svg similarity index 100% rename from src/static/icons/solid/comments-dollar.svg rename to apps/client/src/static/icons/solid/comments-dollar.svg diff --git a/src/static/icons/solid/comments.svg b/apps/client/src/static/icons/solid/comments.svg similarity index 100% rename from src/static/icons/solid/comments.svg rename to apps/client/src/static/icons/solid/comments.svg diff --git a/src/static/icons/solid/compact-disc.svg b/apps/client/src/static/icons/solid/compact-disc.svg similarity index 100% rename from src/static/icons/solid/compact-disc.svg rename to apps/client/src/static/icons/solid/compact-disc.svg diff --git a/src/static/icons/solid/compass-slash.svg b/apps/client/src/static/icons/solid/compass-slash.svg similarity index 100% rename from src/static/icons/solid/compass-slash.svg rename to apps/client/src/static/icons/solid/compass-slash.svg diff --git a/src/static/icons/solid/compass.svg b/apps/client/src/static/icons/solid/compass.svg similarity index 100% rename from src/static/icons/solid/compass.svg rename to apps/client/src/static/icons/solid/compass.svg diff --git a/src/static/icons/solid/compress-alt.svg b/apps/client/src/static/icons/solid/compress-alt.svg similarity index 100% rename from src/static/icons/solid/compress-alt.svg rename to apps/client/src/static/icons/solid/compress-alt.svg diff --git a/src/static/icons/solid/compress-arrows-alt.svg b/apps/client/src/static/icons/solid/compress-arrows-alt.svg similarity index 100% rename from src/static/icons/solid/compress-arrows-alt.svg rename to apps/client/src/static/icons/solid/compress-arrows-alt.svg diff --git a/src/static/icons/solid/compress-wide.svg b/apps/client/src/static/icons/solid/compress-wide.svg similarity index 100% rename from src/static/icons/solid/compress-wide.svg rename to apps/client/src/static/icons/solid/compress-wide.svg diff --git a/src/static/icons/solid/compress.svg b/apps/client/src/static/icons/solid/compress.svg similarity index 100% rename from src/static/icons/solid/compress.svg rename to apps/client/src/static/icons/solid/compress.svg diff --git a/src/static/icons/solid/computer-classic.svg b/apps/client/src/static/icons/solid/computer-classic.svg similarity index 100% rename from src/static/icons/solid/computer-classic.svg rename to apps/client/src/static/icons/solid/computer-classic.svg diff --git a/src/static/icons/solid/computer-speaker.svg b/apps/client/src/static/icons/solid/computer-speaker.svg similarity index 100% rename from src/static/icons/solid/computer-speaker.svg rename to apps/client/src/static/icons/solid/computer-speaker.svg diff --git a/src/static/icons/solid/concierge-bell.svg b/apps/client/src/static/icons/solid/concierge-bell.svg similarity index 100% rename from src/static/icons/solid/concierge-bell.svg rename to apps/client/src/static/icons/solid/concierge-bell.svg diff --git a/src/static/icons/solid/construction.svg b/apps/client/src/static/icons/solid/construction.svg similarity index 100% rename from src/static/icons/solid/construction.svg rename to apps/client/src/static/icons/solid/construction.svg diff --git a/src/static/icons/solid/container-storage.svg b/apps/client/src/static/icons/solid/container-storage.svg similarity index 100% rename from src/static/icons/solid/container-storage.svg rename to apps/client/src/static/icons/solid/container-storage.svg diff --git a/src/static/icons/solid/conveyor-belt-alt.svg b/apps/client/src/static/icons/solid/conveyor-belt-alt.svg similarity index 100% rename from src/static/icons/solid/conveyor-belt-alt.svg rename to apps/client/src/static/icons/solid/conveyor-belt-alt.svg diff --git a/src/static/icons/solid/conveyor-belt.svg b/apps/client/src/static/icons/solid/conveyor-belt.svg similarity index 100% rename from src/static/icons/solid/conveyor-belt.svg rename to apps/client/src/static/icons/solid/conveyor-belt.svg diff --git a/src/static/icons/solid/cookie-bite.svg b/apps/client/src/static/icons/solid/cookie-bite.svg similarity index 100% rename from src/static/icons/solid/cookie-bite.svg rename to apps/client/src/static/icons/solid/cookie-bite.svg diff --git a/src/static/icons/solid/cookie.svg b/apps/client/src/static/icons/solid/cookie.svg similarity index 100% rename from src/static/icons/solid/cookie.svg rename to apps/client/src/static/icons/solid/cookie.svg diff --git a/src/static/icons/solid/copy.svg b/apps/client/src/static/icons/solid/copy.svg similarity index 100% rename from src/static/icons/solid/copy.svg rename to apps/client/src/static/icons/solid/copy.svg diff --git a/src/static/icons/solid/copyright.svg b/apps/client/src/static/icons/solid/copyright.svg similarity index 100% rename from src/static/icons/solid/copyright.svg rename to apps/client/src/static/icons/solid/copyright.svg diff --git a/src/static/icons/solid/corn.svg b/apps/client/src/static/icons/solid/corn.svg similarity index 100% rename from src/static/icons/solid/corn.svg rename to apps/client/src/static/icons/solid/corn.svg diff --git a/src/static/icons/solid/couch.svg b/apps/client/src/static/icons/solid/couch.svg similarity index 100% rename from src/static/icons/solid/couch.svg rename to apps/client/src/static/icons/solid/couch.svg diff --git a/src/static/icons/solid/cow.svg b/apps/client/src/static/icons/solid/cow.svg similarity index 100% rename from src/static/icons/solid/cow.svg rename to apps/client/src/static/icons/solid/cow.svg diff --git a/src/static/icons/solid/cowbell-more.svg b/apps/client/src/static/icons/solid/cowbell-more.svg similarity index 100% rename from src/static/icons/solid/cowbell-more.svg rename to apps/client/src/static/icons/solid/cowbell-more.svg diff --git a/src/static/icons/solid/cowbell.svg b/apps/client/src/static/icons/solid/cowbell.svg similarity index 100% rename from src/static/icons/solid/cowbell.svg rename to apps/client/src/static/icons/solid/cowbell.svg diff --git a/src/static/icons/solid/credit-card-blank.svg b/apps/client/src/static/icons/solid/credit-card-blank.svg similarity index 100% rename from src/static/icons/solid/credit-card-blank.svg rename to apps/client/src/static/icons/solid/credit-card-blank.svg diff --git a/src/static/icons/solid/credit-card-front.svg b/apps/client/src/static/icons/solid/credit-card-front.svg similarity index 100% rename from src/static/icons/solid/credit-card-front.svg rename to apps/client/src/static/icons/solid/credit-card-front.svg diff --git a/src/static/icons/solid/credit-card.svg b/apps/client/src/static/icons/solid/credit-card.svg similarity index 100% rename from src/static/icons/solid/credit-card.svg rename to apps/client/src/static/icons/solid/credit-card.svg diff --git a/src/static/icons/solid/cricket.svg b/apps/client/src/static/icons/solid/cricket.svg similarity index 100% rename from src/static/icons/solid/cricket.svg rename to apps/client/src/static/icons/solid/cricket.svg diff --git a/src/static/icons/solid/croissant.svg b/apps/client/src/static/icons/solid/croissant.svg similarity index 100% rename from src/static/icons/solid/croissant.svg rename to apps/client/src/static/icons/solid/croissant.svg diff --git a/src/static/icons/solid/crop-alt.svg b/apps/client/src/static/icons/solid/crop-alt.svg similarity index 100% rename from src/static/icons/solid/crop-alt.svg rename to apps/client/src/static/icons/solid/crop-alt.svg diff --git a/src/static/icons/solid/crop.svg b/apps/client/src/static/icons/solid/crop.svg similarity index 100% rename from src/static/icons/solid/crop.svg rename to apps/client/src/static/icons/solid/crop.svg diff --git a/src/static/icons/solid/cross.svg b/apps/client/src/static/icons/solid/cross.svg similarity index 100% rename from src/static/icons/solid/cross.svg rename to apps/client/src/static/icons/solid/cross.svg diff --git a/src/static/icons/solid/crosshairs.svg b/apps/client/src/static/icons/solid/crosshairs.svg similarity index 100% rename from src/static/icons/solid/crosshairs.svg rename to apps/client/src/static/icons/solid/crosshairs.svg diff --git a/src/static/icons/solid/crow.svg b/apps/client/src/static/icons/solid/crow.svg similarity index 100% rename from src/static/icons/solid/crow.svg rename to apps/client/src/static/icons/solid/crow.svg diff --git a/src/static/icons/solid/crown.svg b/apps/client/src/static/icons/solid/crown.svg similarity index 100% rename from src/static/icons/solid/crown.svg rename to apps/client/src/static/icons/solid/crown.svg diff --git a/src/static/icons/solid/crutch.svg b/apps/client/src/static/icons/solid/crutch.svg similarity index 100% rename from src/static/icons/solid/crutch.svg rename to apps/client/src/static/icons/solid/crutch.svg diff --git a/src/static/icons/solid/crutches.svg b/apps/client/src/static/icons/solid/crutches.svg similarity index 100% rename from src/static/icons/solid/crutches.svg rename to apps/client/src/static/icons/solid/crutches.svg diff --git a/src/static/icons/solid/cube.svg b/apps/client/src/static/icons/solid/cube.svg similarity index 100% rename from src/static/icons/solid/cube.svg rename to apps/client/src/static/icons/solid/cube.svg diff --git a/src/static/icons/solid/cubes.svg b/apps/client/src/static/icons/solid/cubes.svg similarity index 100% rename from src/static/icons/solid/cubes.svg rename to apps/client/src/static/icons/solid/cubes.svg diff --git a/src/static/icons/solid/curling.svg b/apps/client/src/static/icons/solid/curling.svg similarity index 100% rename from src/static/icons/solid/curling.svg rename to apps/client/src/static/icons/solid/curling.svg diff --git a/src/static/icons/solid/cut.svg b/apps/client/src/static/icons/solid/cut.svg similarity index 100% rename from src/static/icons/solid/cut.svg rename to apps/client/src/static/icons/solid/cut.svg diff --git a/src/static/icons/solid/dagger.svg b/apps/client/src/static/icons/solid/dagger.svg similarity index 100% rename from src/static/icons/solid/dagger.svg rename to apps/client/src/static/icons/solid/dagger.svg diff --git a/src/static/icons/solid/database.svg b/apps/client/src/static/icons/solid/database.svg similarity index 100% rename from src/static/icons/solid/database.svg rename to apps/client/src/static/icons/solid/database.svg diff --git a/src/static/icons/solid/deaf.svg b/apps/client/src/static/icons/solid/deaf.svg similarity index 100% rename from src/static/icons/solid/deaf.svg rename to apps/client/src/static/icons/solid/deaf.svg diff --git a/src/static/icons/solid/debug.svg b/apps/client/src/static/icons/solid/debug.svg similarity index 100% rename from src/static/icons/solid/debug.svg rename to apps/client/src/static/icons/solid/debug.svg diff --git a/src/static/icons/solid/deer-rudolph.svg b/apps/client/src/static/icons/solid/deer-rudolph.svg similarity index 100% rename from src/static/icons/solid/deer-rudolph.svg rename to apps/client/src/static/icons/solid/deer-rudolph.svg diff --git a/src/static/icons/solid/deer.svg b/apps/client/src/static/icons/solid/deer.svg similarity index 100% rename from src/static/icons/solid/deer.svg rename to apps/client/src/static/icons/solid/deer.svg diff --git a/src/static/icons/solid/democrat.svg b/apps/client/src/static/icons/solid/democrat.svg similarity index 100% rename from src/static/icons/solid/democrat.svg rename to apps/client/src/static/icons/solid/democrat.svg diff --git a/src/static/icons/solid/desktop-alt.svg b/apps/client/src/static/icons/solid/desktop-alt.svg similarity index 100% rename from src/static/icons/solid/desktop-alt.svg rename to apps/client/src/static/icons/solid/desktop-alt.svg diff --git a/src/static/icons/solid/desktop.svg b/apps/client/src/static/icons/solid/desktop.svg similarity index 100% rename from src/static/icons/solid/desktop.svg rename to apps/client/src/static/icons/solid/desktop.svg diff --git a/src/static/icons/solid/dewpoint.svg b/apps/client/src/static/icons/solid/dewpoint.svg similarity index 100% rename from src/static/icons/solid/dewpoint.svg rename to apps/client/src/static/icons/solid/dewpoint.svg diff --git a/src/static/icons/solid/dharmachakra.svg b/apps/client/src/static/icons/solid/dharmachakra.svg similarity index 100% rename from src/static/icons/solid/dharmachakra.svg rename to apps/client/src/static/icons/solid/dharmachakra.svg diff --git a/src/static/icons/solid/diagnoses.svg b/apps/client/src/static/icons/solid/diagnoses.svg similarity index 100% rename from src/static/icons/solid/diagnoses.svg rename to apps/client/src/static/icons/solid/diagnoses.svg diff --git a/src/static/icons/solid/diamond.svg b/apps/client/src/static/icons/solid/diamond.svg similarity index 100% rename from src/static/icons/solid/diamond.svg rename to apps/client/src/static/icons/solid/diamond.svg diff --git a/src/static/icons/solid/dice-d10.svg b/apps/client/src/static/icons/solid/dice-d10.svg similarity index 100% rename from src/static/icons/solid/dice-d10.svg rename to apps/client/src/static/icons/solid/dice-d10.svg diff --git a/src/static/icons/solid/dice-d12.svg b/apps/client/src/static/icons/solid/dice-d12.svg similarity index 100% rename from src/static/icons/solid/dice-d12.svg rename to apps/client/src/static/icons/solid/dice-d12.svg diff --git a/src/static/icons/solid/dice-d20.svg b/apps/client/src/static/icons/solid/dice-d20.svg similarity index 100% rename from src/static/icons/solid/dice-d20.svg rename to apps/client/src/static/icons/solid/dice-d20.svg diff --git a/src/static/icons/solid/dice-d4.svg b/apps/client/src/static/icons/solid/dice-d4.svg similarity index 100% rename from src/static/icons/solid/dice-d4.svg rename to apps/client/src/static/icons/solid/dice-d4.svg diff --git a/src/static/icons/solid/dice-d6.svg b/apps/client/src/static/icons/solid/dice-d6.svg similarity index 100% rename from src/static/icons/solid/dice-d6.svg rename to apps/client/src/static/icons/solid/dice-d6.svg diff --git a/src/static/icons/solid/dice-d8.svg b/apps/client/src/static/icons/solid/dice-d8.svg similarity index 100% rename from src/static/icons/solid/dice-d8.svg rename to apps/client/src/static/icons/solid/dice-d8.svg diff --git a/src/static/icons/solid/dice-five.svg b/apps/client/src/static/icons/solid/dice-five.svg similarity index 100% rename from src/static/icons/solid/dice-five.svg rename to apps/client/src/static/icons/solid/dice-five.svg diff --git a/src/static/icons/solid/dice-four.svg b/apps/client/src/static/icons/solid/dice-four.svg similarity index 100% rename from src/static/icons/solid/dice-four.svg rename to apps/client/src/static/icons/solid/dice-four.svg diff --git a/src/static/icons/solid/dice-one.svg b/apps/client/src/static/icons/solid/dice-one.svg similarity index 100% rename from src/static/icons/solid/dice-one.svg rename to apps/client/src/static/icons/solid/dice-one.svg diff --git a/src/static/icons/solid/dice-six.svg b/apps/client/src/static/icons/solid/dice-six.svg similarity index 100% rename from src/static/icons/solid/dice-six.svg rename to apps/client/src/static/icons/solid/dice-six.svg diff --git a/src/static/icons/solid/dice-three.svg b/apps/client/src/static/icons/solid/dice-three.svg similarity index 100% rename from src/static/icons/solid/dice-three.svg rename to apps/client/src/static/icons/solid/dice-three.svg diff --git a/src/static/icons/solid/dice-two.svg b/apps/client/src/static/icons/solid/dice-two.svg similarity index 100% rename from src/static/icons/solid/dice-two.svg rename to apps/client/src/static/icons/solid/dice-two.svg diff --git a/src/static/icons/solid/dice.svg b/apps/client/src/static/icons/solid/dice.svg similarity index 100% rename from src/static/icons/solid/dice.svg rename to apps/client/src/static/icons/solid/dice.svg diff --git a/src/static/icons/solid/digging.svg b/apps/client/src/static/icons/solid/digging.svg similarity index 100% rename from src/static/icons/solid/digging.svg rename to apps/client/src/static/icons/solid/digging.svg diff --git a/src/static/icons/solid/digital-tachograph.svg b/apps/client/src/static/icons/solid/digital-tachograph.svg similarity index 100% rename from src/static/icons/solid/digital-tachograph.svg rename to apps/client/src/static/icons/solid/digital-tachograph.svg diff --git a/src/static/icons/solid/diploma.svg b/apps/client/src/static/icons/solid/diploma.svg similarity index 100% rename from src/static/icons/solid/diploma.svg rename to apps/client/src/static/icons/solid/diploma.svg diff --git a/src/static/icons/solid/directions.svg b/apps/client/src/static/icons/solid/directions.svg similarity index 100% rename from src/static/icons/solid/directions.svg rename to apps/client/src/static/icons/solid/directions.svg diff --git a/src/static/icons/solid/disc-drive.svg b/apps/client/src/static/icons/solid/disc-drive.svg similarity index 100% rename from src/static/icons/solid/disc-drive.svg rename to apps/client/src/static/icons/solid/disc-drive.svg diff --git a/src/static/icons/solid/disease.svg b/apps/client/src/static/icons/solid/disease.svg similarity index 100% rename from src/static/icons/solid/disease.svg rename to apps/client/src/static/icons/solid/disease.svg diff --git a/src/static/icons/solid/divide.svg b/apps/client/src/static/icons/solid/divide.svg similarity index 100% rename from src/static/icons/solid/divide.svg rename to apps/client/src/static/icons/solid/divide.svg diff --git a/src/static/icons/solid/dizzy.svg b/apps/client/src/static/icons/solid/dizzy.svg similarity index 100% rename from src/static/icons/solid/dizzy.svg rename to apps/client/src/static/icons/solid/dizzy.svg diff --git a/src/static/icons/solid/dna.svg b/apps/client/src/static/icons/solid/dna.svg similarity index 100% rename from src/static/icons/solid/dna.svg rename to apps/client/src/static/icons/solid/dna.svg diff --git a/src/static/icons/solid/do-not-enter.svg b/apps/client/src/static/icons/solid/do-not-enter.svg similarity index 100% rename from src/static/icons/solid/do-not-enter.svg rename to apps/client/src/static/icons/solid/do-not-enter.svg diff --git a/src/static/icons/solid/dog-leashed.svg b/apps/client/src/static/icons/solid/dog-leashed.svg similarity index 100% rename from src/static/icons/solid/dog-leashed.svg rename to apps/client/src/static/icons/solid/dog-leashed.svg diff --git a/src/static/icons/solid/dog.svg b/apps/client/src/static/icons/solid/dog.svg similarity index 100% rename from src/static/icons/solid/dog.svg rename to apps/client/src/static/icons/solid/dog.svg diff --git a/src/static/icons/solid/dollar-sign.svg b/apps/client/src/static/icons/solid/dollar-sign.svg similarity index 100% rename from src/static/icons/solid/dollar-sign.svg rename to apps/client/src/static/icons/solid/dollar-sign.svg diff --git a/src/static/icons/solid/dolly-empty.svg b/apps/client/src/static/icons/solid/dolly-empty.svg similarity index 100% rename from src/static/icons/solid/dolly-empty.svg rename to apps/client/src/static/icons/solid/dolly-empty.svg diff --git a/src/static/icons/solid/dolly-flatbed-alt.svg b/apps/client/src/static/icons/solid/dolly-flatbed-alt.svg similarity index 100% rename from src/static/icons/solid/dolly-flatbed-alt.svg rename to apps/client/src/static/icons/solid/dolly-flatbed-alt.svg diff --git a/src/static/icons/solid/dolly-flatbed-empty.svg b/apps/client/src/static/icons/solid/dolly-flatbed-empty.svg similarity index 100% rename from src/static/icons/solid/dolly-flatbed-empty.svg rename to apps/client/src/static/icons/solid/dolly-flatbed-empty.svg diff --git a/src/static/icons/solid/dolly-flatbed.svg b/apps/client/src/static/icons/solid/dolly-flatbed.svg similarity index 100% rename from src/static/icons/solid/dolly-flatbed.svg rename to apps/client/src/static/icons/solid/dolly-flatbed.svg diff --git a/src/static/icons/solid/dolly.svg b/apps/client/src/static/icons/solid/dolly.svg similarity index 100% rename from src/static/icons/solid/dolly.svg rename to apps/client/src/static/icons/solid/dolly.svg diff --git a/src/static/icons/solid/donate.svg b/apps/client/src/static/icons/solid/donate.svg similarity index 100% rename from src/static/icons/solid/donate.svg rename to apps/client/src/static/icons/solid/donate.svg diff --git a/src/static/icons/solid/door-closed.svg b/apps/client/src/static/icons/solid/door-closed.svg similarity index 100% rename from src/static/icons/solid/door-closed.svg rename to apps/client/src/static/icons/solid/door-closed.svg diff --git a/src/static/icons/solid/door-open.svg b/apps/client/src/static/icons/solid/door-open.svg similarity index 100% rename from src/static/icons/solid/door-open.svg rename to apps/client/src/static/icons/solid/door-open.svg diff --git a/src/static/icons/solid/dot-circle.svg b/apps/client/src/static/icons/solid/dot-circle.svg similarity index 100% rename from src/static/icons/solid/dot-circle.svg rename to apps/client/src/static/icons/solid/dot-circle.svg diff --git a/src/static/icons/solid/dove.svg b/apps/client/src/static/icons/solid/dove.svg similarity index 100% rename from src/static/icons/solid/dove.svg rename to apps/client/src/static/icons/solid/dove.svg diff --git a/src/static/icons/solid/download.svg b/apps/client/src/static/icons/solid/download.svg similarity index 100% rename from src/static/icons/solid/download.svg rename to apps/client/src/static/icons/solid/download.svg diff --git a/src/static/icons/solid/drafting-compass.svg b/apps/client/src/static/icons/solid/drafting-compass.svg similarity index 100% rename from src/static/icons/solid/drafting-compass.svg rename to apps/client/src/static/icons/solid/drafting-compass.svg diff --git a/src/static/icons/solid/dragon.svg b/apps/client/src/static/icons/solid/dragon.svg similarity index 100% rename from src/static/icons/solid/dragon.svg rename to apps/client/src/static/icons/solid/dragon.svg diff --git a/src/static/icons/solid/draw-circle.svg b/apps/client/src/static/icons/solid/draw-circle.svg similarity index 100% rename from src/static/icons/solid/draw-circle.svg rename to apps/client/src/static/icons/solid/draw-circle.svg diff --git a/src/static/icons/solid/draw-polygon.svg b/apps/client/src/static/icons/solid/draw-polygon.svg similarity index 100% rename from src/static/icons/solid/draw-polygon.svg rename to apps/client/src/static/icons/solid/draw-polygon.svg diff --git a/src/static/icons/solid/draw-square.svg b/apps/client/src/static/icons/solid/draw-square.svg similarity index 100% rename from src/static/icons/solid/draw-square.svg rename to apps/client/src/static/icons/solid/draw-square.svg diff --git a/src/static/icons/solid/dreidel.svg b/apps/client/src/static/icons/solid/dreidel.svg similarity index 100% rename from src/static/icons/solid/dreidel.svg rename to apps/client/src/static/icons/solid/dreidel.svg diff --git a/src/static/icons/solid/drone-alt.svg b/apps/client/src/static/icons/solid/drone-alt.svg similarity index 100% rename from src/static/icons/solid/drone-alt.svg rename to apps/client/src/static/icons/solid/drone-alt.svg diff --git a/src/static/icons/solid/drone.svg b/apps/client/src/static/icons/solid/drone.svg similarity index 100% rename from src/static/icons/solid/drone.svg rename to apps/client/src/static/icons/solid/drone.svg diff --git a/src/static/icons/solid/drum-steelpan.svg b/apps/client/src/static/icons/solid/drum-steelpan.svg similarity index 100% rename from src/static/icons/solid/drum-steelpan.svg rename to apps/client/src/static/icons/solid/drum-steelpan.svg diff --git a/src/static/icons/solid/drum.svg b/apps/client/src/static/icons/solid/drum.svg similarity index 100% rename from src/static/icons/solid/drum.svg rename to apps/client/src/static/icons/solid/drum.svg diff --git a/src/static/icons/solid/drumstick-bite.svg b/apps/client/src/static/icons/solid/drumstick-bite.svg similarity index 100% rename from src/static/icons/solid/drumstick-bite.svg rename to apps/client/src/static/icons/solid/drumstick-bite.svg diff --git a/src/static/icons/solid/drumstick.svg b/apps/client/src/static/icons/solid/drumstick.svg similarity index 100% rename from src/static/icons/solid/drumstick.svg rename to apps/client/src/static/icons/solid/drumstick.svg diff --git a/src/static/icons/solid/dryer-alt.svg b/apps/client/src/static/icons/solid/dryer-alt.svg similarity index 100% rename from src/static/icons/solid/dryer-alt.svg rename to apps/client/src/static/icons/solid/dryer-alt.svg diff --git a/src/static/icons/solid/dryer.svg b/apps/client/src/static/icons/solid/dryer.svg similarity index 100% rename from src/static/icons/solid/dryer.svg rename to apps/client/src/static/icons/solid/dryer.svg diff --git a/src/static/icons/solid/duck.svg b/apps/client/src/static/icons/solid/duck.svg similarity index 100% rename from src/static/icons/solid/duck.svg rename to apps/client/src/static/icons/solid/duck.svg diff --git a/src/static/icons/solid/dumbbell.svg b/apps/client/src/static/icons/solid/dumbbell.svg similarity index 100% rename from src/static/icons/solid/dumbbell.svg rename to apps/client/src/static/icons/solid/dumbbell.svg diff --git a/src/static/icons/solid/dumpster-fire.svg b/apps/client/src/static/icons/solid/dumpster-fire.svg similarity index 100% rename from src/static/icons/solid/dumpster-fire.svg rename to apps/client/src/static/icons/solid/dumpster-fire.svg diff --git a/src/static/icons/solid/dumpster.svg b/apps/client/src/static/icons/solid/dumpster.svg similarity index 100% rename from src/static/icons/solid/dumpster.svg rename to apps/client/src/static/icons/solid/dumpster.svg diff --git a/src/static/icons/solid/dungeon.svg b/apps/client/src/static/icons/solid/dungeon.svg similarity index 100% rename from src/static/icons/solid/dungeon.svg rename to apps/client/src/static/icons/solid/dungeon.svg diff --git a/src/static/icons/solid/ear-muffs.svg b/apps/client/src/static/icons/solid/ear-muffs.svg similarity index 100% rename from src/static/icons/solid/ear-muffs.svg rename to apps/client/src/static/icons/solid/ear-muffs.svg diff --git a/src/static/icons/solid/ear.svg b/apps/client/src/static/icons/solid/ear.svg similarity index 100% rename from src/static/icons/solid/ear.svg rename to apps/client/src/static/icons/solid/ear.svg diff --git a/src/static/icons/solid/eclipse-alt.svg b/apps/client/src/static/icons/solid/eclipse-alt.svg similarity index 100% rename from src/static/icons/solid/eclipse-alt.svg rename to apps/client/src/static/icons/solid/eclipse-alt.svg diff --git a/src/static/icons/solid/eclipse.svg b/apps/client/src/static/icons/solid/eclipse.svg similarity index 100% rename from src/static/icons/solid/eclipse.svg rename to apps/client/src/static/icons/solid/eclipse.svg diff --git a/src/static/icons/solid/edit.svg b/apps/client/src/static/icons/solid/edit.svg similarity index 100% rename from src/static/icons/solid/edit.svg rename to apps/client/src/static/icons/solid/edit.svg diff --git a/src/static/icons/solid/egg-fried.svg b/apps/client/src/static/icons/solid/egg-fried.svg similarity index 100% rename from src/static/icons/solid/egg-fried.svg rename to apps/client/src/static/icons/solid/egg-fried.svg diff --git a/src/static/icons/solid/egg.svg b/apps/client/src/static/icons/solid/egg.svg similarity index 100% rename from src/static/icons/solid/egg.svg rename to apps/client/src/static/icons/solid/egg.svg diff --git a/src/static/icons/solid/eject.svg b/apps/client/src/static/icons/solid/eject.svg similarity index 100% rename from src/static/icons/solid/eject.svg rename to apps/client/src/static/icons/solid/eject.svg diff --git a/src/static/icons/solid/elephant.svg b/apps/client/src/static/icons/solid/elephant.svg similarity index 100% rename from src/static/icons/solid/elephant.svg rename to apps/client/src/static/icons/solid/elephant.svg diff --git a/src/static/icons/solid/ellipsis-h-alt.svg b/apps/client/src/static/icons/solid/ellipsis-h-alt.svg similarity index 100% rename from src/static/icons/solid/ellipsis-h-alt.svg rename to apps/client/src/static/icons/solid/ellipsis-h-alt.svg diff --git a/src/static/icons/solid/ellipsis-h.svg b/apps/client/src/static/icons/solid/ellipsis-h.svg similarity index 100% rename from src/static/icons/solid/ellipsis-h.svg rename to apps/client/src/static/icons/solid/ellipsis-h.svg diff --git a/src/static/icons/solid/ellipsis-v-alt.svg b/apps/client/src/static/icons/solid/ellipsis-v-alt.svg similarity index 100% rename from src/static/icons/solid/ellipsis-v-alt.svg rename to apps/client/src/static/icons/solid/ellipsis-v-alt.svg diff --git a/src/static/icons/solid/ellipsis-v.svg b/apps/client/src/static/icons/solid/ellipsis-v.svg similarity index 100% rename from src/static/icons/solid/ellipsis-v.svg rename to apps/client/src/static/icons/solid/ellipsis-v.svg diff --git a/src/static/icons/solid/empty-set.svg b/apps/client/src/static/icons/solid/empty-set.svg similarity index 100% rename from src/static/icons/solid/empty-set.svg rename to apps/client/src/static/icons/solid/empty-set.svg diff --git a/src/static/icons/solid/engine-warning.svg b/apps/client/src/static/icons/solid/engine-warning.svg similarity index 100% rename from src/static/icons/solid/engine-warning.svg rename to apps/client/src/static/icons/solid/engine-warning.svg diff --git a/src/static/icons/solid/envelope-open-dollar.svg b/apps/client/src/static/icons/solid/envelope-open-dollar.svg similarity index 100% rename from src/static/icons/solid/envelope-open-dollar.svg rename to apps/client/src/static/icons/solid/envelope-open-dollar.svg diff --git a/src/static/icons/solid/envelope-open-text.svg b/apps/client/src/static/icons/solid/envelope-open-text.svg similarity index 100% rename from src/static/icons/solid/envelope-open-text.svg rename to apps/client/src/static/icons/solid/envelope-open-text.svg diff --git a/src/static/icons/solid/envelope-open.svg b/apps/client/src/static/icons/solid/envelope-open.svg similarity index 100% rename from src/static/icons/solid/envelope-open.svg rename to apps/client/src/static/icons/solid/envelope-open.svg diff --git a/src/static/icons/solid/envelope-square.svg b/apps/client/src/static/icons/solid/envelope-square.svg similarity index 100% rename from src/static/icons/solid/envelope-square.svg rename to apps/client/src/static/icons/solid/envelope-square.svg diff --git a/src/static/icons/solid/envelope.svg b/apps/client/src/static/icons/solid/envelope.svg similarity index 100% rename from src/static/icons/solid/envelope.svg rename to apps/client/src/static/icons/solid/envelope.svg diff --git a/src/static/icons/solid/equals.svg b/apps/client/src/static/icons/solid/equals.svg similarity index 100% rename from src/static/icons/solid/equals.svg rename to apps/client/src/static/icons/solid/equals.svg diff --git a/src/static/icons/solid/eraser.svg b/apps/client/src/static/icons/solid/eraser.svg similarity index 100% rename from src/static/icons/solid/eraser.svg rename to apps/client/src/static/icons/solid/eraser.svg diff --git a/src/static/icons/solid/ethernet.svg b/apps/client/src/static/icons/solid/ethernet.svg similarity index 100% rename from src/static/icons/solid/ethernet.svg rename to apps/client/src/static/icons/solid/ethernet.svg diff --git a/src/static/icons/solid/euro-sign.svg b/apps/client/src/static/icons/solid/euro-sign.svg similarity index 100% rename from src/static/icons/solid/euro-sign.svg rename to apps/client/src/static/icons/solid/euro-sign.svg diff --git a/src/static/icons/solid/exchange-alt.svg b/apps/client/src/static/icons/solid/exchange-alt.svg similarity index 100% rename from src/static/icons/solid/exchange-alt.svg rename to apps/client/src/static/icons/solid/exchange-alt.svg diff --git a/src/static/icons/solid/exchange.svg b/apps/client/src/static/icons/solid/exchange.svg similarity index 100% rename from src/static/icons/solid/exchange.svg rename to apps/client/src/static/icons/solid/exchange.svg diff --git a/src/static/icons/solid/exclamation-circle.svg b/apps/client/src/static/icons/solid/exclamation-circle.svg similarity index 100% rename from src/static/icons/solid/exclamation-circle.svg rename to apps/client/src/static/icons/solid/exclamation-circle.svg diff --git a/src/static/icons/solid/exclamation-square.svg b/apps/client/src/static/icons/solid/exclamation-square.svg similarity index 100% rename from src/static/icons/solid/exclamation-square.svg rename to apps/client/src/static/icons/solid/exclamation-square.svg diff --git a/src/static/icons/solid/exclamation-triangle.svg b/apps/client/src/static/icons/solid/exclamation-triangle.svg similarity index 100% rename from src/static/icons/solid/exclamation-triangle.svg rename to apps/client/src/static/icons/solid/exclamation-triangle.svg diff --git a/src/static/icons/solid/exclamation.svg b/apps/client/src/static/icons/solid/exclamation.svg similarity index 100% rename from src/static/icons/solid/exclamation.svg rename to apps/client/src/static/icons/solid/exclamation.svg diff --git a/src/static/icons/solid/expand-alt.svg b/apps/client/src/static/icons/solid/expand-alt.svg similarity index 100% rename from src/static/icons/solid/expand-alt.svg rename to apps/client/src/static/icons/solid/expand-alt.svg diff --git a/src/static/icons/solid/expand-arrows-alt.svg b/apps/client/src/static/icons/solid/expand-arrows-alt.svg similarity index 100% rename from src/static/icons/solid/expand-arrows-alt.svg rename to apps/client/src/static/icons/solid/expand-arrows-alt.svg diff --git a/src/static/icons/solid/expand-arrows.svg b/apps/client/src/static/icons/solid/expand-arrows.svg similarity index 100% rename from src/static/icons/solid/expand-arrows.svg rename to apps/client/src/static/icons/solid/expand-arrows.svg diff --git a/src/static/icons/solid/expand-wide.svg b/apps/client/src/static/icons/solid/expand-wide.svg similarity index 100% rename from src/static/icons/solid/expand-wide.svg rename to apps/client/src/static/icons/solid/expand-wide.svg diff --git a/src/static/icons/solid/expand.svg b/apps/client/src/static/icons/solid/expand.svg similarity index 100% rename from src/static/icons/solid/expand.svg rename to apps/client/src/static/icons/solid/expand.svg diff --git a/src/static/icons/solid/external-link-alt.svg b/apps/client/src/static/icons/solid/external-link-alt.svg similarity index 100% rename from src/static/icons/solid/external-link-alt.svg rename to apps/client/src/static/icons/solid/external-link-alt.svg diff --git a/src/static/icons/solid/external-link-square-alt.svg b/apps/client/src/static/icons/solid/external-link-square-alt.svg similarity index 100% rename from src/static/icons/solid/external-link-square-alt.svg rename to apps/client/src/static/icons/solid/external-link-square-alt.svg diff --git a/src/static/icons/solid/external-link-square.svg b/apps/client/src/static/icons/solid/external-link-square.svg similarity index 100% rename from src/static/icons/solid/external-link-square.svg rename to apps/client/src/static/icons/solid/external-link-square.svg diff --git a/src/static/icons/solid/external-link.svg b/apps/client/src/static/icons/solid/external-link.svg similarity index 100% rename from src/static/icons/solid/external-link.svg rename to apps/client/src/static/icons/solid/external-link.svg diff --git a/src/static/icons/solid/eye-dropper.svg b/apps/client/src/static/icons/solid/eye-dropper.svg similarity index 100% rename from src/static/icons/solid/eye-dropper.svg rename to apps/client/src/static/icons/solid/eye-dropper.svg diff --git a/src/static/icons/solid/eye-evil.svg b/apps/client/src/static/icons/solid/eye-evil.svg similarity index 100% rename from src/static/icons/solid/eye-evil.svg rename to apps/client/src/static/icons/solid/eye-evil.svg diff --git a/src/static/icons/solid/eye-slash.svg b/apps/client/src/static/icons/solid/eye-slash.svg similarity index 100% rename from src/static/icons/solid/eye-slash.svg rename to apps/client/src/static/icons/solid/eye-slash.svg diff --git a/src/static/icons/solid/eye.svg b/apps/client/src/static/icons/solid/eye.svg similarity index 100% rename from src/static/icons/solid/eye.svg rename to apps/client/src/static/icons/solid/eye.svg diff --git a/src/static/icons/solid/fan-table.svg b/apps/client/src/static/icons/solid/fan-table.svg similarity index 100% rename from src/static/icons/solid/fan-table.svg rename to apps/client/src/static/icons/solid/fan-table.svg diff --git a/src/static/icons/solid/fan.svg b/apps/client/src/static/icons/solid/fan.svg similarity index 100% rename from src/static/icons/solid/fan.svg rename to apps/client/src/static/icons/solid/fan.svg diff --git a/src/static/icons/solid/farm.svg b/apps/client/src/static/icons/solid/farm.svg similarity index 100% rename from src/static/icons/solid/farm.svg rename to apps/client/src/static/icons/solid/farm.svg diff --git a/src/static/icons/solid/fast-backward.svg b/apps/client/src/static/icons/solid/fast-backward.svg similarity index 100% rename from src/static/icons/solid/fast-backward.svg rename to apps/client/src/static/icons/solid/fast-backward.svg diff --git a/src/static/icons/solid/fast-forward.svg b/apps/client/src/static/icons/solid/fast-forward.svg similarity index 100% rename from src/static/icons/solid/fast-forward.svg rename to apps/client/src/static/icons/solid/fast-forward.svg diff --git a/src/static/icons/solid/faucet-drip.svg b/apps/client/src/static/icons/solid/faucet-drip.svg similarity index 100% rename from src/static/icons/solid/faucet-drip.svg rename to apps/client/src/static/icons/solid/faucet-drip.svg diff --git a/src/static/icons/solid/faucet.svg b/apps/client/src/static/icons/solid/faucet.svg similarity index 100% rename from src/static/icons/solid/faucet.svg rename to apps/client/src/static/icons/solid/faucet.svg diff --git a/src/static/icons/solid/fax.svg b/apps/client/src/static/icons/solid/fax.svg similarity index 100% rename from src/static/icons/solid/fax.svg rename to apps/client/src/static/icons/solid/fax.svg diff --git a/src/static/icons/solid/feather-alt.svg b/apps/client/src/static/icons/solid/feather-alt.svg similarity index 100% rename from src/static/icons/solid/feather-alt.svg rename to apps/client/src/static/icons/solid/feather-alt.svg diff --git a/src/static/icons/solid/feather.svg b/apps/client/src/static/icons/solid/feather.svg similarity index 100% rename from src/static/icons/solid/feather.svg rename to apps/client/src/static/icons/solid/feather.svg diff --git a/src/static/icons/solid/female.svg b/apps/client/src/static/icons/solid/female.svg similarity index 100% rename from src/static/icons/solid/female.svg rename to apps/client/src/static/icons/solid/female.svg diff --git a/src/static/icons/solid/field-hockey.svg b/apps/client/src/static/icons/solid/field-hockey.svg similarity index 100% rename from src/static/icons/solid/field-hockey.svg rename to apps/client/src/static/icons/solid/field-hockey.svg diff --git a/src/static/icons/solid/fighter-jet.svg b/apps/client/src/static/icons/solid/fighter-jet.svg similarity index 100% rename from src/static/icons/solid/fighter-jet.svg rename to apps/client/src/static/icons/solid/fighter-jet.svg diff --git a/src/static/icons/solid/file-alt.svg b/apps/client/src/static/icons/solid/file-alt.svg similarity index 100% rename from src/static/icons/solid/file-alt.svg rename to apps/client/src/static/icons/solid/file-alt.svg diff --git a/src/static/icons/solid/file-archive.svg b/apps/client/src/static/icons/solid/file-archive.svg similarity index 100% rename from src/static/icons/solid/file-archive.svg rename to apps/client/src/static/icons/solid/file-archive.svg diff --git a/src/static/icons/solid/file-audio.svg b/apps/client/src/static/icons/solid/file-audio.svg similarity index 100% rename from src/static/icons/solid/file-audio.svg rename to apps/client/src/static/icons/solid/file-audio.svg diff --git a/src/static/icons/solid/file-certificate.svg b/apps/client/src/static/icons/solid/file-certificate.svg similarity index 100% rename from src/static/icons/solid/file-certificate.svg rename to apps/client/src/static/icons/solid/file-certificate.svg diff --git a/src/static/icons/solid/file-chart-line.svg b/apps/client/src/static/icons/solid/file-chart-line.svg similarity index 100% rename from src/static/icons/solid/file-chart-line.svg rename to apps/client/src/static/icons/solid/file-chart-line.svg diff --git a/src/static/icons/solid/file-chart-pie.svg b/apps/client/src/static/icons/solid/file-chart-pie.svg similarity index 100% rename from src/static/icons/solid/file-chart-pie.svg rename to apps/client/src/static/icons/solid/file-chart-pie.svg diff --git a/src/static/icons/solid/file-check.svg b/apps/client/src/static/icons/solid/file-check.svg similarity index 100% rename from src/static/icons/solid/file-check.svg rename to apps/client/src/static/icons/solid/file-check.svg diff --git a/src/static/icons/solid/file-code.svg b/apps/client/src/static/icons/solid/file-code.svg similarity index 100% rename from src/static/icons/solid/file-code.svg rename to apps/client/src/static/icons/solid/file-code.svg diff --git a/src/static/icons/solid/file-contract.svg b/apps/client/src/static/icons/solid/file-contract.svg similarity index 100% rename from src/static/icons/solid/file-contract.svg rename to apps/client/src/static/icons/solid/file-contract.svg diff --git a/src/static/icons/solid/file-csv.svg b/apps/client/src/static/icons/solid/file-csv.svg similarity index 100% rename from src/static/icons/solid/file-csv.svg rename to apps/client/src/static/icons/solid/file-csv.svg diff --git a/src/static/icons/solid/file-download.svg b/apps/client/src/static/icons/solid/file-download.svg similarity index 100% rename from src/static/icons/solid/file-download.svg rename to apps/client/src/static/icons/solid/file-download.svg diff --git a/src/static/icons/solid/file-edit.svg b/apps/client/src/static/icons/solid/file-edit.svg similarity index 100% rename from src/static/icons/solid/file-edit.svg rename to apps/client/src/static/icons/solid/file-edit.svg diff --git a/src/static/icons/solid/file-excel.svg b/apps/client/src/static/icons/solid/file-excel.svg similarity index 100% rename from src/static/icons/solid/file-excel.svg rename to apps/client/src/static/icons/solid/file-excel.svg diff --git a/src/static/icons/solid/file-exclamation.svg b/apps/client/src/static/icons/solid/file-exclamation.svg similarity index 100% rename from src/static/icons/solid/file-exclamation.svg rename to apps/client/src/static/icons/solid/file-exclamation.svg diff --git a/src/static/icons/solid/file-export.svg b/apps/client/src/static/icons/solid/file-export.svg similarity index 100% rename from src/static/icons/solid/file-export.svg rename to apps/client/src/static/icons/solid/file-export.svg diff --git a/src/static/icons/solid/file-image.svg b/apps/client/src/static/icons/solid/file-image.svg similarity index 100% rename from src/static/icons/solid/file-image.svg rename to apps/client/src/static/icons/solid/file-image.svg diff --git a/src/static/icons/solid/file-import.svg b/apps/client/src/static/icons/solid/file-import.svg similarity index 100% rename from src/static/icons/solid/file-import.svg rename to apps/client/src/static/icons/solid/file-import.svg diff --git a/src/static/icons/solid/file-invoice-dollar.svg b/apps/client/src/static/icons/solid/file-invoice-dollar.svg similarity index 100% rename from src/static/icons/solid/file-invoice-dollar.svg rename to apps/client/src/static/icons/solid/file-invoice-dollar.svg diff --git a/src/static/icons/solid/file-invoice.svg b/apps/client/src/static/icons/solid/file-invoice.svg similarity index 100% rename from src/static/icons/solid/file-invoice.svg rename to apps/client/src/static/icons/solid/file-invoice.svg diff --git a/src/static/icons/solid/file-medical-alt.svg b/apps/client/src/static/icons/solid/file-medical-alt.svg similarity index 100% rename from src/static/icons/solid/file-medical-alt.svg rename to apps/client/src/static/icons/solid/file-medical-alt.svg diff --git a/src/static/icons/solid/file-medical.svg b/apps/client/src/static/icons/solid/file-medical.svg similarity index 100% rename from src/static/icons/solid/file-medical.svg rename to apps/client/src/static/icons/solid/file-medical.svg diff --git a/src/static/icons/solid/file-minus.svg b/apps/client/src/static/icons/solid/file-minus.svg similarity index 100% rename from src/static/icons/solid/file-minus.svg rename to apps/client/src/static/icons/solid/file-minus.svg diff --git a/src/static/icons/solid/file-music.svg b/apps/client/src/static/icons/solid/file-music.svg similarity index 100% rename from src/static/icons/solid/file-music.svg rename to apps/client/src/static/icons/solid/file-music.svg diff --git a/src/static/icons/solid/file-pdf.svg b/apps/client/src/static/icons/solid/file-pdf.svg similarity index 100% rename from src/static/icons/solid/file-pdf.svg rename to apps/client/src/static/icons/solid/file-pdf.svg diff --git a/src/static/icons/solid/file-plus.svg b/apps/client/src/static/icons/solid/file-plus.svg similarity index 100% rename from src/static/icons/solid/file-plus.svg rename to apps/client/src/static/icons/solid/file-plus.svg diff --git a/src/static/icons/solid/file-powerpoint.svg b/apps/client/src/static/icons/solid/file-powerpoint.svg similarity index 100% rename from src/static/icons/solid/file-powerpoint.svg rename to apps/client/src/static/icons/solid/file-powerpoint.svg diff --git a/src/static/icons/solid/file-prescription.svg b/apps/client/src/static/icons/solid/file-prescription.svg similarity index 100% rename from src/static/icons/solid/file-prescription.svg rename to apps/client/src/static/icons/solid/file-prescription.svg diff --git a/src/static/icons/solid/file-search.svg b/apps/client/src/static/icons/solid/file-search.svg similarity index 100% rename from src/static/icons/solid/file-search.svg rename to apps/client/src/static/icons/solid/file-search.svg diff --git a/src/static/icons/solid/file-signature.svg b/apps/client/src/static/icons/solid/file-signature.svg similarity index 100% rename from src/static/icons/solid/file-signature.svg rename to apps/client/src/static/icons/solid/file-signature.svg diff --git a/src/static/icons/solid/file-spreadsheet.svg b/apps/client/src/static/icons/solid/file-spreadsheet.svg similarity index 100% rename from src/static/icons/solid/file-spreadsheet.svg rename to apps/client/src/static/icons/solid/file-spreadsheet.svg diff --git a/src/static/icons/solid/file-times.svg b/apps/client/src/static/icons/solid/file-times.svg similarity index 100% rename from src/static/icons/solid/file-times.svg rename to apps/client/src/static/icons/solid/file-times.svg diff --git a/src/static/icons/solid/file-upload.svg b/apps/client/src/static/icons/solid/file-upload.svg similarity index 100% rename from src/static/icons/solid/file-upload.svg rename to apps/client/src/static/icons/solid/file-upload.svg diff --git a/src/static/icons/solid/file-user.svg b/apps/client/src/static/icons/solid/file-user.svg similarity index 100% rename from src/static/icons/solid/file-user.svg rename to apps/client/src/static/icons/solid/file-user.svg diff --git a/src/static/icons/solid/file-video.svg b/apps/client/src/static/icons/solid/file-video.svg similarity index 100% rename from src/static/icons/solid/file-video.svg rename to apps/client/src/static/icons/solid/file-video.svg diff --git a/src/static/icons/solid/file-word.svg b/apps/client/src/static/icons/solid/file-word.svg similarity index 100% rename from src/static/icons/solid/file-word.svg rename to apps/client/src/static/icons/solid/file-word.svg diff --git a/src/static/icons/solid/file.svg b/apps/client/src/static/icons/solid/file.svg similarity index 100% rename from src/static/icons/solid/file.svg rename to apps/client/src/static/icons/solid/file.svg diff --git a/src/static/icons/solid/files-medical.svg b/apps/client/src/static/icons/solid/files-medical.svg similarity index 100% rename from src/static/icons/solid/files-medical.svg rename to apps/client/src/static/icons/solid/files-medical.svg diff --git a/src/static/icons/solid/fill-drip.svg b/apps/client/src/static/icons/solid/fill-drip.svg similarity index 100% rename from src/static/icons/solid/fill-drip.svg rename to apps/client/src/static/icons/solid/fill-drip.svg diff --git a/src/static/icons/solid/fill.svg b/apps/client/src/static/icons/solid/fill.svg similarity index 100% rename from src/static/icons/solid/fill.svg rename to apps/client/src/static/icons/solid/fill.svg diff --git a/src/static/icons/solid/film-alt.svg b/apps/client/src/static/icons/solid/film-alt.svg similarity index 100% rename from src/static/icons/solid/film-alt.svg rename to apps/client/src/static/icons/solid/film-alt.svg diff --git a/src/static/icons/solid/film-canister.svg b/apps/client/src/static/icons/solid/film-canister.svg similarity index 100% rename from src/static/icons/solid/film-canister.svg rename to apps/client/src/static/icons/solid/film-canister.svg diff --git a/src/static/icons/solid/film.svg b/apps/client/src/static/icons/solid/film.svg similarity index 100% rename from src/static/icons/solid/film.svg rename to apps/client/src/static/icons/solid/film.svg diff --git a/src/static/icons/solid/filter.svg b/apps/client/src/static/icons/solid/filter.svg similarity index 100% rename from src/static/icons/solid/filter.svg rename to apps/client/src/static/icons/solid/filter.svg diff --git a/src/static/icons/solid/fingerprint.svg b/apps/client/src/static/icons/solid/fingerprint.svg similarity index 100% rename from src/static/icons/solid/fingerprint.svg rename to apps/client/src/static/icons/solid/fingerprint.svg diff --git a/src/static/icons/solid/fire-alt.svg b/apps/client/src/static/icons/solid/fire-alt.svg similarity index 100% rename from src/static/icons/solid/fire-alt.svg rename to apps/client/src/static/icons/solid/fire-alt.svg diff --git a/src/static/icons/solid/fire-extinguisher.svg b/apps/client/src/static/icons/solid/fire-extinguisher.svg similarity index 100% rename from src/static/icons/solid/fire-extinguisher.svg rename to apps/client/src/static/icons/solid/fire-extinguisher.svg diff --git a/src/static/icons/solid/fire-smoke.svg b/apps/client/src/static/icons/solid/fire-smoke.svg similarity index 100% rename from src/static/icons/solid/fire-smoke.svg rename to apps/client/src/static/icons/solid/fire-smoke.svg diff --git a/src/static/icons/solid/fire.svg b/apps/client/src/static/icons/solid/fire.svg similarity index 100% rename from src/static/icons/solid/fire.svg rename to apps/client/src/static/icons/solid/fire.svg diff --git a/src/static/icons/solid/fireplace.svg b/apps/client/src/static/icons/solid/fireplace.svg similarity index 100% rename from src/static/icons/solid/fireplace.svg rename to apps/client/src/static/icons/solid/fireplace.svg diff --git a/src/static/icons/solid/first-aid.svg b/apps/client/src/static/icons/solid/first-aid.svg similarity index 100% rename from src/static/icons/solid/first-aid.svg rename to apps/client/src/static/icons/solid/first-aid.svg diff --git a/src/static/icons/solid/fish-cooked.svg b/apps/client/src/static/icons/solid/fish-cooked.svg similarity index 100% rename from src/static/icons/solid/fish-cooked.svg rename to apps/client/src/static/icons/solid/fish-cooked.svg diff --git a/src/static/icons/solid/fish.svg b/apps/client/src/static/icons/solid/fish.svg similarity index 100% rename from src/static/icons/solid/fish.svg rename to apps/client/src/static/icons/solid/fish.svg diff --git a/src/static/icons/solid/fist-raised.svg b/apps/client/src/static/icons/solid/fist-raised.svg similarity index 100% rename from src/static/icons/solid/fist-raised.svg rename to apps/client/src/static/icons/solid/fist-raised.svg diff --git a/src/static/icons/solid/flag-alt.svg b/apps/client/src/static/icons/solid/flag-alt.svg similarity index 100% rename from src/static/icons/solid/flag-alt.svg rename to apps/client/src/static/icons/solid/flag-alt.svg diff --git a/src/static/icons/solid/flag-checkered.svg b/apps/client/src/static/icons/solid/flag-checkered.svg similarity index 100% rename from src/static/icons/solid/flag-checkered.svg rename to apps/client/src/static/icons/solid/flag-checkered.svg diff --git a/src/static/icons/solid/flag-usa.svg b/apps/client/src/static/icons/solid/flag-usa.svg similarity index 100% rename from src/static/icons/solid/flag-usa.svg rename to apps/client/src/static/icons/solid/flag-usa.svg diff --git a/src/static/icons/solid/flag.svg b/apps/client/src/static/icons/solid/flag.svg similarity index 100% rename from src/static/icons/solid/flag.svg rename to apps/client/src/static/icons/solid/flag.svg diff --git a/src/static/icons/solid/flame.svg b/apps/client/src/static/icons/solid/flame.svg similarity index 100% rename from src/static/icons/solid/flame.svg rename to apps/client/src/static/icons/solid/flame.svg diff --git a/src/static/icons/solid/flashlight.svg b/apps/client/src/static/icons/solid/flashlight.svg similarity index 100% rename from src/static/icons/solid/flashlight.svg rename to apps/client/src/static/icons/solid/flashlight.svg diff --git a/src/static/icons/solid/flask-poison.svg b/apps/client/src/static/icons/solid/flask-poison.svg similarity index 100% rename from src/static/icons/solid/flask-poison.svg rename to apps/client/src/static/icons/solid/flask-poison.svg diff --git a/src/static/icons/solid/flask-potion.svg b/apps/client/src/static/icons/solid/flask-potion.svg similarity index 100% rename from src/static/icons/solid/flask-potion.svg rename to apps/client/src/static/icons/solid/flask-potion.svg diff --git a/src/static/icons/solid/flask.svg b/apps/client/src/static/icons/solid/flask.svg similarity index 100% rename from src/static/icons/solid/flask.svg rename to apps/client/src/static/icons/solid/flask.svg diff --git a/src/static/icons/solid/flower-daffodil.svg b/apps/client/src/static/icons/solid/flower-daffodil.svg similarity index 100% rename from src/static/icons/solid/flower-daffodil.svg rename to apps/client/src/static/icons/solid/flower-daffodil.svg diff --git a/src/static/icons/solid/flower-tulip.svg b/apps/client/src/static/icons/solid/flower-tulip.svg similarity index 100% rename from src/static/icons/solid/flower-tulip.svg rename to apps/client/src/static/icons/solid/flower-tulip.svg diff --git a/src/static/icons/solid/flower.svg b/apps/client/src/static/icons/solid/flower.svg similarity index 100% rename from src/static/icons/solid/flower.svg rename to apps/client/src/static/icons/solid/flower.svg diff --git a/src/static/icons/solid/flushed.svg b/apps/client/src/static/icons/solid/flushed.svg similarity index 100% rename from src/static/icons/solid/flushed.svg rename to apps/client/src/static/icons/solid/flushed.svg diff --git a/src/static/icons/solid/flute.svg b/apps/client/src/static/icons/solid/flute.svg similarity index 100% rename from src/static/icons/solid/flute.svg rename to apps/client/src/static/icons/solid/flute.svg diff --git a/src/static/icons/solid/flux-capacitor.svg b/apps/client/src/static/icons/solid/flux-capacitor.svg similarity index 100% rename from src/static/icons/solid/flux-capacitor.svg rename to apps/client/src/static/icons/solid/flux-capacitor.svg diff --git a/src/static/icons/solid/fog.svg b/apps/client/src/static/icons/solid/fog.svg similarity index 100% rename from src/static/icons/solid/fog.svg rename to apps/client/src/static/icons/solid/fog.svg diff --git a/src/static/icons/solid/folder-minus.svg b/apps/client/src/static/icons/solid/folder-minus.svg similarity index 100% rename from src/static/icons/solid/folder-minus.svg rename to apps/client/src/static/icons/solid/folder-minus.svg diff --git a/src/static/icons/solid/folder-open.svg b/apps/client/src/static/icons/solid/folder-open.svg similarity index 100% rename from src/static/icons/solid/folder-open.svg rename to apps/client/src/static/icons/solid/folder-open.svg diff --git a/src/static/icons/solid/folder-plus.svg b/apps/client/src/static/icons/solid/folder-plus.svg similarity index 100% rename from src/static/icons/solid/folder-plus.svg rename to apps/client/src/static/icons/solid/folder-plus.svg diff --git a/src/static/icons/solid/folder-times.svg b/apps/client/src/static/icons/solid/folder-times.svg similarity index 100% rename from src/static/icons/solid/folder-times.svg rename to apps/client/src/static/icons/solid/folder-times.svg diff --git a/src/static/icons/solid/folder-tree.svg b/apps/client/src/static/icons/solid/folder-tree.svg similarity index 100% rename from src/static/icons/solid/folder-tree.svg rename to apps/client/src/static/icons/solid/folder-tree.svg diff --git a/src/static/icons/solid/folder.svg b/apps/client/src/static/icons/solid/folder.svg similarity index 100% rename from src/static/icons/solid/folder.svg rename to apps/client/src/static/icons/solid/folder.svg diff --git a/src/static/icons/solid/folders.svg b/apps/client/src/static/icons/solid/folders.svg similarity index 100% rename from src/static/icons/solid/folders.svg rename to apps/client/src/static/icons/solid/folders.svg diff --git a/src/static/icons/solid/font-awesome-logo-full.svg b/apps/client/src/static/icons/solid/font-awesome-logo-full.svg similarity index 100% rename from src/static/icons/solid/font-awesome-logo-full.svg rename to apps/client/src/static/icons/solid/font-awesome-logo-full.svg diff --git a/src/static/icons/solid/font-case.svg b/apps/client/src/static/icons/solid/font-case.svg similarity index 100% rename from src/static/icons/solid/font-case.svg rename to apps/client/src/static/icons/solid/font-case.svg diff --git a/src/static/icons/solid/font.svg b/apps/client/src/static/icons/solid/font.svg similarity index 100% rename from src/static/icons/solid/font.svg rename to apps/client/src/static/icons/solid/font.svg diff --git a/src/static/icons/solid/football-ball.svg b/apps/client/src/static/icons/solid/football-ball.svg similarity index 100% rename from src/static/icons/solid/football-ball.svg rename to apps/client/src/static/icons/solid/football-ball.svg diff --git a/src/static/icons/solid/football-helmet.svg b/apps/client/src/static/icons/solid/football-helmet.svg similarity index 100% rename from src/static/icons/solid/football-helmet.svg rename to apps/client/src/static/icons/solid/football-helmet.svg diff --git a/src/static/icons/solid/forklift.svg b/apps/client/src/static/icons/solid/forklift.svg similarity index 100% rename from src/static/icons/solid/forklift.svg rename to apps/client/src/static/icons/solid/forklift.svg diff --git a/src/static/icons/solid/forward.svg b/apps/client/src/static/icons/solid/forward.svg similarity index 100% rename from src/static/icons/solid/forward.svg rename to apps/client/src/static/icons/solid/forward.svg diff --git a/src/static/icons/solid/fragile.svg b/apps/client/src/static/icons/solid/fragile.svg similarity index 100% rename from src/static/icons/solid/fragile.svg rename to apps/client/src/static/icons/solid/fragile.svg diff --git a/src/static/icons/solid/french-fries.svg b/apps/client/src/static/icons/solid/french-fries.svg similarity index 100% rename from src/static/icons/solid/french-fries.svg rename to apps/client/src/static/icons/solid/french-fries.svg diff --git a/src/static/icons/solid/frog.svg b/apps/client/src/static/icons/solid/frog.svg similarity index 100% rename from src/static/icons/solid/frog.svg rename to apps/client/src/static/icons/solid/frog.svg diff --git a/src/static/icons/solid/frosty-head.svg b/apps/client/src/static/icons/solid/frosty-head.svg similarity index 100% rename from src/static/icons/solid/frosty-head.svg rename to apps/client/src/static/icons/solid/frosty-head.svg diff --git a/src/static/icons/solid/frown-open.svg b/apps/client/src/static/icons/solid/frown-open.svg similarity index 100% rename from src/static/icons/solid/frown-open.svg rename to apps/client/src/static/icons/solid/frown-open.svg diff --git a/src/static/icons/solid/frown.svg b/apps/client/src/static/icons/solid/frown.svg similarity index 100% rename from src/static/icons/solid/frown.svg rename to apps/client/src/static/icons/solid/frown.svg diff --git a/src/static/icons/solid/function.svg b/apps/client/src/static/icons/solid/function.svg similarity index 100% rename from src/static/icons/solid/function.svg rename to apps/client/src/static/icons/solid/function.svg diff --git a/src/static/icons/solid/funnel-dollar.svg b/apps/client/src/static/icons/solid/funnel-dollar.svg similarity index 100% rename from src/static/icons/solid/funnel-dollar.svg rename to apps/client/src/static/icons/solid/funnel-dollar.svg diff --git a/src/static/icons/solid/futbol.svg b/apps/client/src/static/icons/solid/futbol.svg similarity index 100% rename from src/static/icons/solid/futbol.svg rename to apps/client/src/static/icons/solid/futbol.svg diff --git a/src/static/icons/solid/galaxy.svg b/apps/client/src/static/icons/solid/galaxy.svg similarity index 100% rename from src/static/icons/solid/galaxy.svg rename to apps/client/src/static/icons/solid/galaxy.svg diff --git a/src/static/icons/solid/game-board-alt.svg b/apps/client/src/static/icons/solid/game-board-alt.svg similarity index 100% rename from src/static/icons/solid/game-board-alt.svg rename to apps/client/src/static/icons/solid/game-board-alt.svg diff --git a/src/static/icons/solid/game-board.svg b/apps/client/src/static/icons/solid/game-board.svg similarity index 100% rename from src/static/icons/solid/game-board.svg rename to apps/client/src/static/icons/solid/game-board.svg diff --git a/src/static/icons/solid/game-console-handheld.svg b/apps/client/src/static/icons/solid/game-console-handheld.svg similarity index 100% rename from src/static/icons/solid/game-console-handheld.svg rename to apps/client/src/static/icons/solid/game-console-handheld.svg diff --git a/src/static/icons/solid/gamepad-alt.svg b/apps/client/src/static/icons/solid/gamepad-alt.svg similarity index 100% rename from src/static/icons/solid/gamepad-alt.svg rename to apps/client/src/static/icons/solid/gamepad-alt.svg diff --git a/src/static/icons/solid/gamepad.svg b/apps/client/src/static/icons/solid/gamepad.svg similarity index 100% rename from src/static/icons/solid/gamepad.svg rename to apps/client/src/static/icons/solid/gamepad.svg diff --git a/src/static/icons/solid/garage-car.svg b/apps/client/src/static/icons/solid/garage-car.svg similarity index 100% rename from src/static/icons/solid/garage-car.svg rename to apps/client/src/static/icons/solid/garage-car.svg diff --git a/src/static/icons/solid/garage-open.svg b/apps/client/src/static/icons/solid/garage-open.svg similarity index 100% rename from src/static/icons/solid/garage-open.svg rename to apps/client/src/static/icons/solid/garage-open.svg diff --git a/src/static/icons/solid/garage.svg b/apps/client/src/static/icons/solid/garage.svg similarity index 100% rename from src/static/icons/solid/garage.svg rename to apps/client/src/static/icons/solid/garage.svg diff --git a/src/static/icons/solid/gas-pump-slash.svg b/apps/client/src/static/icons/solid/gas-pump-slash.svg similarity index 100% rename from src/static/icons/solid/gas-pump-slash.svg rename to apps/client/src/static/icons/solid/gas-pump-slash.svg diff --git a/src/static/icons/solid/gas-pump.svg b/apps/client/src/static/icons/solid/gas-pump.svg similarity index 100% rename from src/static/icons/solid/gas-pump.svg rename to apps/client/src/static/icons/solid/gas-pump.svg diff --git a/src/static/icons/solid/gavel.svg b/apps/client/src/static/icons/solid/gavel.svg similarity index 100% rename from src/static/icons/solid/gavel.svg rename to apps/client/src/static/icons/solid/gavel.svg diff --git a/src/static/icons/solid/gem.svg b/apps/client/src/static/icons/solid/gem.svg similarity index 100% rename from src/static/icons/solid/gem.svg rename to apps/client/src/static/icons/solid/gem.svg diff --git a/src/static/icons/solid/genderless.svg b/apps/client/src/static/icons/solid/genderless.svg similarity index 100% rename from src/static/icons/solid/genderless.svg rename to apps/client/src/static/icons/solid/genderless.svg diff --git a/src/static/icons/solid/ghost.svg b/apps/client/src/static/icons/solid/ghost.svg similarity index 100% rename from src/static/icons/solid/ghost.svg rename to apps/client/src/static/icons/solid/ghost.svg diff --git a/src/static/icons/solid/gift-card.svg b/apps/client/src/static/icons/solid/gift-card.svg similarity index 100% rename from src/static/icons/solid/gift-card.svg rename to apps/client/src/static/icons/solid/gift-card.svg diff --git a/src/static/icons/solid/gift.svg b/apps/client/src/static/icons/solid/gift.svg similarity index 100% rename from src/static/icons/solid/gift.svg rename to apps/client/src/static/icons/solid/gift.svg diff --git a/src/static/icons/solid/gifts.svg b/apps/client/src/static/icons/solid/gifts.svg similarity index 100% rename from src/static/icons/solid/gifts.svg rename to apps/client/src/static/icons/solid/gifts.svg diff --git a/src/static/icons/solid/gingerbread-man.svg b/apps/client/src/static/icons/solid/gingerbread-man.svg similarity index 100% rename from src/static/icons/solid/gingerbread-man.svg rename to apps/client/src/static/icons/solid/gingerbread-man.svg diff --git a/src/static/icons/solid/glass-champagne.svg b/apps/client/src/static/icons/solid/glass-champagne.svg similarity index 100% rename from src/static/icons/solid/glass-champagne.svg rename to apps/client/src/static/icons/solid/glass-champagne.svg diff --git a/src/static/icons/solid/glass-cheers.svg b/apps/client/src/static/icons/solid/glass-cheers.svg similarity index 100% rename from src/static/icons/solid/glass-cheers.svg rename to apps/client/src/static/icons/solid/glass-cheers.svg diff --git a/src/static/icons/solid/glass-citrus.svg b/apps/client/src/static/icons/solid/glass-citrus.svg similarity index 100% rename from src/static/icons/solid/glass-citrus.svg rename to apps/client/src/static/icons/solid/glass-citrus.svg diff --git a/src/static/icons/solid/glass-martini-alt.svg b/apps/client/src/static/icons/solid/glass-martini-alt.svg similarity index 100% rename from src/static/icons/solid/glass-martini-alt.svg rename to apps/client/src/static/icons/solid/glass-martini-alt.svg diff --git a/src/static/icons/solid/glass-martini.svg b/apps/client/src/static/icons/solid/glass-martini.svg similarity index 100% rename from src/static/icons/solid/glass-martini.svg rename to apps/client/src/static/icons/solid/glass-martini.svg diff --git a/src/static/icons/solid/glass-whiskey-rocks.svg b/apps/client/src/static/icons/solid/glass-whiskey-rocks.svg similarity index 100% rename from src/static/icons/solid/glass-whiskey-rocks.svg rename to apps/client/src/static/icons/solid/glass-whiskey-rocks.svg diff --git a/src/static/icons/solid/glass-whiskey.svg b/apps/client/src/static/icons/solid/glass-whiskey.svg similarity index 100% rename from src/static/icons/solid/glass-whiskey.svg rename to apps/client/src/static/icons/solid/glass-whiskey.svg diff --git a/src/static/icons/solid/glass.svg b/apps/client/src/static/icons/solid/glass.svg similarity index 100% rename from src/static/icons/solid/glass.svg rename to apps/client/src/static/icons/solid/glass.svg diff --git a/src/static/icons/solid/glasses-alt.svg b/apps/client/src/static/icons/solid/glasses-alt.svg similarity index 100% rename from src/static/icons/solid/glasses-alt.svg rename to apps/client/src/static/icons/solid/glasses-alt.svg diff --git a/src/static/icons/solid/glasses.svg b/apps/client/src/static/icons/solid/glasses.svg similarity index 100% rename from src/static/icons/solid/glasses.svg rename to apps/client/src/static/icons/solid/glasses.svg diff --git a/src/static/icons/solid/globe-africa.svg b/apps/client/src/static/icons/solid/globe-africa.svg similarity index 100% rename from src/static/icons/solid/globe-africa.svg rename to apps/client/src/static/icons/solid/globe-africa.svg diff --git a/src/static/icons/solid/globe-americas.svg b/apps/client/src/static/icons/solid/globe-americas.svg similarity index 100% rename from src/static/icons/solid/globe-americas.svg rename to apps/client/src/static/icons/solid/globe-americas.svg diff --git a/src/static/icons/solid/globe-asia.svg b/apps/client/src/static/icons/solid/globe-asia.svg similarity index 100% rename from src/static/icons/solid/globe-asia.svg rename to apps/client/src/static/icons/solid/globe-asia.svg diff --git a/src/static/icons/solid/globe-europe.svg b/apps/client/src/static/icons/solid/globe-europe.svg similarity index 100% rename from src/static/icons/solid/globe-europe.svg rename to apps/client/src/static/icons/solid/globe-europe.svg diff --git a/src/static/icons/solid/globe-snow.svg b/apps/client/src/static/icons/solid/globe-snow.svg similarity index 100% rename from src/static/icons/solid/globe-snow.svg rename to apps/client/src/static/icons/solid/globe-snow.svg diff --git a/src/static/icons/solid/globe-stand.svg b/apps/client/src/static/icons/solid/globe-stand.svg similarity index 100% rename from src/static/icons/solid/globe-stand.svg rename to apps/client/src/static/icons/solid/globe-stand.svg diff --git a/src/static/icons/solid/globe.svg b/apps/client/src/static/icons/solid/globe.svg similarity index 100% rename from src/static/icons/solid/globe.svg rename to apps/client/src/static/icons/solid/globe.svg diff --git a/src/static/icons/solid/golf-ball.svg b/apps/client/src/static/icons/solid/golf-ball.svg similarity index 100% rename from src/static/icons/solid/golf-ball.svg rename to apps/client/src/static/icons/solid/golf-ball.svg diff --git a/src/static/icons/solid/golf-club.svg b/apps/client/src/static/icons/solid/golf-club.svg similarity index 100% rename from src/static/icons/solid/golf-club.svg rename to apps/client/src/static/icons/solid/golf-club.svg diff --git a/src/static/icons/solid/gopuram.svg b/apps/client/src/static/icons/solid/gopuram.svg similarity index 100% rename from src/static/icons/solid/gopuram.svg rename to apps/client/src/static/icons/solid/gopuram.svg diff --git a/src/static/icons/solid/graduation-cap.svg b/apps/client/src/static/icons/solid/graduation-cap.svg similarity index 100% rename from src/static/icons/solid/graduation-cap.svg rename to apps/client/src/static/icons/solid/graduation-cap.svg diff --git a/src/static/icons/solid/gramophone.svg b/apps/client/src/static/icons/solid/gramophone.svg similarity index 100% rename from src/static/icons/solid/gramophone.svg rename to apps/client/src/static/icons/solid/gramophone.svg diff --git a/src/static/icons/solid/greater-than-equal.svg b/apps/client/src/static/icons/solid/greater-than-equal.svg similarity index 100% rename from src/static/icons/solid/greater-than-equal.svg rename to apps/client/src/static/icons/solid/greater-than-equal.svg diff --git a/src/static/icons/solid/greater-than.svg b/apps/client/src/static/icons/solid/greater-than.svg similarity index 100% rename from src/static/icons/solid/greater-than.svg rename to apps/client/src/static/icons/solid/greater-than.svg diff --git a/src/static/icons/solid/grimace.svg b/apps/client/src/static/icons/solid/grimace.svg similarity index 100% rename from src/static/icons/solid/grimace.svg rename to apps/client/src/static/icons/solid/grimace.svg diff --git a/src/static/icons/solid/grin-alt.svg b/apps/client/src/static/icons/solid/grin-alt.svg similarity index 100% rename from src/static/icons/solid/grin-alt.svg rename to apps/client/src/static/icons/solid/grin-alt.svg diff --git a/src/static/icons/solid/grin-beam-sweat.svg b/apps/client/src/static/icons/solid/grin-beam-sweat.svg similarity index 100% rename from src/static/icons/solid/grin-beam-sweat.svg rename to apps/client/src/static/icons/solid/grin-beam-sweat.svg diff --git a/src/static/icons/solid/grin-beam.svg b/apps/client/src/static/icons/solid/grin-beam.svg similarity index 100% rename from src/static/icons/solid/grin-beam.svg rename to apps/client/src/static/icons/solid/grin-beam.svg diff --git a/src/static/icons/solid/grin-hearts.svg b/apps/client/src/static/icons/solid/grin-hearts.svg similarity index 100% rename from src/static/icons/solid/grin-hearts.svg rename to apps/client/src/static/icons/solid/grin-hearts.svg diff --git a/src/static/icons/solid/grin-squint-tears.svg b/apps/client/src/static/icons/solid/grin-squint-tears.svg similarity index 100% rename from src/static/icons/solid/grin-squint-tears.svg rename to apps/client/src/static/icons/solid/grin-squint-tears.svg diff --git a/src/static/icons/solid/grin-squint.svg b/apps/client/src/static/icons/solid/grin-squint.svg similarity index 100% rename from src/static/icons/solid/grin-squint.svg rename to apps/client/src/static/icons/solid/grin-squint.svg diff --git a/src/static/icons/solid/grin-stars.svg b/apps/client/src/static/icons/solid/grin-stars.svg similarity index 100% rename from src/static/icons/solid/grin-stars.svg rename to apps/client/src/static/icons/solid/grin-stars.svg diff --git a/src/static/icons/solid/grin-tears.svg b/apps/client/src/static/icons/solid/grin-tears.svg similarity index 100% rename from src/static/icons/solid/grin-tears.svg rename to apps/client/src/static/icons/solid/grin-tears.svg diff --git a/src/static/icons/solid/grin-tongue-squint.svg b/apps/client/src/static/icons/solid/grin-tongue-squint.svg similarity index 100% rename from src/static/icons/solid/grin-tongue-squint.svg rename to apps/client/src/static/icons/solid/grin-tongue-squint.svg diff --git a/src/static/icons/solid/grin-tongue-wink.svg b/apps/client/src/static/icons/solid/grin-tongue-wink.svg similarity index 100% rename from src/static/icons/solid/grin-tongue-wink.svg rename to apps/client/src/static/icons/solid/grin-tongue-wink.svg diff --git a/src/static/icons/solid/grin-tongue.svg b/apps/client/src/static/icons/solid/grin-tongue.svg similarity index 100% rename from src/static/icons/solid/grin-tongue.svg rename to apps/client/src/static/icons/solid/grin-tongue.svg diff --git a/src/static/icons/solid/grin-wink.svg b/apps/client/src/static/icons/solid/grin-wink.svg similarity index 100% rename from src/static/icons/solid/grin-wink.svg rename to apps/client/src/static/icons/solid/grin-wink.svg diff --git a/src/static/icons/solid/grin.svg b/apps/client/src/static/icons/solid/grin.svg similarity index 100% rename from src/static/icons/solid/grin.svg rename to apps/client/src/static/icons/solid/grin.svg diff --git a/src/static/icons/solid/grip-horizontal.svg b/apps/client/src/static/icons/solid/grip-horizontal.svg similarity index 100% rename from src/static/icons/solid/grip-horizontal.svg rename to apps/client/src/static/icons/solid/grip-horizontal.svg diff --git a/src/static/icons/solid/grip-lines-vertical.svg b/apps/client/src/static/icons/solid/grip-lines-vertical.svg similarity index 100% rename from src/static/icons/solid/grip-lines-vertical.svg rename to apps/client/src/static/icons/solid/grip-lines-vertical.svg diff --git a/src/static/icons/solid/grip-lines.svg b/apps/client/src/static/icons/solid/grip-lines.svg similarity index 100% rename from src/static/icons/solid/grip-lines.svg rename to apps/client/src/static/icons/solid/grip-lines.svg diff --git a/src/static/icons/solid/grip-vertical.svg b/apps/client/src/static/icons/solid/grip-vertical.svg similarity index 100% rename from src/static/icons/solid/grip-vertical.svg rename to apps/client/src/static/icons/solid/grip-vertical.svg diff --git a/src/static/icons/solid/guitar-electric.svg b/apps/client/src/static/icons/solid/guitar-electric.svg similarity index 100% rename from src/static/icons/solid/guitar-electric.svg rename to apps/client/src/static/icons/solid/guitar-electric.svg diff --git a/src/static/icons/solid/guitar.svg b/apps/client/src/static/icons/solid/guitar.svg similarity index 100% rename from src/static/icons/solid/guitar.svg rename to apps/client/src/static/icons/solid/guitar.svg diff --git a/src/static/icons/solid/guitars.svg b/apps/client/src/static/icons/solid/guitars.svg similarity index 100% rename from src/static/icons/solid/guitars.svg rename to apps/client/src/static/icons/solid/guitars.svg diff --git a/src/static/icons/solid/h-square.svg b/apps/client/src/static/icons/solid/h-square.svg similarity index 100% rename from src/static/icons/solid/h-square.svg rename to apps/client/src/static/icons/solid/h-square.svg diff --git a/src/static/icons/solid/h1.svg b/apps/client/src/static/icons/solid/h1.svg similarity index 100% rename from src/static/icons/solid/h1.svg rename to apps/client/src/static/icons/solid/h1.svg diff --git a/src/static/icons/solid/h2.svg b/apps/client/src/static/icons/solid/h2.svg similarity index 100% rename from src/static/icons/solid/h2.svg rename to apps/client/src/static/icons/solid/h2.svg diff --git a/src/static/icons/solid/h3.svg b/apps/client/src/static/icons/solid/h3.svg similarity index 100% rename from src/static/icons/solid/h3.svg rename to apps/client/src/static/icons/solid/h3.svg diff --git a/src/static/icons/solid/h4.svg b/apps/client/src/static/icons/solid/h4.svg similarity index 100% rename from src/static/icons/solid/h4.svg rename to apps/client/src/static/icons/solid/h4.svg diff --git a/src/static/icons/solid/hamburger.svg b/apps/client/src/static/icons/solid/hamburger.svg similarity index 100% rename from src/static/icons/solid/hamburger.svg rename to apps/client/src/static/icons/solid/hamburger.svg diff --git a/src/static/icons/solid/hammer-war.svg b/apps/client/src/static/icons/solid/hammer-war.svg similarity index 100% rename from src/static/icons/solid/hammer-war.svg rename to apps/client/src/static/icons/solid/hammer-war.svg diff --git a/src/static/icons/solid/hammer.svg b/apps/client/src/static/icons/solid/hammer.svg similarity index 100% rename from src/static/icons/solid/hammer.svg rename to apps/client/src/static/icons/solid/hammer.svg diff --git a/src/static/icons/solid/hamsa.svg b/apps/client/src/static/icons/solid/hamsa.svg similarity index 100% rename from src/static/icons/solid/hamsa.svg rename to apps/client/src/static/icons/solid/hamsa.svg diff --git a/src/static/icons/solid/hand-heart.svg b/apps/client/src/static/icons/solid/hand-heart.svg similarity index 100% rename from src/static/icons/solid/hand-heart.svg rename to apps/client/src/static/icons/solid/hand-heart.svg diff --git a/src/static/icons/solid/hand-holding-box.svg b/apps/client/src/static/icons/solid/hand-holding-box.svg similarity index 100% rename from src/static/icons/solid/hand-holding-box.svg rename to apps/client/src/static/icons/solid/hand-holding-box.svg diff --git a/src/static/icons/solid/hand-holding-heart.svg b/apps/client/src/static/icons/solid/hand-holding-heart.svg similarity index 100% rename from src/static/icons/solid/hand-holding-heart.svg rename to apps/client/src/static/icons/solid/hand-holding-heart.svg diff --git a/src/static/icons/solid/hand-holding-magic.svg b/apps/client/src/static/icons/solid/hand-holding-magic.svg similarity index 100% rename from src/static/icons/solid/hand-holding-magic.svg rename to apps/client/src/static/icons/solid/hand-holding-magic.svg diff --git a/src/static/icons/solid/hand-holding-seedling.svg b/apps/client/src/static/icons/solid/hand-holding-seedling.svg similarity index 100% rename from src/static/icons/solid/hand-holding-seedling.svg rename to apps/client/src/static/icons/solid/hand-holding-seedling.svg diff --git a/src/static/icons/solid/hand-holding-usd.svg b/apps/client/src/static/icons/solid/hand-holding-usd.svg similarity index 100% rename from src/static/icons/solid/hand-holding-usd.svg rename to apps/client/src/static/icons/solid/hand-holding-usd.svg diff --git a/src/static/icons/solid/hand-holding-water.svg b/apps/client/src/static/icons/solid/hand-holding-water.svg similarity index 100% rename from src/static/icons/solid/hand-holding-water.svg rename to apps/client/src/static/icons/solid/hand-holding-water.svg diff --git a/src/static/icons/solid/hand-holding.svg b/apps/client/src/static/icons/solid/hand-holding.svg similarity index 100% rename from src/static/icons/solid/hand-holding.svg rename to apps/client/src/static/icons/solid/hand-holding.svg diff --git a/src/static/icons/solid/hand-lizard.svg b/apps/client/src/static/icons/solid/hand-lizard.svg similarity index 100% rename from src/static/icons/solid/hand-lizard.svg rename to apps/client/src/static/icons/solid/hand-lizard.svg diff --git a/src/static/icons/solid/hand-middle-finger.svg b/apps/client/src/static/icons/solid/hand-middle-finger.svg similarity index 100% rename from src/static/icons/solid/hand-middle-finger.svg rename to apps/client/src/static/icons/solid/hand-middle-finger.svg diff --git a/src/static/icons/solid/hand-paper.svg b/apps/client/src/static/icons/solid/hand-paper.svg similarity index 100% rename from src/static/icons/solid/hand-paper.svg rename to apps/client/src/static/icons/solid/hand-paper.svg diff --git a/src/static/icons/solid/hand-peace.svg b/apps/client/src/static/icons/solid/hand-peace.svg similarity index 100% rename from src/static/icons/solid/hand-peace.svg rename to apps/client/src/static/icons/solid/hand-peace.svg diff --git a/src/static/icons/solid/hand-point-down.svg b/apps/client/src/static/icons/solid/hand-point-down.svg similarity index 100% rename from src/static/icons/solid/hand-point-down.svg rename to apps/client/src/static/icons/solid/hand-point-down.svg diff --git a/src/static/icons/solid/hand-point-left.svg b/apps/client/src/static/icons/solid/hand-point-left.svg similarity index 100% rename from src/static/icons/solid/hand-point-left.svg rename to apps/client/src/static/icons/solid/hand-point-left.svg diff --git a/src/static/icons/solid/hand-point-right.svg b/apps/client/src/static/icons/solid/hand-point-right.svg similarity index 100% rename from src/static/icons/solid/hand-point-right.svg rename to apps/client/src/static/icons/solid/hand-point-right.svg diff --git a/src/static/icons/solid/hand-point-up.svg b/apps/client/src/static/icons/solid/hand-point-up.svg similarity index 100% rename from src/static/icons/solid/hand-point-up.svg rename to apps/client/src/static/icons/solid/hand-point-up.svg diff --git a/src/static/icons/solid/hand-pointer.svg b/apps/client/src/static/icons/solid/hand-pointer.svg similarity index 100% rename from src/static/icons/solid/hand-pointer.svg rename to apps/client/src/static/icons/solid/hand-pointer.svg diff --git a/src/static/icons/solid/hand-receiving.svg b/apps/client/src/static/icons/solid/hand-receiving.svg similarity index 100% rename from src/static/icons/solid/hand-receiving.svg rename to apps/client/src/static/icons/solid/hand-receiving.svg diff --git a/src/static/icons/solid/hand-rock.svg b/apps/client/src/static/icons/solid/hand-rock.svg similarity index 100% rename from src/static/icons/solid/hand-rock.svg rename to apps/client/src/static/icons/solid/hand-rock.svg diff --git a/src/static/icons/solid/hand-scissors.svg b/apps/client/src/static/icons/solid/hand-scissors.svg similarity index 100% rename from src/static/icons/solid/hand-scissors.svg rename to apps/client/src/static/icons/solid/hand-scissors.svg diff --git a/src/static/icons/solid/hand-spock.svg b/apps/client/src/static/icons/solid/hand-spock.svg similarity index 100% rename from src/static/icons/solid/hand-spock.svg rename to apps/client/src/static/icons/solid/hand-spock.svg diff --git a/src/static/icons/solid/hands-heart.svg b/apps/client/src/static/icons/solid/hands-heart.svg similarity index 100% rename from src/static/icons/solid/hands-heart.svg rename to apps/client/src/static/icons/solid/hands-heart.svg diff --git a/src/static/icons/solid/hands-helping.svg b/apps/client/src/static/icons/solid/hands-helping.svg similarity index 100% rename from src/static/icons/solid/hands-helping.svg rename to apps/client/src/static/icons/solid/hands-helping.svg diff --git a/src/static/icons/solid/hands-usd.svg b/apps/client/src/static/icons/solid/hands-usd.svg similarity index 100% rename from src/static/icons/solid/hands-usd.svg rename to apps/client/src/static/icons/solid/hands-usd.svg diff --git a/src/static/icons/solid/hands.svg b/apps/client/src/static/icons/solid/hands.svg similarity index 100% rename from src/static/icons/solid/hands.svg rename to apps/client/src/static/icons/solid/hands.svg diff --git a/src/static/icons/solid/handshake-alt.svg b/apps/client/src/static/icons/solid/handshake-alt.svg similarity index 100% rename from src/static/icons/solid/handshake-alt.svg rename to apps/client/src/static/icons/solid/handshake-alt.svg diff --git a/src/static/icons/solid/handshake.svg b/apps/client/src/static/icons/solid/handshake.svg similarity index 100% rename from src/static/icons/solid/handshake.svg rename to apps/client/src/static/icons/solid/handshake.svg diff --git a/src/static/icons/solid/hanukiah.svg b/apps/client/src/static/icons/solid/hanukiah.svg similarity index 100% rename from src/static/icons/solid/hanukiah.svg rename to apps/client/src/static/icons/solid/hanukiah.svg diff --git a/src/static/icons/solid/hard-hat.svg b/apps/client/src/static/icons/solid/hard-hat.svg similarity index 100% rename from src/static/icons/solid/hard-hat.svg rename to apps/client/src/static/icons/solid/hard-hat.svg diff --git a/src/static/icons/solid/hashtag.svg b/apps/client/src/static/icons/solid/hashtag.svg similarity index 100% rename from src/static/icons/solid/hashtag.svg rename to apps/client/src/static/icons/solid/hashtag.svg diff --git a/src/static/icons/solid/hat-chef.svg b/apps/client/src/static/icons/solid/hat-chef.svg similarity index 100% rename from src/static/icons/solid/hat-chef.svg rename to apps/client/src/static/icons/solid/hat-chef.svg diff --git a/src/static/icons/solid/hat-cowboy-side.svg b/apps/client/src/static/icons/solid/hat-cowboy-side.svg similarity index 100% rename from src/static/icons/solid/hat-cowboy-side.svg rename to apps/client/src/static/icons/solid/hat-cowboy-side.svg diff --git a/src/static/icons/solid/hat-cowboy.svg b/apps/client/src/static/icons/solid/hat-cowboy.svg similarity index 100% rename from src/static/icons/solid/hat-cowboy.svg rename to apps/client/src/static/icons/solid/hat-cowboy.svg diff --git a/src/static/icons/solid/hat-santa.svg b/apps/client/src/static/icons/solid/hat-santa.svg similarity index 100% rename from src/static/icons/solid/hat-santa.svg rename to apps/client/src/static/icons/solid/hat-santa.svg diff --git a/src/static/icons/solid/hat-winter.svg b/apps/client/src/static/icons/solid/hat-winter.svg similarity index 100% rename from src/static/icons/solid/hat-winter.svg rename to apps/client/src/static/icons/solid/hat-winter.svg diff --git a/src/static/icons/solid/hat-witch.svg b/apps/client/src/static/icons/solid/hat-witch.svg similarity index 100% rename from src/static/icons/solid/hat-witch.svg rename to apps/client/src/static/icons/solid/hat-witch.svg diff --git a/src/static/icons/solid/hat-wizard.svg b/apps/client/src/static/icons/solid/hat-wizard.svg similarity index 100% rename from src/static/icons/solid/hat-wizard.svg rename to apps/client/src/static/icons/solid/hat-wizard.svg diff --git a/src/static/icons/solid/hdd.svg b/apps/client/src/static/icons/solid/hdd.svg similarity index 100% rename from src/static/icons/solid/hdd.svg rename to apps/client/src/static/icons/solid/hdd.svg diff --git a/src/static/icons/solid/head-side-brain.svg b/apps/client/src/static/icons/solid/head-side-brain.svg similarity index 100% rename from src/static/icons/solid/head-side-brain.svg rename to apps/client/src/static/icons/solid/head-side-brain.svg diff --git a/src/static/icons/solid/head-side-headphones.svg b/apps/client/src/static/icons/solid/head-side-headphones.svg similarity index 100% rename from src/static/icons/solid/head-side-headphones.svg rename to apps/client/src/static/icons/solid/head-side-headphones.svg diff --git a/src/static/icons/solid/head-side-medical.svg b/apps/client/src/static/icons/solid/head-side-medical.svg similarity index 100% rename from src/static/icons/solid/head-side-medical.svg rename to apps/client/src/static/icons/solid/head-side-medical.svg diff --git a/src/static/icons/solid/head-side.svg b/apps/client/src/static/icons/solid/head-side.svg similarity index 100% rename from src/static/icons/solid/head-side.svg rename to apps/client/src/static/icons/solid/head-side.svg diff --git a/src/static/icons/solid/head-vr.svg b/apps/client/src/static/icons/solid/head-vr.svg similarity index 100% rename from src/static/icons/solid/head-vr.svg rename to apps/client/src/static/icons/solid/head-vr.svg diff --git a/src/static/icons/solid/heading.svg b/apps/client/src/static/icons/solid/heading.svg similarity index 100% rename from src/static/icons/solid/heading.svg rename to apps/client/src/static/icons/solid/heading.svg diff --git a/src/static/icons/solid/headphones-alt.svg b/apps/client/src/static/icons/solid/headphones-alt.svg similarity index 100% rename from src/static/icons/solid/headphones-alt.svg rename to apps/client/src/static/icons/solid/headphones-alt.svg diff --git a/src/static/icons/solid/headphones.svg b/apps/client/src/static/icons/solid/headphones.svg similarity index 100% rename from src/static/icons/solid/headphones.svg rename to apps/client/src/static/icons/solid/headphones.svg diff --git a/src/static/icons/solid/headset.svg b/apps/client/src/static/icons/solid/headset.svg similarity index 100% rename from src/static/icons/solid/headset.svg rename to apps/client/src/static/icons/solid/headset.svg diff --git a/src/static/icons/solid/heart-broken.svg b/apps/client/src/static/icons/solid/heart-broken.svg similarity index 100% rename from src/static/icons/solid/heart-broken.svg rename to apps/client/src/static/icons/solid/heart-broken.svg diff --git a/src/static/icons/solid/heart-circle.svg b/apps/client/src/static/icons/solid/heart-circle.svg similarity index 100% rename from src/static/icons/solid/heart-circle.svg rename to apps/client/src/static/icons/solid/heart-circle.svg diff --git a/src/static/icons/solid/heart-rate.svg b/apps/client/src/static/icons/solid/heart-rate.svg similarity index 100% rename from src/static/icons/solid/heart-rate.svg rename to apps/client/src/static/icons/solid/heart-rate.svg diff --git a/src/static/icons/solid/heart-square.svg b/apps/client/src/static/icons/solid/heart-square.svg similarity index 100% rename from src/static/icons/solid/heart-square.svg rename to apps/client/src/static/icons/solid/heart-square.svg diff --git a/src/static/icons/solid/heart.svg b/apps/client/src/static/icons/solid/heart.svg similarity index 100% rename from src/static/icons/solid/heart.svg rename to apps/client/src/static/icons/solid/heart.svg diff --git a/src/static/icons/solid/heartbeat.svg b/apps/client/src/static/icons/solid/heartbeat.svg similarity index 100% rename from src/static/icons/solid/heartbeat.svg rename to apps/client/src/static/icons/solid/heartbeat.svg diff --git a/src/static/icons/solid/heat.svg b/apps/client/src/static/icons/solid/heat.svg similarity index 100% rename from src/static/icons/solid/heat.svg rename to apps/client/src/static/icons/solid/heat.svg diff --git a/src/static/icons/solid/helicopter.svg b/apps/client/src/static/icons/solid/helicopter.svg similarity index 100% rename from src/static/icons/solid/helicopter.svg rename to apps/client/src/static/icons/solid/helicopter.svg diff --git a/src/static/icons/solid/helmet-battle.svg b/apps/client/src/static/icons/solid/helmet-battle.svg similarity index 100% rename from src/static/icons/solid/helmet-battle.svg rename to apps/client/src/static/icons/solid/helmet-battle.svg diff --git a/src/static/icons/solid/hexagon.svg b/apps/client/src/static/icons/solid/hexagon.svg similarity index 100% rename from src/static/icons/solid/hexagon.svg rename to apps/client/src/static/icons/solid/hexagon.svg diff --git a/src/static/icons/solid/highlighter.svg b/apps/client/src/static/icons/solid/highlighter.svg similarity index 100% rename from src/static/icons/solid/highlighter.svg rename to apps/client/src/static/icons/solid/highlighter.svg diff --git a/src/static/icons/solid/hiking.svg b/apps/client/src/static/icons/solid/hiking.svg similarity index 100% rename from src/static/icons/solid/hiking.svg rename to apps/client/src/static/icons/solid/hiking.svg diff --git a/src/static/icons/solid/hippo.svg b/apps/client/src/static/icons/solid/hippo.svg similarity index 100% rename from src/static/icons/solid/hippo.svg rename to apps/client/src/static/icons/solid/hippo.svg diff --git a/src/static/icons/solid/history.svg b/apps/client/src/static/icons/solid/history.svg similarity index 100% rename from src/static/icons/solid/history.svg rename to apps/client/src/static/icons/solid/history.svg diff --git a/src/static/icons/solid/hockey-mask.svg b/apps/client/src/static/icons/solid/hockey-mask.svg similarity index 100% rename from src/static/icons/solid/hockey-mask.svg rename to apps/client/src/static/icons/solid/hockey-mask.svg diff --git a/src/static/icons/solid/hockey-puck.svg b/apps/client/src/static/icons/solid/hockey-puck.svg similarity index 100% rename from src/static/icons/solid/hockey-puck.svg rename to apps/client/src/static/icons/solid/hockey-puck.svg diff --git a/src/static/icons/solid/hockey-sticks.svg b/apps/client/src/static/icons/solid/hockey-sticks.svg similarity index 100% rename from src/static/icons/solid/hockey-sticks.svg rename to apps/client/src/static/icons/solid/hockey-sticks.svg diff --git a/src/static/icons/solid/holly-berry.svg b/apps/client/src/static/icons/solid/holly-berry.svg similarity index 100% rename from src/static/icons/solid/holly-berry.svg rename to apps/client/src/static/icons/solid/holly-berry.svg diff --git a/src/static/icons/solid/home-alt.svg b/apps/client/src/static/icons/solid/home-alt.svg similarity index 100% rename from src/static/icons/solid/home-alt.svg rename to apps/client/src/static/icons/solid/home-alt.svg diff --git a/src/static/icons/solid/home-heart.svg b/apps/client/src/static/icons/solid/home-heart.svg similarity index 100% rename from src/static/icons/solid/home-heart.svg rename to apps/client/src/static/icons/solid/home-heart.svg diff --git a/src/static/icons/solid/home-lg-alt.svg b/apps/client/src/static/icons/solid/home-lg-alt.svg similarity index 100% rename from src/static/icons/solid/home-lg-alt.svg rename to apps/client/src/static/icons/solid/home-lg-alt.svg diff --git a/src/static/icons/solid/home-lg.svg b/apps/client/src/static/icons/solid/home-lg.svg similarity index 100% rename from src/static/icons/solid/home-lg.svg rename to apps/client/src/static/icons/solid/home-lg.svg diff --git a/src/static/icons/solid/home.svg b/apps/client/src/static/icons/solid/home.svg similarity index 100% rename from src/static/icons/solid/home.svg rename to apps/client/src/static/icons/solid/home.svg diff --git a/src/static/icons/solid/hood-cloak.svg b/apps/client/src/static/icons/solid/hood-cloak.svg similarity index 100% rename from src/static/icons/solid/hood-cloak.svg rename to apps/client/src/static/icons/solid/hood-cloak.svg diff --git a/src/static/icons/solid/horizontal-rule.svg b/apps/client/src/static/icons/solid/horizontal-rule.svg similarity index 100% rename from src/static/icons/solid/horizontal-rule.svg rename to apps/client/src/static/icons/solid/horizontal-rule.svg diff --git a/src/static/icons/solid/horse-head.svg b/apps/client/src/static/icons/solid/horse-head.svg similarity index 100% rename from src/static/icons/solid/horse-head.svg rename to apps/client/src/static/icons/solid/horse-head.svg diff --git a/src/static/icons/solid/horse-saddle.svg b/apps/client/src/static/icons/solid/horse-saddle.svg similarity index 100% rename from src/static/icons/solid/horse-saddle.svg rename to apps/client/src/static/icons/solid/horse-saddle.svg diff --git a/src/static/icons/solid/horse.svg b/apps/client/src/static/icons/solid/horse.svg similarity index 100% rename from src/static/icons/solid/horse.svg rename to apps/client/src/static/icons/solid/horse.svg diff --git a/src/static/icons/solid/hospital-alt.svg b/apps/client/src/static/icons/solid/hospital-alt.svg similarity index 100% rename from src/static/icons/solid/hospital-alt.svg rename to apps/client/src/static/icons/solid/hospital-alt.svg diff --git a/src/static/icons/solid/hospital-symbol.svg b/apps/client/src/static/icons/solid/hospital-symbol.svg similarity index 100% rename from src/static/icons/solid/hospital-symbol.svg rename to apps/client/src/static/icons/solid/hospital-symbol.svg diff --git a/src/static/icons/solid/hospital-user.svg b/apps/client/src/static/icons/solid/hospital-user.svg similarity index 100% rename from src/static/icons/solid/hospital-user.svg rename to apps/client/src/static/icons/solid/hospital-user.svg diff --git a/src/static/icons/solid/hospital.svg b/apps/client/src/static/icons/solid/hospital.svg similarity index 100% rename from src/static/icons/solid/hospital.svg rename to apps/client/src/static/icons/solid/hospital.svg diff --git a/src/static/icons/solid/hospitals.svg b/apps/client/src/static/icons/solid/hospitals.svg similarity index 100% rename from src/static/icons/solid/hospitals.svg rename to apps/client/src/static/icons/solid/hospitals.svg diff --git a/src/static/icons/solid/hot-tub.svg b/apps/client/src/static/icons/solid/hot-tub.svg similarity index 100% rename from src/static/icons/solid/hot-tub.svg rename to apps/client/src/static/icons/solid/hot-tub.svg diff --git a/src/static/icons/solid/hotdog.svg b/apps/client/src/static/icons/solid/hotdog.svg similarity index 100% rename from src/static/icons/solid/hotdog.svg rename to apps/client/src/static/icons/solid/hotdog.svg diff --git a/src/static/icons/solid/hotel.svg b/apps/client/src/static/icons/solid/hotel.svg similarity index 100% rename from src/static/icons/solid/hotel.svg rename to apps/client/src/static/icons/solid/hotel.svg diff --git a/src/static/icons/solid/hourglass-end.svg b/apps/client/src/static/icons/solid/hourglass-end.svg similarity index 100% rename from src/static/icons/solid/hourglass-end.svg rename to apps/client/src/static/icons/solid/hourglass-end.svg diff --git a/src/static/icons/solid/hourglass-half.svg b/apps/client/src/static/icons/solid/hourglass-half.svg similarity index 100% rename from src/static/icons/solid/hourglass-half.svg rename to apps/client/src/static/icons/solid/hourglass-half.svg diff --git a/src/static/icons/solid/hourglass-start.svg b/apps/client/src/static/icons/solid/hourglass-start.svg similarity index 100% rename from src/static/icons/solid/hourglass-start.svg rename to apps/client/src/static/icons/solid/hourglass-start.svg diff --git a/src/static/icons/solid/hourglass.svg b/apps/client/src/static/icons/solid/hourglass.svg similarity index 100% rename from src/static/icons/solid/hourglass.svg rename to apps/client/src/static/icons/solid/hourglass.svg diff --git a/src/static/icons/solid/house-damage.svg b/apps/client/src/static/icons/solid/house-damage.svg similarity index 100% rename from src/static/icons/solid/house-damage.svg rename to apps/client/src/static/icons/solid/house-damage.svg diff --git a/src/static/icons/solid/house-day.svg b/apps/client/src/static/icons/solid/house-day.svg similarity index 100% rename from src/static/icons/solid/house-day.svg rename to apps/client/src/static/icons/solid/house-day.svg diff --git a/src/static/icons/solid/house-flood.svg b/apps/client/src/static/icons/solid/house-flood.svg similarity index 100% rename from src/static/icons/solid/house-flood.svg rename to apps/client/src/static/icons/solid/house-flood.svg diff --git a/src/static/icons/solid/house-leave.svg b/apps/client/src/static/icons/solid/house-leave.svg similarity index 100% rename from src/static/icons/solid/house-leave.svg rename to apps/client/src/static/icons/solid/house-leave.svg diff --git a/src/static/icons/solid/house-night.svg b/apps/client/src/static/icons/solid/house-night.svg similarity index 100% rename from src/static/icons/solid/house-night.svg rename to apps/client/src/static/icons/solid/house-night.svg diff --git a/src/static/icons/solid/house-return.svg b/apps/client/src/static/icons/solid/house-return.svg similarity index 100% rename from src/static/icons/solid/house-return.svg rename to apps/client/src/static/icons/solid/house-return.svg diff --git a/src/static/icons/solid/house-signal.svg b/apps/client/src/static/icons/solid/house-signal.svg similarity index 100% rename from src/static/icons/solid/house-signal.svg rename to apps/client/src/static/icons/solid/house-signal.svg diff --git a/src/static/icons/solid/house.svg b/apps/client/src/static/icons/solid/house.svg similarity index 100% rename from src/static/icons/solid/house.svg rename to apps/client/src/static/icons/solid/house.svg diff --git a/src/static/icons/solid/hryvnia.svg b/apps/client/src/static/icons/solid/hryvnia.svg similarity index 100% rename from src/static/icons/solid/hryvnia.svg rename to apps/client/src/static/icons/solid/hryvnia.svg diff --git a/src/static/icons/solid/humidity.svg b/apps/client/src/static/icons/solid/humidity.svg similarity index 100% rename from src/static/icons/solid/humidity.svg rename to apps/client/src/static/icons/solid/humidity.svg diff --git a/src/static/icons/solid/hurricane.svg b/apps/client/src/static/icons/solid/hurricane.svg similarity index 100% rename from src/static/icons/solid/hurricane.svg rename to apps/client/src/static/icons/solid/hurricane.svg diff --git a/src/static/icons/solid/i-cursor.svg b/apps/client/src/static/icons/solid/i-cursor.svg similarity index 100% rename from src/static/icons/solid/i-cursor.svg rename to apps/client/src/static/icons/solid/i-cursor.svg diff --git a/src/static/icons/solid/ice-cream.svg b/apps/client/src/static/icons/solid/ice-cream.svg similarity index 100% rename from src/static/icons/solid/ice-cream.svg rename to apps/client/src/static/icons/solid/ice-cream.svg diff --git a/src/static/icons/solid/ice-skate.svg b/apps/client/src/static/icons/solid/ice-skate.svg similarity index 100% rename from src/static/icons/solid/ice-skate.svg rename to apps/client/src/static/icons/solid/ice-skate.svg diff --git a/src/static/icons/solid/icicles.svg b/apps/client/src/static/icons/solid/icicles.svg similarity index 100% rename from src/static/icons/solid/icicles.svg rename to apps/client/src/static/icons/solid/icicles.svg diff --git a/src/static/icons/solid/icons-alt.svg b/apps/client/src/static/icons/solid/icons-alt.svg similarity index 100% rename from src/static/icons/solid/icons-alt.svg rename to apps/client/src/static/icons/solid/icons-alt.svg diff --git a/src/static/icons/solid/icons.svg b/apps/client/src/static/icons/solid/icons.svg similarity index 100% rename from src/static/icons/solid/icons.svg rename to apps/client/src/static/icons/solid/icons.svg diff --git a/src/static/icons/solid/id-badge.svg b/apps/client/src/static/icons/solid/id-badge.svg similarity index 100% rename from src/static/icons/solid/id-badge.svg rename to apps/client/src/static/icons/solid/id-badge.svg diff --git a/src/static/icons/solid/id-card-alt.svg b/apps/client/src/static/icons/solid/id-card-alt.svg similarity index 100% rename from src/static/icons/solid/id-card-alt.svg rename to apps/client/src/static/icons/solid/id-card-alt.svg diff --git a/src/static/icons/solid/id-card.svg b/apps/client/src/static/icons/solid/id-card.svg similarity index 100% rename from src/static/icons/solid/id-card.svg rename to apps/client/src/static/icons/solid/id-card.svg diff --git a/src/static/icons/solid/igloo.svg b/apps/client/src/static/icons/solid/igloo.svg similarity index 100% rename from src/static/icons/solid/igloo.svg rename to apps/client/src/static/icons/solid/igloo.svg diff --git a/src/static/icons/solid/image-polaroid.svg b/apps/client/src/static/icons/solid/image-polaroid.svg similarity index 100% rename from src/static/icons/solid/image-polaroid.svg rename to apps/client/src/static/icons/solid/image-polaroid.svg diff --git a/src/static/icons/solid/image.svg b/apps/client/src/static/icons/solid/image.svg similarity index 100% rename from src/static/icons/solid/image.svg rename to apps/client/src/static/icons/solid/image.svg diff --git a/src/static/icons/solid/images.svg b/apps/client/src/static/icons/solid/images.svg similarity index 100% rename from src/static/icons/solid/images.svg rename to apps/client/src/static/icons/solid/images.svg diff --git a/src/static/icons/solid/inbox-in.svg b/apps/client/src/static/icons/solid/inbox-in.svg similarity index 100% rename from src/static/icons/solid/inbox-in.svg rename to apps/client/src/static/icons/solid/inbox-in.svg diff --git a/src/static/icons/solid/inbox-out.svg b/apps/client/src/static/icons/solid/inbox-out.svg similarity index 100% rename from src/static/icons/solid/inbox-out.svg rename to apps/client/src/static/icons/solid/inbox-out.svg diff --git a/src/static/icons/solid/inbox.svg b/apps/client/src/static/icons/solid/inbox.svg similarity index 100% rename from src/static/icons/solid/inbox.svg rename to apps/client/src/static/icons/solid/inbox.svg diff --git a/src/static/icons/solid/indent.svg b/apps/client/src/static/icons/solid/indent.svg similarity index 100% rename from src/static/icons/solid/indent.svg rename to apps/client/src/static/icons/solid/indent.svg diff --git a/src/static/icons/solid/industry-alt.svg b/apps/client/src/static/icons/solid/industry-alt.svg similarity index 100% rename from src/static/icons/solid/industry-alt.svg rename to apps/client/src/static/icons/solid/industry-alt.svg diff --git a/src/static/icons/solid/industry.svg b/apps/client/src/static/icons/solid/industry.svg similarity index 100% rename from src/static/icons/solid/industry.svg rename to apps/client/src/static/icons/solid/industry.svg diff --git a/src/static/icons/solid/infinity.svg b/apps/client/src/static/icons/solid/infinity.svg similarity index 100% rename from src/static/icons/solid/infinity.svg rename to apps/client/src/static/icons/solid/infinity.svg diff --git a/src/static/icons/solid/info-circle.svg b/apps/client/src/static/icons/solid/info-circle.svg similarity index 100% rename from src/static/icons/solid/info-circle.svg rename to apps/client/src/static/icons/solid/info-circle.svg diff --git a/src/static/icons/solid/info-square.svg b/apps/client/src/static/icons/solid/info-square.svg similarity index 100% rename from src/static/icons/solid/info-square.svg rename to apps/client/src/static/icons/solid/info-square.svg diff --git a/src/static/icons/solid/info.svg b/apps/client/src/static/icons/solid/info.svg similarity index 100% rename from src/static/icons/solid/info.svg rename to apps/client/src/static/icons/solid/info.svg diff --git a/src/static/icons/solid/inhaler.svg b/apps/client/src/static/icons/solid/inhaler.svg similarity index 100% rename from src/static/icons/solid/inhaler.svg rename to apps/client/src/static/icons/solid/inhaler.svg diff --git a/src/static/icons/solid/integral.svg b/apps/client/src/static/icons/solid/integral.svg similarity index 100% rename from src/static/icons/solid/integral.svg rename to apps/client/src/static/icons/solid/integral.svg diff --git a/src/static/icons/solid/intersection.svg b/apps/client/src/static/icons/solid/intersection.svg similarity index 100% rename from src/static/icons/solid/intersection.svg rename to apps/client/src/static/icons/solid/intersection.svg diff --git a/src/static/icons/solid/inventory.svg b/apps/client/src/static/icons/solid/inventory.svg similarity index 100% rename from src/static/icons/solid/inventory.svg rename to apps/client/src/static/icons/solid/inventory.svg diff --git a/src/static/icons/solid/island-tropical.svg b/apps/client/src/static/icons/solid/island-tropical.svg similarity index 100% rename from src/static/icons/solid/island-tropical.svg rename to apps/client/src/static/icons/solid/island-tropical.svg diff --git a/src/static/icons/solid/italic.svg b/apps/client/src/static/icons/solid/italic.svg similarity index 100% rename from src/static/icons/solid/italic.svg rename to apps/client/src/static/icons/solid/italic.svg diff --git a/src/static/icons/solid/jack-o-lantern.svg b/apps/client/src/static/icons/solid/jack-o-lantern.svg similarity index 100% rename from src/static/icons/solid/jack-o-lantern.svg rename to apps/client/src/static/icons/solid/jack-o-lantern.svg diff --git a/src/static/icons/solid/jedi.svg b/apps/client/src/static/icons/solid/jedi.svg similarity index 100% rename from src/static/icons/solid/jedi.svg rename to apps/client/src/static/icons/solid/jedi.svg diff --git a/src/static/icons/solid/joint.svg b/apps/client/src/static/icons/solid/joint.svg similarity index 100% rename from src/static/icons/solid/joint.svg rename to apps/client/src/static/icons/solid/joint.svg diff --git a/src/static/icons/solid/journal-whills.svg b/apps/client/src/static/icons/solid/journal-whills.svg similarity index 100% rename from src/static/icons/solid/journal-whills.svg rename to apps/client/src/static/icons/solid/journal-whills.svg diff --git a/src/static/icons/solid/joystick.svg b/apps/client/src/static/icons/solid/joystick.svg similarity index 100% rename from src/static/icons/solid/joystick.svg rename to apps/client/src/static/icons/solid/joystick.svg diff --git a/src/static/icons/solid/jug.svg b/apps/client/src/static/icons/solid/jug.svg similarity index 100% rename from src/static/icons/solid/jug.svg rename to apps/client/src/static/icons/solid/jug.svg diff --git a/src/static/icons/solid/kaaba.svg b/apps/client/src/static/icons/solid/kaaba.svg similarity index 100% rename from src/static/icons/solid/kaaba.svg rename to apps/client/src/static/icons/solid/kaaba.svg diff --git a/src/static/icons/solid/kazoo.svg b/apps/client/src/static/icons/solid/kazoo.svg similarity index 100% rename from src/static/icons/solid/kazoo.svg rename to apps/client/src/static/icons/solid/kazoo.svg diff --git a/src/static/icons/solid/kerning.svg b/apps/client/src/static/icons/solid/kerning.svg similarity index 100% rename from src/static/icons/solid/kerning.svg rename to apps/client/src/static/icons/solid/kerning.svg diff --git a/src/static/icons/solid/key-skeleton.svg b/apps/client/src/static/icons/solid/key-skeleton.svg similarity index 100% rename from src/static/icons/solid/key-skeleton.svg rename to apps/client/src/static/icons/solid/key-skeleton.svg diff --git a/src/static/icons/solid/key.svg b/apps/client/src/static/icons/solid/key.svg similarity index 100% rename from src/static/icons/solid/key.svg rename to apps/client/src/static/icons/solid/key.svg diff --git a/src/static/icons/solid/keyboard.svg b/apps/client/src/static/icons/solid/keyboard.svg similarity index 100% rename from src/static/icons/solid/keyboard.svg rename to apps/client/src/static/icons/solid/keyboard.svg diff --git a/src/static/icons/solid/keynote.svg b/apps/client/src/static/icons/solid/keynote.svg similarity index 100% rename from src/static/icons/solid/keynote.svg rename to apps/client/src/static/icons/solid/keynote.svg diff --git a/src/static/icons/solid/khanda.svg b/apps/client/src/static/icons/solid/khanda.svg similarity index 100% rename from src/static/icons/solid/khanda.svg rename to apps/client/src/static/icons/solid/khanda.svg diff --git a/src/static/icons/solid/kidneys.svg b/apps/client/src/static/icons/solid/kidneys.svg similarity index 100% rename from src/static/icons/solid/kidneys.svg rename to apps/client/src/static/icons/solid/kidneys.svg diff --git a/src/static/icons/solid/kiss-beam.svg b/apps/client/src/static/icons/solid/kiss-beam.svg similarity index 100% rename from src/static/icons/solid/kiss-beam.svg rename to apps/client/src/static/icons/solid/kiss-beam.svg diff --git a/src/static/icons/solid/kiss-wink-heart.svg b/apps/client/src/static/icons/solid/kiss-wink-heart.svg similarity index 100% rename from src/static/icons/solid/kiss-wink-heart.svg rename to apps/client/src/static/icons/solid/kiss-wink-heart.svg diff --git a/src/static/icons/solid/kiss.svg b/apps/client/src/static/icons/solid/kiss.svg similarity index 100% rename from src/static/icons/solid/kiss.svg rename to apps/client/src/static/icons/solid/kiss.svg diff --git a/src/static/icons/solid/kite.svg b/apps/client/src/static/icons/solid/kite.svg similarity index 100% rename from src/static/icons/solid/kite.svg rename to apps/client/src/static/icons/solid/kite.svg diff --git a/src/static/icons/solid/kiwi-bird.svg b/apps/client/src/static/icons/solid/kiwi-bird.svg similarity index 100% rename from src/static/icons/solid/kiwi-bird.svg rename to apps/client/src/static/icons/solid/kiwi-bird.svg diff --git a/src/static/icons/solid/knife-kitchen.svg b/apps/client/src/static/icons/solid/knife-kitchen.svg similarity index 100% rename from src/static/icons/solid/knife-kitchen.svg rename to apps/client/src/static/icons/solid/knife-kitchen.svg diff --git a/src/static/icons/solid/lambda.svg b/apps/client/src/static/icons/solid/lambda.svg similarity index 100% rename from src/static/icons/solid/lambda.svg rename to apps/client/src/static/icons/solid/lambda.svg diff --git a/src/static/icons/solid/lamp-desk.svg b/apps/client/src/static/icons/solid/lamp-desk.svg similarity index 100% rename from src/static/icons/solid/lamp-desk.svg rename to apps/client/src/static/icons/solid/lamp-desk.svg diff --git a/src/static/icons/solid/lamp-floor.svg b/apps/client/src/static/icons/solid/lamp-floor.svg similarity index 100% rename from src/static/icons/solid/lamp-floor.svg rename to apps/client/src/static/icons/solid/lamp-floor.svg diff --git a/src/static/icons/solid/lamp.svg b/apps/client/src/static/icons/solid/lamp.svg similarity index 100% rename from src/static/icons/solid/lamp.svg rename to apps/client/src/static/icons/solid/lamp.svg diff --git a/src/static/icons/solid/landmark-alt.svg b/apps/client/src/static/icons/solid/landmark-alt.svg similarity index 100% rename from src/static/icons/solid/landmark-alt.svg rename to apps/client/src/static/icons/solid/landmark-alt.svg diff --git a/src/static/icons/solid/landmark.svg b/apps/client/src/static/icons/solid/landmark.svg similarity index 100% rename from src/static/icons/solid/landmark.svg rename to apps/client/src/static/icons/solid/landmark.svg diff --git a/src/static/icons/solid/language.svg b/apps/client/src/static/icons/solid/language.svg similarity index 100% rename from src/static/icons/solid/language.svg rename to apps/client/src/static/icons/solid/language.svg diff --git a/src/static/icons/solid/laptop-code.svg b/apps/client/src/static/icons/solid/laptop-code.svg similarity index 100% rename from src/static/icons/solid/laptop-code.svg rename to apps/client/src/static/icons/solid/laptop-code.svg diff --git a/src/static/icons/solid/laptop-medical.svg b/apps/client/src/static/icons/solid/laptop-medical.svg similarity index 100% rename from src/static/icons/solid/laptop-medical.svg rename to apps/client/src/static/icons/solid/laptop-medical.svg diff --git a/src/static/icons/solid/laptop.svg b/apps/client/src/static/icons/solid/laptop.svg similarity index 100% rename from src/static/icons/solid/laptop.svg rename to apps/client/src/static/icons/solid/laptop.svg diff --git a/src/static/icons/solid/lasso.svg b/apps/client/src/static/icons/solid/lasso.svg similarity index 100% rename from src/static/icons/solid/lasso.svg rename to apps/client/src/static/icons/solid/lasso.svg diff --git a/src/static/icons/solid/laugh-beam.svg b/apps/client/src/static/icons/solid/laugh-beam.svg similarity index 100% rename from src/static/icons/solid/laugh-beam.svg rename to apps/client/src/static/icons/solid/laugh-beam.svg diff --git a/src/static/icons/solid/laugh-squint.svg b/apps/client/src/static/icons/solid/laugh-squint.svg similarity index 100% rename from src/static/icons/solid/laugh-squint.svg rename to apps/client/src/static/icons/solid/laugh-squint.svg diff --git a/src/static/icons/solid/laugh-wink.svg b/apps/client/src/static/icons/solid/laugh-wink.svg similarity index 100% rename from src/static/icons/solid/laugh-wink.svg rename to apps/client/src/static/icons/solid/laugh-wink.svg diff --git a/src/static/icons/solid/laugh.svg b/apps/client/src/static/icons/solid/laugh.svg similarity index 100% rename from src/static/icons/solid/laugh.svg rename to apps/client/src/static/icons/solid/laugh.svg diff --git a/src/static/icons/solid/layer-group.svg b/apps/client/src/static/icons/solid/layer-group.svg similarity index 100% rename from src/static/icons/solid/layer-group.svg rename to apps/client/src/static/icons/solid/layer-group.svg diff --git a/src/static/icons/solid/layer-minus.svg b/apps/client/src/static/icons/solid/layer-minus.svg similarity index 100% rename from src/static/icons/solid/layer-minus.svg rename to apps/client/src/static/icons/solid/layer-minus.svg diff --git a/src/static/icons/solid/layer-plus.svg b/apps/client/src/static/icons/solid/layer-plus.svg similarity index 100% rename from src/static/icons/solid/layer-plus.svg rename to apps/client/src/static/icons/solid/layer-plus.svg diff --git a/src/static/icons/solid/leaf-heart.svg b/apps/client/src/static/icons/solid/leaf-heart.svg similarity index 100% rename from src/static/icons/solid/leaf-heart.svg rename to apps/client/src/static/icons/solid/leaf-heart.svg diff --git a/src/static/icons/solid/leaf-maple.svg b/apps/client/src/static/icons/solid/leaf-maple.svg similarity index 100% rename from src/static/icons/solid/leaf-maple.svg rename to apps/client/src/static/icons/solid/leaf-maple.svg diff --git a/src/static/icons/solid/leaf-oak.svg b/apps/client/src/static/icons/solid/leaf-oak.svg similarity index 100% rename from src/static/icons/solid/leaf-oak.svg rename to apps/client/src/static/icons/solid/leaf-oak.svg diff --git a/src/static/icons/solid/leaf.svg b/apps/client/src/static/icons/solid/leaf.svg similarity index 100% rename from src/static/icons/solid/leaf.svg rename to apps/client/src/static/icons/solid/leaf.svg diff --git a/src/static/icons/solid/lemon.svg b/apps/client/src/static/icons/solid/lemon.svg similarity index 100% rename from src/static/icons/solid/lemon.svg rename to apps/client/src/static/icons/solid/lemon.svg diff --git a/src/static/icons/solid/less-than-equal.svg b/apps/client/src/static/icons/solid/less-than-equal.svg similarity index 100% rename from src/static/icons/solid/less-than-equal.svg rename to apps/client/src/static/icons/solid/less-than-equal.svg diff --git a/src/static/icons/solid/less-than.svg b/apps/client/src/static/icons/solid/less-than.svg similarity index 100% rename from src/static/icons/solid/less-than.svg rename to apps/client/src/static/icons/solid/less-than.svg diff --git a/src/static/icons/solid/level-down-alt.svg b/apps/client/src/static/icons/solid/level-down-alt.svg similarity index 100% rename from src/static/icons/solid/level-down-alt.svg rename to apps/client/src/static/icons/solid/level-down-alt.svg diff --git a/src/static/icons/solid/level-down.svg b/apps/client/src/static/icons/solid/level-down.svg similarity index 100% rename from src/static/icons/solid/level-down.svg rename to apps/client/src/static/icons/solid/level-down.svg diff --git a/src/static/icons/solid/level-up-alt.svg b/apps/client/src/static/icons/solid/level-up-alt.svg similarity index 100% rename from src/static/icons/solid/level-up-alt.svg rename to apps/client/src/static/icons/solid/level-up-alt.svg diff --git a/src/static/icons/solid/level-up.svg b/apps/client/src/static/icons/solid/level-up.svg similarity index 100% rename from src/static/icons/solid/level-up.svg rename to apps/client/src/static/icons/solid/level-up.svg diff --git a/src/static/icons/solid/life-ring.svg b/apps/client/src/static/icons/solid/life-ring.svg similarity index 100% rename from src/static/icons/solid/life-ring.svg rename to apps/client/src/static/icons/solid/life-ring.svg diff --git a/src/static/icons/solid/light-ceiling.svg b/apps/client/src/static/icons/solid/light-ceiling.svg similarity index 100% rename from src/static/icons/solid/light-ceiling.svg rename to apps/client/src/static/icons/solid/light-ceiling.svg diff --git a/src/static/icons/solid/light-switch-off.svg b/apps/client/src/static/icons/solid/light-switch-off.svg similarity index 100% rename from src/static/icons/solid/light-switch-off.svg rename to apps/client/src/static/icons/solid/light-switch-off.svg diff --git a/src/static/icons/solid/light-switch-on.svg b/apps/client/src/static/icons/solid/light-switch-on.svg similarity index 100% rename from src/static/icons/solid/light-switch-on.svg rename to apps/client/src/static/icons/solid/light-switch-on.svg diff --git a/src/static/icons/solid/light-switch.svg b/apps/client/src/static/icons/solid/light-switch.svg similarity index 100% rename from src/static/icons/solid/light-switch.svg rename to apps/client/src/static/icons/solid/light-switch.svg diff --git a/src/static/icons/solid/lightbulb-dollar.svg b/apps/client/src/static/icons/solid/lightbulb-dollar.svg similarity index 100% rename from src/static/icons/solid/lightbulb-dollar.svg rename to apps/client/src/static/icons/solid/lightbulb-dollar.svg diff --git a/src/static/icons/solid/lightbulb-exclamation.svg b/apps/client/src/static/icons/solid/lightbulb-exclamation.svg similarity index 100% rename from src/static/icons/solid/lightbulb-exclamation.svg rename to apps/client/src/static/icons/solid/lightbulb-exclamation.svg diff --git a/src/static/icons/solid/lightbulb-on.svg b/apps/client/src/static/icons/solid/lightbulb-on.svg similarity index 100% rename from src/static/icons/solid/lightbulb-on.svg rename to apps/client/src/static/icons/solid/lightbulb-on.svg diff --git a/src/static/icons/solid/lightbulb-slash.svg b/apps/client/src/static/icons/solid/lightbulb-slash.svg similarity index 100% rename from src/static/icons/solid/lightbulb-slash.svg rename to apps/client/src/static/icons/solid/lightbulb-slash.svg diff --git a/src/static/icons/solid/lightbulb.svg b/apps/client/src/static/icons/solid/lightbulb.svg similarity index 100% rename from src/static/icons/solid/lightbulb.svg rename to apps/client/src/static/icons/solid/lightbulb.svg diff --git a/src/static/icons/solid/lights-holiday.svg b/apps/client/src/static/icons/solid/lights-holiday.svg similarity index 100% rename from src/static/icons/solid/lights-holiday.svg rename to apps/client/src/static/icons/solid/lights-holiday.svg diff --git a/src/static/icons/solid/line-columns.svg b/apps/client/src/static/icons/solid/line-columns.svg similarity index 100% rename from src/static/icons/solid/line-columns.svg rename to apps/client/src/static/icons/solid/line-columns.svg diff --git a/src/static/icons/solid/line-height.svg b/apps/client/src/static/icons/solid/line-height.svg similarity index 100% rename from src/static/icons/solid/line-height.svg rename to apps/client/src/static/icons/solid/line-height.svg diff --git a/src/static/icons/solid/link.svg b/apps/client/src/static/icons/solid/link.svg similarity index 100% rename from src/static/icons/solid/link.svg rename to apps/client/src/static/icons/solid/link.svg diff --git a/src/static/icons/solid/lips.svg b/apps/client/src/static/icons/solid/lips.svg similarity index 100% rename from src/static/icons/solid/lips.svg rename to apps/client/src/static/icons/solid/lips.svg diff --git a/src/static/icons/solid/lira-sign.svg b/apps/client/src/static/icons/solid/lira-sign.svg similarity index 100% rename from src/static/icons/solid/lira-sign.svg rename to apps/client/src/static/icons/solid/lira-sign.svg diff --git a/src/static/icons/solid/list-alt.svg b/apps/client/src/static/icons/solid/list-alt.svg similarity index 100% rename from src/static/icons/solid/list-alt.svg rename to apps/client/src/static/icons/solid/list-alt.svg diff --git a/src/static/icons/solid/list-music.svg b/apps/client/src/static/icons/solid/list-music.svg similarity index 100% rename from src/static/icons/solid/list-music.svg rename to apps/client/src/static/icons/solid/list-music.svg diff --git a/src/static/icons/solid/list-ol.svg b/apps/client/src/static/icons/solid/list-ol.svg similarity index 100% rename from src/static/icons/solid/list-ol.svg rename to apps/client/src/static/icons/solid/list-ol.svg diff --git a/src/static/icons/solid/list-ul.svg b/apps/client/src/static/icons/solid/list-ul.svg similarity index 100% rename from src/static/icons/solid/list-ul.svg rename to apps/client/src/static/icons/solid/list-ul.svg diff --git a/src/static/icons/solid/list.svg b/apps/client/src/static/icons/solid/list.svg similarity index 100% rename from src/static/icons/solid/list.svg rename to apps/client/src/static/icons/solid/list.svg diff --git a/src/static/icons/solid/location-arrow.svg b/apps/client/src/static/icons/solid/location-arrow.svg similarity index 100% rename from src/static/icons/solid/location-arrow.svg rename to apps/client/src/static/icons/solid/location-arrow.svg diff --git a/src/static/icons/solid/location-circle.svg b/apps/client/src/static/icons/solid/location-circle.svg similarity index 100% rename from src/static/icons/solid/location-circle.svg rename to apps/client/src/static/icons/solid/location-circle.svg diff --git a/src/static/icons/solid/location-slash.svg b/apps/client/src/static/icons/solid/location-slash.svg similarity index 100% rename from src/static/icons/solid/location-slash.svg rename to apps/client/src/static/icons/solid/location-slash.svg diff --git a/src/static/icons/solid/location.svg b/apps/client/src/static/icons/solid/location.svg similarity index 100% rename from src/static/icons/solid/location.svg rename to apps/client/src/static/icons/solid/location.svg diff --git a/src/static/icons/solid/lock-alt.svg b/apps/client/src/static/icons/solid/lock-alt.svg similarity index 100% rename from src/static/icons/solid/lock-alt.svg rename to apps/client/src/static/icons/solid/lock-alt.svg diff --git a/src/static/icons/solid/lock-open-alt.svg b/apps/client/src/static/icons/solid/lock-open-alt.svg similarity index 100% rename from src/static/icons/solid/lock-open-alt.svg rename to apps/client/src/static/icons/solid/lock-open-alt.svg diff --git a/src/static/icons/solid/lock-open.svg b/apps/client/src/static/icons/solid/lock-open.svg similarity index 100% rename from src/static/icons/solid/lock-open.svg rename to apps/client/src/static/icons/solid/lock-open.svg diff --git a/src/static/icons/solid/lock.svg b/apps/client/src/static/icons/solid/lock.svg similarity index 100% rename from src/static/icons/solid/lock.svg rename to apps/client/src/static/icons/solid/lock.svg diff --git a/src/static/icons/solid/long-arrow-alt-down.svg b/apps/client/src/static/icons/solid/long-arrow-alt-down.svg similarity index 100% rename from src/static/icons/solid/long-arrow-alt-down.svg rename to apps/client/src/static/icons/solid/long-arrow-alt-down.svg diff --git a/src/static/icons/solid/long-arrow-alt-left.svg b/apps/client/src/static/icons/solid/long-arrow-alt-left.svg similarity index 100% rename from src/static/icons/solid/long-arrow-alt-left.svg rename to apps/client/src/static/icons/solid/long-arrow-alt-left.svg diff --git a/src/static/icons/solid/long-arrow-alt-right.svg b/apps/client/src/static/icons/solid/long-arrow-alt-right.svg similarity index 100% rename from src/static/icons/solid/long-arrow-alt-right.svg rename to apps/client/src/static/icons/solid/long-arrow-alt-right.svg diff --git a/src/static/icons/solid/long-arrow-alt-up.svg b/apps/client/src/static/icons/solid/long-arrow-alt-up.svg similarity index 100% rename from src/static/icons/solid/long-arrow-alt-up.svg rename to apps/client/src/static/icons/solid/long-arrow-alt-up.svg diff --git a/src/static/icons/solid/long-arrow-down.svg b/apps/client/src/static/icons/solid/long-arrow-down.svg similarity index 100% rename from src/static/icons/solid/long-arrow-down.svg rename to apps/client/src/static/icons/solid/long-arrow-down.svg diff --git a/src/static/icons/solid/long-arrow-left.svg b/apps/client/src/static/icons/solid/long-arrow-left.svg similarity index 100% rename from src/static/icons/solid/long-arrow-left.svg rename to apps/client/src/static/icons/solid/long-arrow-left.svg diff --git a/src/static/icons/solid/long-arrow-right.svg b/apps/client/src/static/icons/solid/long-arrow-right.svg similarity index 100% rename from src/static/icons/solid/long-arrow-right.svg rename to apps/client/src/static/icons/solid/long-arrow-right.svg diff --git a/src/static/icons/solid/long-arrow-up.svg b/apps/client/src/static/icons/solid/long-arrow-up.svg similarity index 100% rename from src/static/icons/solid/long-arrow-up.svg rename to apps/client/src/static/icons/solid/long-arrow-up.svg diff --git a/src/static/icons/solid/loveseat.svg b/apps/client/src/static/icons/solid/loveseat.svg similarity index 100% rename from src/static/icons/solid/loveseat.svg rename to apps/client/src/static/icons/solid/loveseat.svg diff --git a/src/static/icons/solid/low-vision.svg b/apps/client/src/static/icons/solid/low-vision.svg similarity index 100% rename from src/static/icons/solid/low-vision.svg rename to apps/client/src/static/icons/solid/low-vision.svg diff --git a/src/static/icons/solid/luchador.svg b/apps/client/src/static/icons/solid/luchador.svg similarity index 100% rename from src/static/icons/solid/luchador.svg rename to apps/client/src/static/icons/solid/luchador.svg diff --git a/src/static/icons/solid/luggage-cart.svg b/apps/client/src/static/icons/solid/luggage-cart.svg similarity index 100% rename from src/static/icons/solid/luggage-cart.svg rename to apps/client/src/static/icons/solid/luggage-cart.svg diff --git a/src/static/icons/solid/lungs.svg b/apps/client/src/static/icons/solid/lungs.svg similarity index 100% rename from src/static/icons/solid/lungs.svg rename to apps/client/src/static/icons/solid/lungs.svg diff --git a/src/static/icons/solid/mace.svg b/apps/client/src/static/icons/solid/mace.svg similarity index 100% rename from src/static/icons/solid/mace.svg rename to apps/client/src/static/icons/solid/mace.svg diff --git a/src/static/icons/solid/magic.svg b/apps/client/src/static/icons/solid/magic.svg similarity index 100% rename from src/static/icons/solid/magic.svg rename to apps/client/src/static/icons/solid/magic.svg diff --git a/src/static/icons/solid/magnet.svg b/apps/client/src/static/icons/solid/magnet.svg similarity index 100% rename from src/static/icons/solid/magnet.svg rename to apps/client/src/static/icons/solid/magnet.svg diff --git a/src/static/icons/solid/mail-bulk.svg b/apps/client/src/static/icons/solid/mail-bulk.svg similarity index 100% rename from src/static/icons/solid/mail-bulk.svg rename to apps/client/src/static/icons/solid/mail-bulk.svg diff --git a/src/static/icons/solid/mailbox.svg b/apps/client/src/static/icons/solid/mailbox.svg similarity index 100% rename from src/static/icons/solid/mailbox.svg rename to apps/client/src/static/icons/solid/mailbox.svg diff --git a/src/static/icons/solid/male.svg b/apps/client/src/static/icons/solid/male.svg similarity index 100% rename from src/static/icons/solid/male.svg rename to apps/client/src/static/icons/solid/male.svg diff --git a/src/static/icons/solid/mandolin.svg b/apps/client/src/static/icons/solid/mandolin.svg similarity index 100% rename from src/static/icons/solid/mandolin.svg rename to apps/client/src/static/icons/solid/mandolin.svg diff --git a/src/static/icons/solid/map-marked-alt.svg b/apps/client/src/static/icons/solid/map-marked-alt.svg similarity index 100% rename from src/static/icons/solid/map-marked-alt.svg rename to apps/client/src/static/icons/solid/map-marked-alt.svg diff --git a/src/static/icons/solid/map-marked.svg b/apps/client/src/static/icons/solid/map-marked.svg similarity index 100% rename from src/static/icons/solid/map-marked.svg rename to apps/client/src/static/icons/solid/map-marked.svg diff --git a/src/static/icons/solid/map-marker-alt-slash.svg b/apps/client/src/static/icons/solid/map-marker-alt-slash.svg similarity index 100% rename from src/static/icons/solid/map-marker-alt-slash.svg rename to apps/client/src/static/icons/solid/map-marker-alt-slash.svg diff --git a/src/static/icons/solid/map-marker-alt.svg b/apps/client/src/static/icons/solid/map-marker-alt.svg similarity index 100% rename from src/static/icons/solid/map-marker-alt.svg rename to apps/client/src/static/icons/solid/map-marker-alt.svg diff --git a/src/static/icons/solid/map-marker-check.svg b/apps/client/src/static/icons/solid/map-marker-check.svg similarity index 100% rename from src/static/icons/solid/map-marker-check.svg rename to apps/client/src/static/icons/solid/map-marker-check.svg diff --git a/src/static/icons/solid/map-marker-edit.svg b/apps/client/src/static/icons/solid/map-marker-edit.svg similarity index 100% rename from src/static/icons/solid/map-marker-edit.svg rename to apps/client/src/static/icons/solid/map-marker-edit.svg diff --git a/src/static/icons/solid/map-marker-exclamation.svg b/apps/client/src/static/icons/solid/map-marker-exclamation.svg similarity index 100% rename from src/static/icons/solid/map-marker-exclamation.svg rename to apps/client/src/static/icons/solid/map-marker-exclamation.svg diff --git a/src/static/icons/solid/map-marker-minus.svg b/apps/client/src/static/icons/solid/map-marker-minus.svg similarity index 100% rename from src/static/icons/solid/map-marker-minus.svg rename to apps/client/src/static/icons/solid/map-marker-minus.svg diff --git a/src/static/icons/solid/map-marker-plus.svg b/apps/client/src/static/icons/solid/map-marker-plus.svg similarity index 100% rename from src/static/icons/solid/map-marker-plus.svg rename to apps/client/src/static/icons/solid/map-marker-plus.svg diff --git a/src/static/icons/solid/map-marker-question.svg b/apps/client/src/static/icons/solid/map-marker-question.svg similarity index 100% rename from src/static/icons/solid/map-marker-question.svg rename to apps/client/src/static/icons/solid/map-marker-question.svg diff --git a/src/static/icons/solid/map-marker-slash.svg b/apps/client/src/static/icons/solid/map-marker-slash.svg similarity index 100% rename from src/static/icons/solid/map-marker-slash.svg rename to apps/client/src/static/icons/solid/map-marker-slash.svg diff --git a/src/static/icons/solid/map-marker-smile.svg b/apps/client/src/static/icons/solid/map-marker-smile.svg similarity index 100% rename from src/static/icons/solid/map-marker-smile.svg rename to apps/client/src/static/icons/solid/map-marker-smile.svg diff --git a/src/static/icons/solid/map-marker-times.svg b/apps/client/src/static/icons/solid/map-marker-times.svg similarity index 100% rename from src/static/icons/solid/map-marker-times.svg rename to apps/client/src/static/icons/solid/map-marker-times.svg diff --git a/src/static/icons/solid/map-marker.svg b/apps/client/src/static/icons/solid/map-marker.svg similarity index 100% rename from src/static/icons/solid/map-marker.svg rename to apps/client/src/static/icons/solid/map-marker.svg diff --git a/src/static/icons/solid/map-pin.svg b/apps/client/src/static/icons/solid/map-pin.svg similarity index 100% rename from src/static/icons/solid/map-pin.svg rename to apps/client/src/static/icons/solid/map-pin.svg diff --git a/src/static/icons/solid/map-signs.svg b/apps/client/src/static/icons/solid/map-signs.svg similarity index 100% rename from src/static/icons/solid/map-signs.svg rename to apps/client/src/static/icons/solid/map-signs.svg diff --git a/src/static/icons/solid/map.svg b/apps/client/src/static/icons/solid/map.svg similarity index 100% rename from src/static/icons/solid/map.svg rename to apps/client/src/static/icons/solid/map.svg diff --git a/src/static/icons/solid/marker.svg b/apps/client/src/static/icons/solid/marker.svg similarity index 100% rename from src/static/icons/solid/marker.svg rename to apps/client/src/static/icons/solid/marker.svg diff --git a/src/static/icons/solid/mars-double.svg b/apps/client/src/static/icons/solid/mars-double.svg similarity index 100% rename from src/static/icons/solid/mars-double.svg rename to apps/client/src/static/icons/solid/mars-double.svg diff --git a/src/static/icons/solid/mars-stroke-h.svg b/apps/client/src/static/icons/solid/mars-stroke-h.svg similarity index 100% rename from src/static/icons/solid/mars-stroke-h.svg rename to apps/client/src/static/icons/solid/mars-stroke-h.svg diff --git a/src/static/icons/solid/mars-stroke-v.svg b/apps/client/src/static/icons/solid/mars-stroke-v.svg similarity index 100% rename from src/static/icons/solid/mars-stroke-v.svg rename to apps/client/src/static/icons/solid/mars-stroke-v.svg diff --git a/src/static/icons/solid/mars-stroke.svg b/apps/client/src/static/icons/solid/mars-stroke.svg similarity index 100% rename from src/static/icons/solid/mars-stroke.svg rename to apps/client/src/static/icons/solid/mars-stroke.svg diff --git a/src/static/icons/solid/mars.svg b/apps/client/src/static/icons/solid/mars.svg similarity index 100% rename from src/static/icons/solid/mars.svg rename to apps/client/src/static/icons/solid/mars.svg diff --git a/src/static/icons/solid/mask.svg b/apps/client/src/static/icons/solid/mask.svg similarity index 100% rename from src/static/icons/solid/mask.svg rename to apps/client/src/static/icons/solid/mask.svg diff --git a/src/static/icons/solid/meat.svg b/apps/client/src/static/icons/solid/meat.svg similarity index 100% rename from src/static/icons/solid/meat.svg rename to apps/client/src/static/icons/solid/meat.svg diff --git a/src/static/icons/solid/medal.svg b/apps/client/src/static/icons/solid/medal.svg similarity index 100% rename from src/static/icons/solid/medal.svg rename to apps/client/src/static/icons/solid/medal.svg diff --git a/src/static/icons/solid/medkit.svg b/apps/client/src/static/icons/solid/medkit.svg similarity index 100% rename from src/static/icons/solid/medkit.svg rename to apps/client/src/static/icons/solid/medkit.svg diff --git a/src/static/icons/solid/megaphone.svg b/apps/client/src/static/icons/solid/megaphone.svg similarity index 100% rename from src/static/icons/solid/megaphone.svg rename to apps/client/src/static/icons/solid/megaphone.svg diff --git a/src/static/icons/solid/meh-blank.svg b/apps/client/src/static/icons/solid/meh-blank.svg similarity index 100% rename from src/static/icons/solid/meh-blank.svg rename to apps/client/src/static/icons/solid/meh-blank.svg diff --git a/src/static/icons/solid/meh-rolling-eyes.svg b/apps/client/src/static/icons/solid/meh-rolling-eyes.svg similarity index 100% rename from src/static/icons/solid/meh-rolling-eyes.svg rename to apps/client/src/static/icons/solid/meh-rolling-eyes.svg diff --git a/src/static/icons/solid/meh.svg b/apps/client/src/static/icons/solid/meh.svg similarity index 100% rename from src/static/icons/solid/meh.svg rename to apps/client/src/static/icons/solid/meh.svg diff --git a/src/static/icons/solid/memory.svg b/apps/client/src/static/icons/solid/memory.svg similarity index 100% rename from src/static/icons/solid/memory.svg rename to apps/client/src/static/icons/solid/memory.svg diff --git a/src/static/icons/solid/menorah.svg b/apps/client/src/static/icons/solid/menorah.svg similarity index 100% rename from src/static/icons/solid/menorah.svg rename to apps/client/src/static/icons/solid/menorah.svg diff --git a/src/static/icons/solid/mercury.svg b/apps/client/src/static/icons/solid/mercury.svg similarity index 100% rename from src/static/icons/solid/mercury.svg rename to apps/client/src/static/icons/solid/mercury.svg diff --git a/src/static/icons/solid/meteor.svg b/apps/client/src/static/icons/solid/meteor.svg similarity index 100% rename from src/static/icons/solid/meteor.svg rename to apps/client/src/static/icons/solid/meteor.svg diff --git a/src/static/icons/solid/microchip.svg b/apps/client/src/static/icons/solid/microchip.svg similarity index 100% rename from src/static/icons/solid/microchip.svg rename to apps/client/src/static/icons/solid/microchip.svg diff --git a/src/static/icons/solid/microphone-alt-slash.svg b/apps/client/src/static/icons/solid/microphone-alt-slash.svg similarity index 100% rename from src/static/icons/solid/microphone-alt-slash.svg rename to apps/client/src/static/icons/solid/microphone-alt-slash.svg diff --git a/src/static/icons/solid/microphone-alt.svg b/apps/client/src/static/icons/solid/microphone-alt.svg similarity index 100% rename from src/static/icons/solid/microphone-alt.svg rename to apps/client/src/static/icons/solid/microphone-alt.svg diff --git a/src/static/icons/solid/microphone-slash.svg b/apps/client/src/static/icons/solid/microphone-slash.svg similarity index 100% rename from src/static/icons/solid/microphone-slash.svg rename to apps/client/src/static/icons/solid/microphone-slash.svg diff --git a/src/static/icons/solid/microphone-stand.svg b/apps/client/src/static/icons/solid/microphone-stand.svg similarity index 100% rename from src/static/icons/solid/microphone-stand.svg rename to apps/client/src/static/icons/solid/microphone-stand.svg diff --git a/src/static/icons/solid/microphone.svg b/apps/client/src/static/icons/solid/microphone.svg similarity index 100% rename from src/static/icons/solid/microphone.svg rename to apps/client/src/static/icons/solid/microphone.svg diff --git a/src/static/icons/solid/microscope.svg b/apps/client/src/static/icons/solid/microscope.svg similarity index 100% rename from src/static/icons/solid/microscope.svg rename to apps/client/src/static/icons/solid/microscope.svg diff --git a/src/static/icons/solid/microwave.svg b/apps/client/src/static/icons/solid/microwave.svg similarity index 100% rename from src/static/icons/solid/microwave.svg rename to apps/client/src/static/icons/solid/microwave.svg diff --git a/src/static/icons/solid/mind-share.svg b/apps/client/src/static/icons/solid/mind-share.svg similarity index 100% rename from src/static/icons/solid/mind-share.svg rename to apps/client/src/static/icons/solid/mind-share.svg diff --git a/src/static/icons/solid/minus-circle.svg b/apps/client/src/static/icons/solid/minus-circle.svg similarity index 100% rename from src/static/icons/solid/minus-circle.svg rename to apps/client/src/static/icons/solid/minus-circle.svg diff --git a/src/static/icons/solid/minus-hexagon.svg b/apps/client/src/static/icons/solid/minus-hexagon.svg similarity index 100% rename from src/static/icons/solid/minus-hexagon.svg rename to apps/client/src/static/icons/solid/minus-hexagon.svg diff --git a/src/static/icons/solid/minus-octagon.svg b/apps/client/src/static/icons/solid/minus-octagon.svg similarity index 100% rename from src/static/icons/solid/minus-octagon.svg rename to apps/client/src/static/icons/solid/minus-octagon.svg diff --git a/src/static/icons/solid/minus-square.svg b/apps/client/src/static/icons/solid/minus-square.svg similarity index 100% rename from src/static/icons/solid/minus-square.svg rename to apps/client/src/static/icons/solid/minus-square.svg diff --git a/src/static/icons/solid/minus.svg b/apps/client/src/static/icons/solid/minus.svg similarity index 100% rename from src/static/icons/solid/minus.svg rename to apps/client/src/static/icons/solid/minus.svg diff --git a/src/static/icons/solid/mistletoe.svg b/apps/client/src/static/icons/solid/mistletoe.svg similarity index 100% rename from src/static/icons/solid/mistletoe.svg rename to apps/client/src/static/icons/solid/mistletoe.svg diff --git a/src/static/icons/solid/mitten.svg b/apps/client/src/static/icons/solid/mitten.svg similarity index 100% rename from src/static/icons/solid/mitten.svg rename to apps/client/src/static/icons/solid/mitten.svg diff --git a/src/static/icons/solid/mobile-alt.svg b/apps/client/src/static/icons/solid/mobile-alt.svg similarity index 100% rename from src/static/icons/solid/mobile-alt.svg rename to apps/client/src/static/icons/solid/mobile-alt.svg diff --git a/src/static/icons/solid/mobile-android-alt.svg b/apps/client/src/static/icons/solid/mobile-android-alt.svg similarity index 100% rename from src/static/icons/solid/mobile-android-alt.svg rename to apps/client/src/static/icons/solid/mobile-android-alt.svg diff --git a/src/static/icons/solid/mobile-android.svg b/apps/client/src/static/icons/solid/mobile-android.svg similarity index 100% rename from src/static/icons/solid/mobile-android.svg rename to apps/client/src/static/icons/solid/mobile-android.svg diff --git a/src/static/icons/solid/mobile.svg b/apps/client/src/static/icons/solid/mobile.svg similarity index 100% rename from src/static/icons/solid/mobile.svg rename to apps/client/src/static/icons/solid/mobile.svg diff --git a/src/static/icons/solid/money-bill-alt.svg b/apps/client/src/static/icons/solid/money-bill-alt.svg similarity index 100% rename from src/static/icons/solid/money-bill-alt.svg rename to apps/client/src/static/icons/solid/money-bill-alt.svg diff --git a/src/static/icons/solid/money-bill-wave-alt.svg b/apps/client/src/static/icons/solid/money-bill-wave-alt.svg similarity index 100% rename from src/static/icons/solid/money-bill-wave-alt.svg rename to apps/client/src/static/icons/solid/money-bill-wave-alt.svg diff --git a/src/static/icons/solid/money-bill-wave.svg b/apps/client/src/static/icons/solid/money-bill-wave.svg similarity index 100% rename from src/static/icons/solid/money-bill-wave.svg rename to apps/client/src/static/icons/solid/money-bill-wave.svg diff --git a/src/static/icons/solid/money-bill.svg b/apps/client/src/static/icons/solid/money-bill.svg similarity index 100% rename from src/static/icons/solid/money-bill.svg rename to apps/client/src/static/icons/solid/money-bill.svg diff --git a/src/static/icons/solid/money-check-alt.svg b/apps/client/src/static/icons/solid/money-check-alt.svg similarity index 100% rename from src/static/icons/solid/money-check-alt.svg rename to apps/client/src/static/icons/solid/money-check-alt.svg diff --git a/src/static/icons/solid/money-check-edit-alt.svg b/apps/client/src/static/icons/solid/money-check-edit-alt.svg similarity index 100% rename from src/static/icons/solid/money-check-edit-alt.svg rename to apps/client/src/static/icons/solid/money-check-edit-alt.svg diff --git a/src/static/icons/solid/money-check-edit.svg b/apps/client/src/static/icons/solid/money-check-edit.svg similarity index 100% rename from src/static/icons/solid/money-check-edit.svg rename to apps/client/src/static/icons/solid/money-check-edit.svg diff --git a/src/static/icons/solid/money-check.svg b/apps/client/src/static/icons/solid/money-check.svg similarity index 100% rename from src/static/icons/solid/money-check.svg rename to apps/client/src/static/icons/solid/money-check.svg diff --git a/src/static/icons/solid/monitor-heart-rate.svg b/apps/client/src/static/icons/solid/monitor-heart-rate.svg similarity index 100% rename from src/static/icons/solid/monitor-heart-rate.svg rename to apps/client/src/static/icons/solid/monitor-heart-rate.svg diff --git a/src/static/icons/solid/monkey.svg b/apps/client/src/static/icons/solid/monkey.svg similarity index 100% rename from src/static/icons/solid/monkey.svg rename to apps/client/src/static/icons/solid/monkey.svg diff --git a/src/static/icons/solid/monument.svg b/apps/client/src/static/icons/solid/monument.svg similarity index 100% rename from src/static/icons/solid/monument.svg rename to apps/client/src/static/icons/solid/monument.svg diff --git a/src/static/icons/solid/moon-cloud.svg b/apps/client/src/static/icons/solid/moon-cloud.svg similarity index 100% rename from src/static/icons/solid/moon-cloud.svg rename to apps/client/src/static/icons/solid/moon-cloud.svg diff --git a/src/static/icons/solid/moon-stars.svg b/apps/client/src/static/icons/solid/moon-stars.svg similarity index 100% rename from src/static/icons/solid/moon-stars.svg rename to apps/client/src/static/icons/solid/moon-stars.svg diff --git a/src/static/icons/solid/moon.svg b/apps/client/src/static/icons/solid/moon.svg similarity index 100% rename from src/static/icons/solid/moon.svg rename to apps/client/src/static/icons/solid/moon.svg diff --git a/src/static/icons/solid/mortar-pestle.svg b/apps/client/src/static/icons/solid/mortar-pestle.svg similarity index 100% rename from src/static/icons/solid/mortar-pestle.svg rename to apps/client/src/static/icons/solid/mortar-pestle.svg diff --git a/src/static/icons/solid/mosque.svg b/apps/client/src/static/icons/solid/mosque.svg similarity index 100% rename from src/static/icons/solid/mosque.svg rename to apps/client/src/static/icons/solid/mosque.svg diff --git a/src/static/icons/solid/motorcycle.svg b/apps/client/src/static/icons/solid/motorcycle.svg similarity index 100% rename from src/static/icons/solid/motorcycle.svg rename to apps/client/src/static/icons/solid/motorcycle.svg diff --git a/src/static/icons/solid/mountain.svg b/apps/client/src/static/icons/solid/mountain.svg similarity index 100% rename from src/static/icons/solid/mountain.svg rename to apps/client/src/static/icons/solid/mountain.svg diff --git a/src/static/icons/solid/mountains.svg b/apps/client/src/static/icons/solid/mountains.svg similarity index 100% rename from src/static/icons/solid/mountains.svg rename to apps/client/src/static/icons/solid/mountains.svg diff --git a/src/static/icons/solid/mouse-alt.svg b/apps/client/src/static/icons/solid/mouse-alt.svg similarity index 100% rename from src/static/icons/solid/mouse-alt.svg rename to apps/client/src/static/icons/solid/mouse-alt.svg diff --git a/src/static/icons/solid/mouse-pointer.svg b/apps/client/src/static/icons/solid/mouse-pointer.svg similarity index 100% rename from src/static/icons/solid/mouse-pointer.svg rename to apps/client/src/static/icons/solid/mouse-pointer.svg diff --git a/src/static/icons/solid/mouse.svg b/apps/client/src/static/icons/solid/mouse.svg similarity index 100% rename from src/static/icons/solid/mouse.svg rename to apps/client/src/static/icons/solid/mouse.svg diff --git a/src/static/icons/solid/mp3-player.svg b/apps/client/src/static/icons/solid/mp3-player.svg similarity index 100% rename from src/static/icons/solid/mp3-player.svg rename to apps/client/src/static/icons/solid/mp3-player.svg diff --git a/src/static/icons/solid/mug-hot.svg b/apps/client/src/static/icons/solid/mug-hot.svg similarity index 100% rename from src/static/icons/solid/mug-hot.svg rename to apps/client/src/static/icons/solid/mug-hot.svg diff --git a/src/static/icons/solid/mug-marshmallows.svg b/apps/client/src/static/icons/solid/mug-marshmallows.svg similarity index 100% rename from src/static/icons/solid/mug-marshmallows.svg rename to apps/client/src/static/icons/solid/mug-marshmallows.svg diff --git a/src/static/icons/solid/mug-tea.svg b/apps/client/src/static/icons/solid/mug-tea.svg similarity index 100% rename from src/static/icons/solid/mug-tea.svg rename to apps/client/src/static/icons/solid/mug-tea.svg diff --git a/src/static/icons/solid/mug.svg b/apps/client/src/static/icons/solid/mug.svg similarity index 100% rename from src/static/icons/solid/mug.svg rename to apps/client/src/static/icons/solid/mug.svg diff --git a/src/static/icons/solid/music-alt-slash.svg b/apps/client/src/static/icons/solid/music-alt-slash.svg similarity index 100% rename from src/static/icons/solid/music-alt-slash.svg rename to apps/client/src/static/icons/solid/music-alt-slash.svg diff --git a/src/static/icons/solid/music-alt.svg b/apps/client/src/static/icons/solid/music-alt.svg similarity index 100% rename from src/static/icons/solid/music-alt.svg rename to apps/client/src/static/icons/solid/music-alt.svg diff --git a/src/static/icons/solid/music-slash.svg b/apps/client/src/static/icons/solid/music-slash.svg similarity index 100% rename from src/static/icons/solid/music-slash.svg rename to apps/client/src/static/icons/solid/music-slash.svg diff --git a/src/static/icons/solid/music.svg b/apps/client/src/static/icons/solid/music.svg similarity index 100% rename from src/static/icons/solid/music.svg rename to apps/client/src/static/icons/solid/music.svg diff --git a/src/static/icons/solid/narwhal.svg b/apps/client/src/static/icons/solid/narwhal.svg similarity index 100% rename from src/static/icons/solid/narwhal.svg rename to apps/client/src/static/icons/solid/narwhal.svg diff --git a/src/static/icons/solid/network-wired.svg b/apps/client/src/static/icons/solid/network-wired.svg similarity index 100% rename from src/static/icons/solid/network-wired.svg rename to apps/client/src/static/icons/solid/network-wired.svg diff --git a/src/static/icons/solid/neuter.svg b/apps/client/src/static/icons/solid/neuter.svg similarity index 100% rename from src/static/icons/solid/neuter.svg rename to apps/client/src/static/icons/solid/neuter.svg diff --git a/src/static/icons/solid/newspaper.svg b/apps/client/src/static/icons/solid/newspaper.svg similarity index 100% rename from src/static/icons/solid/newspaper.svg rename to apps/client/src/static/icons/solid/newspaper.svg diff --git a/src/static/icons/solid/not-equal.svg b/apps/client/src/static/icons/solid/not-equal.svg similarity index 100% rename from src/static/icons/solid/not-equal.svg rename to apps/client/src/static/icons/solid/not-equal.svg diff --git a/src/static/icons/solid/notes-medical.svg b/apps/client/src/static/icons/solid/notes-medical.svg similarity index 100% rename from src/static/icons/solid/notes-medical.svg rename to apps/client/src/static/icons/solid/notes-medical.svg diff --git a/src/static/icons/solid/object-group.svg b/apps/client/src/static/icons/solid/object-group.svg similarity index 100% rename from src/static/icons/solid/object-group.svg rename to apps/client/src/static/icons/solid/object-group.svg diff --git a/src/static/icons/solid/object-ungroup.svg b/apps/client/src/static/icons/solid/object-ungroup.svg similarity index 100% rename from src/static/icons/solid/object-ungroup.svg rename to apps/client/src/static/icons/solid/object-ungroup.svg diff --git a/src/static/icons/solid/octagon.svg b/apps/client/src/static/icons/solid/octagon.svg similarity index 100% rename from src/static/icons/solid/octagon.svg rename to apps/client/src/static/icons/solid/octagon.svg diff --git a/src/static/icons/solid/oil-can.svg b/apps/client/src/static/icons/solid/oil-can.svg similarity index 100% rename from src/static/icons/solid/oil-can.svg rename to apps/client/src/static/icons/solid/oil-can.svg diff --git a/src/static/icons/solid/oil-temp.svg b/apps/client/src/static/icons/solid/oil-temp.svg similarity index 100% rename from src/static/icons/solid/oil-temp.svg rename to apps/client/src/static/icons/solid/oil-temp.svg diff --git a/src/static/icons/solid/om.svg b/apps/client/src/static/icons/solid/om.svg similarity index 100% rename from src/static/icons/solid/om.svg rename to apps/client/src/static/icons/solid/om.svg diff --git a/src/static/icons/solid/omega.svg b/apps/client/src/static/icons/solid/omega.svg similarity index 100% rename from src/static/icons/solid/omega.svg rename to apps/client/src/static/icons/solid/omega.svg diff --git a/src/static/icons/solid/ornament.svg b/apps/client/src/static/icons/solid/ornament.svg similarity index 100% rename from src/static/icons/solid/ornament.svg rename to apps/client/src/static/icons/solid/ornament.svg diff --git a/src/static/icons/solid/otter.svg b/apps/client/src/static/icons/solid/otter.svg similarity index 100% rename from src/static/icons/solid/otter.svg rename to apps/client/src/static/icons/solid/otter.svg diff --git a/src/static/icons/solid/outdent.svg b/apps/client/src/static/icons/solid/outdent.svg similarity index 100% rename from src/static/icons/solid/outdent.svg rename to apps/client/src/static/icons/solid/outdent.svg diff --git a/src/static/icons/solid/outlet.svg b/apps/client/src/static/icons/solid/outlet.svg similarity index 100% rename from src/static/icons/solid/outlet.svg rename to apps/client/src/static/icons/solid/outlet.svg diff --git a/src/static/icons/solid/oven.svg b/apps/client/src/static/icons/solid/oven.svg similarity index 100% rename from src/static/icons/solid/oven.svg rename to apps/client/src/static/icons/solid/oven.svg diff --git a/src/static/icons/solid/overline.svg b/apps/client/src/static/icons/solid/overline.svg similarity index 100% rename from src/static/icons/solid/overline.svg rename to apps/client/src/static/icons/solid/overline.svg diff --git a/src/static/icons/solid/page-break.svg b/apps/client/src/static/icons/solid/page-break.svg similarity index 100% rename from src/static/icons/solid/page-break.svg rename to apps/client/src/static/icons/solid/page-break.svg diff --git a/src/static/icons/solid/pager.svg b/apps/client/src/static/icons/solid/pager.svg similarity index 100% rename from src/static/icons/solid/pager.svg rename to apps/client/src/static/icons/solid/pager.svg diff --git a/src/static/icons/solid/paint-brush-alt.svg b/apps/client/src/static/icons/solid/paint-brush-alt.svg similarity index 100% rename from src/static/icons/solid/paint-brush-alt.svg rename to apps/client/src/static/icons/solid/paint-brush-alt.svg diff --git a/src/static/icons/solid/paint-brush.svg b/apps/client/src/static/icons/solid/paint-brush.svg similarity index 100% rename from src/static/icons/solid/paint-brush.svg rename to apps/client/src/static/icons/solid/paint-brush.svg diff --git a/src/static/icons/solid/paint-roller.svg b/apps/client/src/static/icons/solid/paint-roller.svg similarity index 100% rename from src/static/icons/solid/paint-roller.svg rename to apps/client/src/static/icons/solid/paint-roller.svg diff --git a/src/static/icons/solid/palette.svg b/apps/client/src/static/icons/solid/palette.svg similarity index 100% rename from src/static/icons/solid/palette.svg rename to apps/client/src/static/icons/solid/palette.svg diff --git a/src/static/icons/solid/pallet-alt.svg b/apps/client/src/static/icons/solid/pallet-alt.svg similarity index 100% rename from src/static/icons/solid/pallet-alt.svg rename to apps/client/src/static/icons/solid/pallet-alt.svg diff --git a/src/static/icons/solid/pallet.svg b/apps/client/src/static/icons/solid/pallet.svg similarity index 100% rename from src/static/icons/solid/pallet.svg rename to apps/client/src/static/icons/solid/pallet.svg diff --git a/src/static/icons/solid/paper-plane.svg b/apps/client/src/static/icons/solid/paper-plane.svg similarity index 100% rename from src/static/icons/solid/paper-plane.svg rename to apps/client/src/static/icons/solid/paper-plane.svg diff --git a/src/static/icons/solid/paperclip.svg b/apps/client/src/static/icons/solid/paperclip.svg similarity index 100% rename from src/static/icons/solid/paperclip.svg rename to apps/client/src/static/icons/solid/paperclip.svg diff --git a/src/static/icons/solid/parachute-box.svg b/apps/client/src/static/icons/solid/parachute-box.svg similarity index 100% rename from src/static/icons/solid/parachute-box.svg rename to apps/client/src/static/icons/solid/parachute-box.svg diff --git a/src/static/icons/solid/paragraph-rtl.svg b/apps/client/src/static/icons/solid/paragraph-rtl.svg similarity index 100% rename from src/static/icons/solid/paragraph-rtl.svg rename to apps/client/src/static/icons/solid/paragraph-rtl.svg diff --git a/src/static/icons/solid/paragraph.svg b/apps/client/src/static/icons/solid/paragraph.svg similarity index 100% rename from src/static/icons/solid/paragraph.svg rename to apps/client/src/static/icons/solid/paragraph.svg diff --git a/src/static/icons/solid/parking-circle-slash.svg b/apps/client/src/static/icons/solid/parking-circle-slash.svg similarity index 100% rename from src/static/icons/solid/parking-circle-slash.svg rename to apps/client/src/static/icons/solid/parking-circle-slash.svg diff --git a/src/static/icons/solid/parking-circle.svg b/apps/client/src/static/icons/solid/parking-circle.svg similarity index 100% rename from src/static/icons/solid/parking-circle.svg rename to apps/client/src/static/icons/solid/parking-circle.svg diff --git a/src/static/icons/solid/parking-slash.svg b/apps/client/src/static/icons/solid/parking-slash.svg similarity index 100% rename from src/static/icons/solid/parking-slash.svg rename to apps/client/src/static/icons/solid/parking-slash.svg diff --git a/src/static/icons/solid/parking.svg b/apps/client/src/static/icons/solid/parking.svg similarity index 100% rename from src/static/icons/solid/parking.svg rename to apps/client/src/static/icons/solid/parking.svg diff --git a/src/static/icons/solid/passport.svg b/apps/client/src/static/icons/solid/passport.svg similarity index 100% rename from src/static/icons/solid/passport.svg rename to apps/client/src/static/icons/solid/passport.svg diff --git a/src/static/icons/solid/pastafarianism.svg b/apps/client/src/static/icons/solid/pastafarianism.svg similarity index 100% rename from src/static/icons/solid/pastafarianism.svg rename to apps/client/src/static/icons/solid/pastafarianism.svg diff --git a/src/static/icons/solid/paste.svg b/apps/client/src/static/icons/solid/paste.svg similarity index 100% rename from src/static/icons/solid/paste.svg rename to apps/client/src/static/icons/solid/paste.svg diff --git a/src/static/icons/solid/pause-circle.svg b/apps/client/src/static/icons/solid/pause-circle.svg similarity index 100% rename from src/static/icons/solid/pause-circle.svg rename to apps/client/src/static/icons/solid/pause-circle.svg diff --git a/src/static/icons/solid/pause.svg b/apps/client/src/static/icons/solid/pause.svg similarity index 100% rename from src/static/icons/solid/pause.svg rename to apps/client/src/static/icons/solid/pause.svg diff --git a/src/static/icons/solid/paw-alt.svg b/apps/client/src/static/icons/solid/paw-alt.svg similarity index 100% rename from src/static/icons/solid/paw-alt.svg rename to apps/client/src/static/icons/solid/paw-alt.svg diff --git a/src/static/icons/solid/paw-claws.svg b/apps/client/src/static/icons/solid/paw-claws.svg similarity index 100% rename from src/static/icons/solid/paw-claws.svg rename to apps/client/src/static/icons/solid/paw-claws.svg diff --git a/src/static/icons/solid/paw.svg b/apps/client/src/static/icons/solid/paw.svg similarity index 100% rename from src/static/icons/solid/paw.svg rename to apps/client/src/static/icons/solid/paw.svg diff --git a/src/static/icons/solid/peace.svg b/apps/client/src/static/icons/solid/peace.svg similarity index 100% rename from src/static/icons/solid/peace.svg rename to apps/client/src/static/icons/solid/peace.svg diff --git a/src/static/icons/solid/pegasus.svg b/apps/client/src/static/icons/solid/pegasus.svg similarity index 100% rename from src/static/icons/solid/pegasus.svg rename to apps/client/src/static/icons/solid/pegasus.svg diff --git a/src/static/icons/solid/pen-alt.svg b/apps/client/src/static/icons/solid/pen-alt.svg similarity index 100% rename from src/static/icons/solid/pen-alt.svg rename to apps/client/src/static/icons/solid/pen-alt.svg diff --git a/src/static/icons/solid/pen-fancy.svg b/apps/client/src/static/icons/solid/pen-fancy.svg similarity index 100% rename from src/static/icons/solid/pen-fancy.svg rename to apps/client/src/static/icons/solid/pen-fancy.svg diff --git a/src/static/icons/solid/pen-nib.svg b/apps/client/src/static/icons/solid/pen-nib.svg similarity index 100% rename from src/static/icons/solid/pen-nib.svg rename to apps/client/src/static/icons/solid/pen-nib.svg diff --git a/src/static/icons/solid/pen-square.svg b/apps/client/src/static/icons/solid/pen-square.svg similarity index 100% rename from src/static/icons/solid/pen-square.svg rename to apps/client/src/static/icons/solid/pen-square.svg diff --git a/src/static/icons/solid/pen.svg b/apps/client/src/static/icons/solid/pen.svg similarity index 100% rename from src/static/icons/solid/pen.svg rename to apps/client/src/static/icons/solid/pen.svg diff --git a/src/static/icons/solid/pencil-alt.svg b/apps/client/src/static/icons/solid/pencil-alt.svg similarity index 100% rename from src/static/icons/solid/pencil-alt.svg rename to apps/client/src/static/icons/solid/pencil-alt.svg diff --git a/src/static/icons/solid/pencil-paintbrush.svg b/apps/client/src/static/icons/solid/pencil-paintbrush.svg similarity index 100% rename from src/static/icons/solid/pencil-paintbrush.svg rename to apps/client/src/static/icons/solid/pencil-paintbrush.svg diff --git a/src/static/icons/solid/pencil-ruler.svg b/apps/client/src/static/icons/solid/pencil-ruler.svg similarity index 100% rename from src/static/icons/solid/pencil-ruler.svg rename to apps/client/src/static/icons/solid/pencil-ruler.svg diff --git a/src/static/icons/solid/pencil.svg b/apps/client/src/static/icons/solid/pencil.svg similarity index 100% rename from src/static/icons/solid/pencil.svg rename to apps/client/src/static/icons/solid/pencil.svg diff --git a/src/static/icons/solid/pennant.svg b/apps/client/src/static/icons/solid/pennant.svg similarity index 100% rename from src/static/icons/solid/pennant.svg rename to apps/client/src/static/icons/solid/pennant.svg diff --git a/src/static/icons/solid/people-carry.svg b/apps/client/src/static/icons/solid/people-carry.svg similarity index 100% rename from src/static/icons/solid/people-carry.svg rename to apps/client/src/static/icons/solid/people-carry.svg diff --git a/src/static/icons/solid/pepper-hot.svg b/apps/client/src/static/icons/solid/pepper-hot.svg similarity index 100% rename from src/static/icons/solid/pepper-hot.svg rename to apps/client/src/static/icons/solid/pepper-hot.svg diff --git a/src/static/icons/solid/percent.svg b/apps/client/src/static/icons/solid/percent.svg similarity index 100% rename from src/static/icons/solid/percent.svg rename to apps/client/src/static/icons/solid/percent.svg diff --git a/src/static/icons/solid/percentage.svg b/apps/client/src/static/icons/solid/percentage.svg similarity index 100% rename from src/static/icons/solid/percentage.svg rename to apps/client/src/static/icons/solid/percentage.svg diff --git a/src/static/icons/solid/person-booth.svg b/apps/client/src/static/icons/solid/person-booth.svg similarity index 100% rename from src/static/icons/solid/person-booth.svg rename to apps/client/src/static/icons/solid/person-booth.svg diff --git a/src/static/icons/solid/person-carry.svg b/apps/client/src/static/icons/solid/person-carry.svg similarity index 100% rename from src/static/icons/solid/person-carry.svg rename to apps/client/src/static/icons/solid/person-carry.svg diff --git a/src/static/icons/solid/person-dolly-empty.svg b/apps/client/src/static/icons/solid/person-dolly-empty.svg similarity index 100% rename from src/static/icons/solid/person-dolly-empty.svg rename to apps/client/src/static/icons/solid/person-dolly-empty.svg diff --git a/src/static/icons/solid/person-dolly.svg b/apps/client/src/static/icons/solid/person-dolly.svg similarity index 100% rename from src/static/icons/solid/person-dolly.svg rename to apps/client/src/static/icons/solid/person-dolly.svg diff --git a/src/static/icons/solid/person-sign.svg b/apps/client/src/static/icons/solid/person-sign.svg similarity index 100% rename from src/static/icons/solid/person-sign.svg rename to apps/client/src/static/icons/solid/person-sign.svg diff --git a/src/static/icons/solid/phone-alt.svg b/apps/client/src/static/icons/solid/phone-alt.svg similarity index 100% rename from src/static/icons/solid/phone-alt.svg rename to apps/client/src/static/icons/solid/phone-alt.svg diff --git a/src/static/icons/solid/phone-laptop.svg b/apps/client/src/static/icons/solid/phone-laptop.svg similarity index 100% rename from src/static/icons/solid/phone-laptop.svg rename to apps/client/src/static/icons/solid/phone-laptop.svg diff --git a/src/static/icons/solid/phone-office.svg b/apps/client/src/static/icons/solid/phone-office.svg similarity index 100% rename from src/static/icons/solid/phone-office.svg rename to apps/client/src/static/icons/solid/phone-office.svg diff --git a/src/static/icons/solid/phone-plus.svg b/apps/client/src/static/icons/solid/phone-plus.svg similarity index 100% rename from src/static/icons/solid/phone-plus.svg rename to apps/client/src/static/icons/solid/phone-plus.svg diff --git a/src/static/icons/solid/phone-rotary.svg b/apps/client/src/static/icons/solid/phone-rotary.svg similarity index 100% rename from src/static/icons/solid/phone-rotary.svg rename to apps/client/src/static/icons/solid/phone-rotary.svg diff --git a/src/static/icons/solid/phone-slash.svg b/apps/client/src/static/icons/solid/phone-slash.svg similarity index 100% rename from src/static/icons/solid/phone-slash.svg rename to apps/client/src/static/icons/solid/phone-slash.svg diff --git a/src/static/icons/solid/phone-square-alt.svg b/apps/client/src/static/icons/solid/phone-square-alt.svg similarity index 100% rename from src/static/icons/solid/phone-square-alt.svg rename to apps/client/src/static/icons/solid/phone-square-alt.svg diff --git a/src/static/icons/solid/phone-square.svg b/apps/client/src/static/icons/solid/phone-square.svg similarity index 100% rename from src/static/icons/solid/phone-square.svg rename to apps/client/src/static/icons/solid/phone-square.svg diff --git a/src/static/icons/solid/phone-volume.svg b/apps/client/src/static/icons/solid/phone-volume.svg similarity index 100% rename from src/static/icons/solid/phone-volume.svg rename to apps/client/src/static/icons/solid/phone-volume.svg diff --git a/src/static/icons/solid/phone.svg b/apps/client/src/static/icons/solid/phone.svg similarity index 100% rename from src/static/icons/solid/phone.svg rename to apps/client/src/static/icons/solid/phone.svg diff --git a/src/static/icons/solid/photo-video.svg b/apps/client/src/static/icons/solid/photo-video.svg similarity index 100% rename from src/static/icons/solid/photo-video.svg rename to apps/client/src/static/icons/solid/photo-video.svg diff --git a/src/static/icons/solid/pi.svg b/apps/client/src/static/icons/solid/pi.svg similarity index 100% rename from src/static/icons/solid/pi.svg rename to apps/client/src/static/icons/solid/pi.svg diff --git a/src/static/icons/solid/piano-keyboard.svg b/apps/client/src/static/icons/solid/piano-keyboard.svg similarity index 100% rename from src/static/icons/solid/piano-keyboard.svg rename to apps/client/src/static/icons/solid/piano-keyboard.svg diff --git a/src/static/icons/solid/piano.svg b/apps/client/src/static/icons/solid/piano.svg similarity index 100% rename from src/static/icons/solid/piano.svg rename to apps/client/src/static/icons/solid/piano.svg diff --git a/src/static/icons/solid/pie.svg b/apps/client/src/static/icons/solid/pie.svg similarity index 100% rename from src/static/icons/solid/pie.svg rename to apps/client/src/static/icons/solid/pie.svg diff --git a/src/static/icons/solid/pig.svg b/apps/client/src/static/icons/solid/pig.svg similarity index 100% rename from src/static/icons/solid/pig.svg rename to apps/client/src/static/icons/solid/pig.svg diff --git a/src/static/icons/solid/piggy-bank.svg b/apps/client/src/static/icons/solid/piggy-bank.svg similarity index 100% rename from src/static/icons/solid/piggy-bank.svg rename to apps/client/src/static/icons/solid/piggy-bank.svg diff --git a/src/static/icons/solid/pills.svg b/apps/client/src/static/icons/solid/pills.svg similarity index 100% rename from src/static/icons/solid/pills.svg rename to apps/client/src/static/icons/solid/pills.svg diff --git a/src/static/icons/solid/pizza-slice.svg b/apps/client/src/static/icons/solid/pizza-slice.svg similarity index 100% rename from src/static/icons/solid/pizza-slice.svg rename to apps/client/src/static/icons/solid/pizza-slice.svg diff --git a/src/static/icons/solid/pizza.svg b/apps/client/src/static/icons/solid/pizza.svg similarity index 100% rename from src/static/icons/solid/pizza.svg rename to apps/client/src/static/icons/solid/pizza.svg diff --git a/src/static/icons/solid/place-of-worship.svg b/apps/client/src/static/icons/solid/place-of-worship.svg similarity index 100% rename from src/static/icons/solid/place-of-worship.svg rename to apps/client/src/static/icons/solid/place-of-worship.svg diff --git a/src/static/icons/solid/plane-alt.svg b/apps/client/src/static/icons/solid/plane-alt.svg similarity index 100% rename from src/static/icons/solid/plane-alt.svg rename to apps/client/src/static/icons/solid/plane-alt.svg diff --git a/src/static/icons/solid/plane-arrival.svg b/apps/client/src/static/icons/solid/plane-arrival.svg similarity index 100% rename from src/static/icons/solid/plane-arrival.svg rename to apps/client/src/static/icons/solid/plane-arrival.svg diff --git a/src/static/icons/solid/plane-departure.svg b/apps/client/src/static/icons/solid/plane-departure.svg similarity index 100% rename from src/static/icons/solid/plane-departure.svg rename to apps/client/src/static/icons/solid/plane-departure.svg diff --git a/src/static/icons/solid/plane.svg b/apps/client/src/static/icons/solid/plane.svg similarity index 100% rename from src/static/icons/solid/plane.svg rename to apps/client/src/static/icons/solid/plane.svg diff --git a/src/static/icons/solid/planet-moon.svg b/apps/client/src/static/icons/solid/planet-moon.svg similarity index 100% rename from src/static/icons/solid/planet-moon.svg rename to apps/client/src/static/icons/solid/planet-moon.svg diff --git a/src/static/icons/solid/planet-ringed.svg b/apps/client/src/static/icons/solid/planet-ringed.svg similarity index 100% rename from src/static/icons/solid/planet-ringed.svg rename to apps/client/src/static/icons/solid/planet-ringed.svg diff --git a/src/static/icons/solid/play-circle.svg b/apps/client/src/static/icons/solid/play-circle.svg similarity index 100% rename from src/static/icons/solid/play-circle.svg rename to apps/client/src/static/icons/solid/play-circle.svg diff --git a/src/static/icons/solid/play.svg b/apps/client/src/static/icons/solid/play.svg similarity index 100% rename from src/static/icons/solid/play.svg rename to apps/client/src/static/icons/solid/play.svg diff --git a/src/static/icons/solid/plug.svg b/apps/client/src/static/icons/solid/plug.svg similarity index 100% rename from src/static/icons/solid/plug.svg rename to apps/client/src/static/icons/solid/plug.svg diff --git a/src/static/icons/solid/plus-circle.svg b/apps/client/src/static/icons/solid/plus-circle.svg similarity index 100% rename from src/static/icons/solid/plus-circle.svg rename to apps/client/src/static/icons/solid/plus-circle.svg diff --git a/src/static/icons/solid/plus-hexagon.svg b/apps/client/src/static/icons/solid/plus-hexagon.svg similarity index 100% rename from src/static/icons/solid/plus-hexagon.svg rename to apps/client/src/static/icons/solid/plus-hexagon.svg diff --git a/src/static/icons/solid/plus-octagon.svg b/apps/client/src/static/icons/solid/plus-octagon.svg similarity index 100% rename from src/static/icons/solid/plus-octagon.svg rename to apps/client/src/static/icons/solid/plus-octagon.svg diff --git a/src/static/icons/solid/plus-square.svg b/apps/client/src/static/icons/solid/plus-square.svg similarity index 100% rename from src/static/icons/solid/plus-square.svg rename to apps/client/src/static/icons/solid/plus-square.svg diff --git a/src/static/icons/solid/plus.svg b/apps/client/src/static/icons/solid/plus.svg similarity index 100% rename from src/static/icons/solid/plus.svg rename to apps/client/src/static/icons/solid/plus.svg diff --git a/src/static/icons/solid/podcast.svg b/apps/client/src/static/icons/solid/podcast.svg similarity index 100% rename from src/static/icons/solid/podcast.svg rename to apps/client/src/static/icons/solid/podcast.svg diff --git a/src/static/icons/solid/podium-star.svg b/apps/client/src/static/icons/solid/podium-star.svg similarity index 100% rename from src/static/icons/solid/podium-star.svg rename to apps/client/src/static/icons/solid/podium-star.svg diff --git a/src/static/icons/solid/podium.svg b/apps/client/src/static/icons/solid/podium.svg similarity index 100% rename from src/static/icons/solid/podium.svg rename to apps/client/src/static/icons/solid/podium.svg diff --git a/src/static/icons/solid/police-box.svg b/apps/client/src/static/icons/solid/police-box.svg similarity index 100% rename from src/static/icons/solid/police-box.svg rename to apps/client/src/static/icons/solid/police-box.svg diff --git a/src/static/icons/solid/poll-h.svg b/apps/client/src/static/icons/solid/poll-h.svg similarity index 100% rename from src/static/icons/solid/poll-h.svg rename to apps/client/src/static/icons/solid/poll-h.svg diff --git a/src/static/icons/solid/poll-people.svg b/apps/client/src/static/icons/solid/poll-people.svg similarity index 100% rename from src/static/icons/solid/poll-people.svg rename to apps/client/src/static/icons/solid/poll-people.svg diff --git a/src/static/icons/solid/poll.svg b/apps/client/src/static/icons/solid/poll.svg similarity index 100% rename from src/static/icons/solid/poll.svg rename to apps/client/src/static/icons/solid/poll.svg diff --git a/src/static/icons/solid/poo-storm.svg b/apps/client/src/static/icons/solid/poo-storm.svg similarity index 100% rename from src/static/icons/solid/poo-storm.svg rename to apps/client/src/static/icons/solid/poo-storm.svg diff --git a/src/static/icons/solid/poo.svg b/apps/client/src/static/icons/solid/poo.svg similarity index 100% rename from src/static/icons/solid/poo.svg rename to apps/client/src/static/icons/solid/poo.svg diff --git a/src/static/icons/solid/poop.svg b/apps/client/src/static/icons/solid/poop.svg similarity index 100% rename from src/static/icons/solid/poop.svg rename to apps/client/src/static/icons/solid/poop.svg diff --git a/src/static/icons/solid/popcorn.svg b/apps/client/src/static/icons/solid/popcorn.svg similarity index 100% rename from src/static/icons/solid/popcorn.svg rename to apps/client/src/static/icons/solid/popcorn.svg diff --git a/src/static/icons/solid/portal-enter.svg b/apps/client/src/static/icons/solid/portal-enter.svg similarity index 100% rename from src/static/icons/solid/portal-enter.svg rename to apps/client/src/static/icons/solid/portal-enter.svg diff --git a/src/static/icons/solid/portal-exit.svg b/apps/client/src/static/icons/solid/portal-exit.svg similarity index 100% rename from src/static/icons/solid/portal-exit.svg rename to apps/client/src/static/icons/solid/portal-exit.svg diff --git a/src/static/icons/solid/portrait.svg b/apps/client/src/static/icons/solid/portrait.svg similarity index 100% rename from src/static/icons/solid/portrait.svg rename to apps/client/src/static/icons/solid/portrait.svg diff --git a/src/static/icons/solid/pound-sign.svg b/apps/client/src/static/icons/solid/pound-sign.svg similarity index 100% rename from src/static/icons/solid/pound-sign.svg rename to apps/client/src/static/icons/solid/pound-sign.svg diff --git a/src/static/icons/solid/power-off.svg b/apps/client/src/static/icons/solid/power-off.svg similarity index 100% rename from src/static/icons/solid/power-off.svg rename to apps/client/src/static/icons/solid/power-off.svg diff --git a/src/static/icons/solid/pray.svg b/apps/client/src/static/icons/solid/pray.svg similarity index 100% rename from src/static/icons/solid/pray.svg rename to apps/client/src/static/icons/solid/pray.svg diff --git a/src/static/icons/solid/praying-hands.svg b/apps/client/src/static/icons/solid/praying-hands.svg similarity index 100% rename from src/static/icons/solid/praying-hands.svg rename to apps/client/src/static/icons/solid/praying-hands.svg diff --git a/src/static/icons/solid/prescription-bottle-alt.svg b/apps/client/src/static/icons/solid/prescription-bottle-alt.svg similarity index 100% rename from src/static/icons/solid/prescription-bottle-alt.svg rename to apps/client/src/static/icons/solid/prescription-bottle-alt.svg diff --git a/src/static/icons/solid/prescription-bottle.svg b/apps/client/src/static/icons/solid/prescription-bottle.svg similarity index 100% rename from src/static/icons/solid/prescription-bottle.svg rename to apps/client/src/static/icons/solid/prescription-bottle.svg diff --git a/src/static/icons/solid/prescription.svg b/apps/client/src/static/icons/solid/prescription.svg similarity index 100% rename from src/static/icons/solid/prescription.svg rename to apps/client/src/static/icons/solid/prescription.svg diff --git a/src/static/icons/solid/presentation.svg b/apps/client/src/static/icons/solid/presentation.svg similarity index 100% rename from src/static/icons/solid/presentation.svg rename to apps/client/src/static/icons/solid/presentation.svg diff --git a/src/static/icons/solid/print-search.svg b/apps/client/src/static/icons/solid/print-search.svg similarity index 100% rename from src/static/icons/solid/print-search.svg rename to apps/client/src/static/icons/solid/print-search.svg diff --git a/src/static/icons/solid/print-slash.svg b/apps/client/src/static/icons/solid/print-slash.svg similarity index 100% rename from src/static/icons/solid/print-slash.svg rename to apps/client/src/static/icons/solid/print-slash.svg diff --git a/src/static/icons/solid/print.svg b/apps/client/src/static/icons/solid/print.svg similarity index 100% rename from src/static/icons/solid/print.svg rename to apps/client/src/static/icons/solid/print.svg diff --git a/src/static/icons/solid/procedures.svg b/apps/client/src/static/icons/solid/procedures.svg similarity index 100% rename from src/static/icons/solid/procedures.svg rename to apps/client/src/static/icons/solid/procedures.svg diff --git a/src/static/icons/solid/project-diagram.svg b/apps/client/src/static/icons/solid/project-diagram.svg similarity index 100% rename from src/static/icons/solid/project-diagram.svg rename to apps/client/src/static/icons/solid/project-diagram.svg diff --git a/src/static/icons/solid/projector.svg b/apps/client/src/static/icons/solid/projector.svg similarity index 100% rename from src/static/icons/solid/projector.svg rename to apps/client/src/static/icons/solid/projector.svg diff --git a/src/static/icons/solid/pumpkin.svg b/apps/client/src/static/icons/solid/pumpkin.svg similarity index 100% rename from src/static/icons/solid/pumpkin.svg rename to apps/client/src/static/icons/solid/pumpkin.svg diff --git a/src/static/icons/solid/puzzle-piece.svg b/apps/client/src/static/icons/solid/puzzle-piece.svg similarity index 100% rename from src/static/icons/solid/puzzle-piece.svg rename to apps/client/src/static/icons/solid/puzzle-piece.svg diff --git a/src/static/icons/solid/qrcode.svg b/apps/client/src/static/icons/solid/qrcode.svg similarity index 100% rename from src/static/icons/solid/qrcode.svg rename to apps/client/src/static/icons/solid/qrcode.svg diff --git a/src/static/icons/solid/question-circle.svg b/apps/client/src/static/icons/solid/question-circle.svg similarity index 100% rename from src/static/icons/solid/question-circle.svg rename to apps/client/src/static/icons/solid/question-circle.svg diff --git a/src/static/icons/solid/question-square.svg b/apps/client/src/static/icons/solid/question-square.svg similarity index 100% rename from src/static/icons/solid/question-square.svg rename to apps/client/src/static/icons/solid/question-square.svg diff --git a/src/static/icons/solid/question.svg b/apps/client/src/static/icons/solid/question.svg similarity index 100% rename from src/static/icons/solid/question.svg rename to apps/client/src/static/icons/solid/question.svg diff --git a/src/static/icons/solid/quidditch.svg b/apps/client/src/static/icons/solid/quidditch.svg similarity index 100% rename from src/static/icons/solid/quidditch.svg rename to apps/client/src/static/icons/solid/quidditch.svg diff --git a/src/static/icons/solid/quote-left.svg b/apps/client/src/static/icons/solid/quote-left.svg similarity index 100% rename from src/static/icons/solid/quote-left.svg rename to apps/client/src/static/icons/solid/quote-left.svg diff --git a/src/static/icons/solid/quote-right.svg b/apps/client/src/static/icons/solid/quote-right.svg similarity index 100% rename from src/static/icons/solid/quote-right.svg rename to apps/client/src/static/icons/solid/quote-right.svg diff --git a/src/static/icons/solid/quran.svg b/apps/client/src/static/icons/solid/quran.svg similarity index 100% rename from src/static/icons/solid/quran.svg rename to apps/client/src/static/icons/solid/quran.svg diff --git a/src/static/icons/solid/rabbit-fast.svg b/apps/client/src/static/icons/solid/rabbit-fast.svg similarity index 100% rename from src/static/icons/solid/rabbit-fast.svg rename to apps/client/src/static/icons/solid/rabbit-fast.svg diff --git a/src/static/icons/solid/rabbit.svg b/apps/client/src/static/icons/solid/rabbit.svg similarity index 100% rename from src/static/icons/solid/rabbit.svg rename to apps/client/src/static/icons/solid/rabbit.svg diff --git a/src/static/icons/solid/racquet.svg b/apps/client/src/static/icons/solid/racquet.svg similarity index 100% rename from src/static/icons/solid/racquet.svg rename to apps/client/src/static/icons/solid/racquet.svg diff --git a/src/static/icons/solid/radar.svg b/apps/client/src/static/icons/solid/radar.svg similarity index 100% rename from src/static/icons/solid/radar.svg rename to apps/client/src/static/icons/solid/radar.svg diff --git a/src/static/icons/solid/radiation-alt.svg b/apps/client/src/static/icons/solid/radiation-alt.svg similarity index 100% rename from src/static/icons/solid/radiation-alt.svg rename to apps/client/src/static/icons/solid/radiation-alt.svg diff --git a/src/static/icons/solid/radiation.svg b/apps/client/src/static/icons/solid/radiation.svg similarity index 100% rename from src/static/icons/solid/radiation.svg rename to apps/client/src/static/icons/solid/radiation.svg diff --git a/src/static/icons/solid/radio-alt.svg b/apps/client/src/static/icons/solid/radio-alt.svg similarity index 100% rename from src/static/icons/solid/radio-alt.svg rename to apps/client/src/static/icons/solid/radio-alt.svg diff --git a/src/static/icons/solid/radio.svg b/apps/client/src/static/icons/solid/radio.svg similarity index 100% rename from src/static/icons/solid/radio.svg rename to apps/client/src/static/icons/solid/radio.svg diff --git a/src/static/icons/solid/rainbow.svg b/apps/client/src/static/icons/solid/rainbow.svg similarity index 100% rename from src/static/icons/solid/rainbow.svg rename to apps/client/src/static/icons/solid/rainbow.svg diff --git a/src/static/icons/solid/raindrops.svg b/apps/client/src/static/icons/solid/raindrops.svg similarity index 100% rename from src/static/icons/solid/raindrops.svg rename to apps/client/src/static/icons/solid/raindrops.svg diff --git a/src/static/icons/solid/ram.svg b/apps/client/src/static/icons/solid/ram.svg similarity index 100% rename from src/static/icons/solid/ram.svg rename to apps/client/src/static/icons/solid/ram.svg diff --git a/src/static/icons/solid/ramp-loading.svg b/apps/client/src/static/icons/solid/ramp-loading.svg similarity index 100% rename from src/static/icons/solid/ramp-loading.svg rename to apps/client/src/static/icons/solid/ramp-loading.svg diff --git a/src/static/icons/solid/random.svg b/apps/client/src/static/icons/solid/random.svg similarity index 100% rename from src/static/icons/solid/random.svg rename to apps/client/src/static/icons/solid/random.svg diff --git a/src/static/icons/solid/raygun.svg b/apps/client/src/static/icons/solid/raygun.svg similarity index 100% rename from src/static/icons/solid/raygun.svg rename to apps/client/src/static/icons/solid/raygun.svg diff --git a/src/static/icons/solid/receipt.svg b/apps/client/src/static/icons/solid/receipt.svg similarity index 100% rename from src/static/icons/solid/receipt.svg rename to apps/client/src/static/icons/solid/receipt.svg diff --git a/src/static/icons/solid/record-vinyl.svg b/apps/client/src/static/icons/solid/record-vinyl.svg similarity index 100% rename from src/static/icons/solid/record-vinyl.svg rename to apps/client/src/static/icons/solid/record-vinyl.svg diff --git a/src/static/icons/solid/rectangle-landscape.svg b/apps/client/src/static/icons/solid/rectangle-landscape.svg similarity index 100% rename from src/static/icons/solid/rectangle-landscape.svg rename to apps/client/src/static/icons/solid/rectangle-landscape.svg diff --git a/src/static/icons/solid/rectangle-portrait.svg b/apps/client/src/static/icons/solid/rectangle-portrait.svg similarity index 100% rename from src/static/icons/solid/rectangle-portrait.svg rename to apps/client/src/static/icons/solid/rectangle-portrait.svg diff --git a/src/static/icons/solid/rectangle-wide.svg b/apps/client/src/static/icons/solid/rectangle-wide.svg similarity index 100% rename from src/static/icons/solid/rectangle-wide.svg rename to apps/client/src/static/icons/solid/rectangle-wide.svg diff --git a/src/static/icons/solid/recycle.svg b/apps/client/src/static/icons/solid/recycle.svg similarity index 100% rename from src/static/icons/solid/recycle.svg rename to apps/client/src/static/icons/solid/recycle.svg diff --git a/src/static/icons/solid/redo-alt.svg b/apps/client/src/static/icons/solid/redo-alt.svg similarity index 100% rename from src/static/icons/solid/redo-alt.svg rename to apps/client/src/static/icons/solid/redo-alt.svg diff --git a/src/static/icons/solid/redo.svg b/apps/client/src/static/icons/solid/redo.svg similarity index 100% rename from src/static/icons/solid/redo.svg rename to apps/client/src/static/icons/solid/redo.svg diff --git a/src/static/icons/solid/refrigerator.svg b/apps/client/src/static/icons/solid/refrigerator.svg similarity index 100% rename from src/static/icons/solid/refrigerator.svg rename to apps/client/src/static/icons/solid/refrigerator.svg diff --git a/src/static/icons/solid/registered.svg b/apps/client/src/static/icons/solid/registered.svg similarity index 100% rename from src/static/icons/solid/registered.svg rename to apps/client/src/static/icons/solid/registered.svg diff --git a/src/static/icons/solid/remove-format.svg b/apps/client/src/static/icons/solid/remove-format.svg similarity index 100% rename from src/static/icons/solid/remove-format.svg rename to apps/client/src/static/icons/solid/remove-format.svg diff --git a/src/static/icons/solid/repeat-1-alt.svg b/apps/client/src/static/icons/solid/repeat-1-alt.svg similarity index 100% rename from src/static/icons/solid/repeat-1-alt.svg rename to apps/client/src/static/icons/solid/repeat-1-alt.svg diff --git a/src/static/icons/solid/repeat-1.svg b/apps/client/src/static/icons/solid/repeat-1.svg similarity index 100% rename from src/static/icons/solid/repeat-1.svg rename to apps/client/src/static/icons/solid/repeat-1.svg diff --git a/src/static/icons/solid/repeat-alt.svg b/apps/client/src/static/icons/solid/repeat-alt.svg similarity index 100% rename from src/static/icons/solid/repeat-alt.svg rename to apps/client/src/static/icons/solid/repeat-alt.svg diff --git a/src/static/icons/solid/repeat.svg b/apps/client/src/static/icons/solid/repeat.svg similarity index 100% rename from src/static/icons/solid/repeat.svg rename to apps/client/src/static/icons/solid/repeat.svg diff --git a/src/static/icons/solid/reply-all.svg b/apps/client/src/static/icons/solid/reply-all.svg similarity index 100% rename from src/static/icons/solid/reply-all.svg rename to apps/client/src/static/icons/solid/reply-all.svg diff --git a/src/static/icons/solid/reply.svg b/apps/client/src/static/icons/solid/reply.svg similarity index 100% rename from src/static/icons/solid/reply.svg rename to apps/client/src/static/icons/solid/reply.svg diff --git a/src/static/icons/solid/republican.svg b/apps/client/src/static/icons/solid/republican.svg similarity index 100% rename from src/static/icons/solid/republican.svg rename to apps/client/src/static/icons/solid/republican.svg diff --git a/src/static/icons/solid/restroom.svg b/apps/client/src/static/icons/solid/restroom.svg similarity index 100% rename from src/static/icons/solid/restroom.svg rename to apps/client/src/static/icons/solid/restroom.svg diff --git a/src/static/icons/solid/retweet-alt.svg b/apps/client/src/static/icons/solid/retweet-alt.svg similarity index 100% rename from src/static/icons/solid/retweet-alt.svg rename to apps/client/src/static/icons/solid/retweet-alt.svg diff --git a/src/static/icons/solid/retweet.svg b/apps/client/src/static/icons/solid/retweet.svg similarity index 100% rename from src/static/icons/solid/retweet.svg rename to apps/client/src/static/icons/solid/retweet.svg diff --git a/src/static/icons/solid/ribbon.svg b/apps/client/src/static/icons/solid/ribbon.svg similarity index 100% rename from src/static/icons/solid/ribbon.svg rename to apps/client/src/static/icons/solid/ribbon.svg diff --git a/src/static/icons/solid/ring.svg b/apps/client/src/static/icons/solid/ring.svg similarity index 100% rename from src/static/icons/solid/ring.svg rename to apps/client/src/static/icons/solid/ring.svg diff --git a/src/static/icons/solid/rings-wedding.svg b/apps/client/src/static/icons/solid/rings-wedding.svg similarity index 100% rename from src/static/icons/solid/rings-wedding.svg rename to apps/client/src/static/icons/solid/rings-wedding.svg diff --git a/src/static/icons/solid/road.svg b/apps/client/src/static/icons/solid/road.svg similarity index 100% rename from src/static/icons/solid/road.svg rename to apps/client/src/static/icons/solid/road.svg diff --git a/src/static/icons/solid/robot.svg b/apps/client/src/static/icons/solid/robot.svg similarity index 100% rename from src/static/icons/solid/robot.svg rename to apps/client/src/static/icons/solid/robot.svg diff --git a/src/static/icons/solid/rocket-launch.svg b/apps/client/src/static/icons/solid/rocket-launch.svg similarity index 100% rename from src/static/icons/solid/rocket-launch.svg rename to apps/client/src/static/icons/solid/rocket-launch.svg diff --git a/src/static/icons/solid/rocket.svg b/apps/client/src/static/icons/solid/rocket.svg similarity index 100% rename from src/static/icons/solid/rocket.svg rename to apps/client/src/static/icons/solid/rocket.svg diff --git a/src/static/icons/solid/route-highway.svg b/apps/client/src/static/icons/solid/route-highway.svg similarity index 100% rename from src/static/icons/solid/route-highway.svg rename to apps/client/src/static/icons/solid/route-highway.svg diff --git a/src/static/icons/solid/route-interstate.svg b/apps/client/src/static/icons/solid/route-interstate.svg similarity index 100% rename from src/static/icons/solid/route-interstate.svg rename to apps/client/src/static/icons/solid/route-interstate.svg diff --git a/src/static/icons/solid/route.svg b/apps/client/src/static/icons/solid/route.svg similarity index 100% rename from src/static/icons/solid/route.svg rename to apps/client/src/static/icons/solid/route.svg diff --git a/src/static/icons/solid/router.svg b/apps/client/src/static/icons/solid/router.svg similarity index 100% rename from src/static/icons/solid/router.svg rename to apps/client/src/static/icons/solid/router.svg diff --git a/src/static/icons/solid/rss-square.svg b/apps/client/src/static/icons/solid/rss-square.svg similarity index 100% rename from src/static/icons/solid/rss-square.svg rename to apps/client/src/static/icons/solid/rss-square.svg diff --git a/src/static/icons/solid/rss.svg b/apps/client/src/static/icons/solid/rss.svg similarity index 100% rename from src/static/icons/solid/rss.svg rename to apps/client/src/static/icons/solid/rss.svg diff --git a/src/static/icons/solid/ruble-sign.svg b/apps/client/src/static/icons/solid/ruble-sign.svg similarity index 100% rename from src/static/icons/solid/ruble-sign.svg rename to apps/client/src/static/icons/solid/ruble-sign.svg diff --git a/src/static/icons/solid/ruler-combined.svg b/apps/client/src/static/icons/solid/ruler-combined.svg similarity index 100% rename from src/static/icons/solid/ruler-combined.svg rename to apps/client/src/static/icons/solid/ruler-combined.svg diff --git a/src/static/icons/solid/ruler-horizontal.svg b/apps/client/src/static/icons/solid/ruler-horizontal.svg similarity index 100% rename from src/static/icons/solid/ruler-horizontal.svg rename to apps/client/src/static/icons/solid/ruler-horizontal.svg diff --git a/src/static/icons/solid/ruler-triangle.svg b/apps/client/src/static/icons/solid/ruler-triangle.svg similarity index 100% rename from src/static/icons/solid/ruler-triangle.svg rename to apps/client/src/static/icons/solid/ruler-triangle.svg diff --git a/src/static/icons/solid/ruler-vertical.svg b/apps/client/src/static/icons/solid/ruler-vertical.svg similarity index 100% rename from src/static/icons/solid/ruler-vertical.svg rename to apps/client/src/static/icons/solid/ruler-vertical.svg diff --git a/src/static/icons/solid/ruler.svg b/apps/client/src/static/icons/solid/ruler.svg similarity index 100% rename from src/static/icons/solid/ruler.svg rename to apps/client/src/static/icons/solid/ruler.svg diff --git a/src/static/icons/solid/running.svg b/apps/client/src/static/icons/solid/running.svg similarity index 100% rename from src/static/icons/solid/running.svg rename to apps/client/src/static/icons/solid/running.svg diff --git a/src/static/icons/solid/rupee-sign.svg b/apps/client/src/static/icons/solid/rupee-sign.svg similarity index 100% rename from src/static/icons/solid/rupee-sign.svg rename to apps/client/src/static/icons/solid/rupee-sign.svg diff --git a/src/static/icons/solid/rv.svg b/apps/client/src/static/icons/solid/rv.svg similarity index 100% rename from src/static/icons/solid/rv.svg rename to apps/client/src/static/icons/solid/rv.svg diff --git a/src/static/icons/solid/sack-dollar.svg b/apps/client/src/static/icons/solid/sack-dollar.svg similarity index 100% rename from src/static/icons/solid/sack-dollar.svg rename to apps/client/src/static/icons/solid/sack-dollar.svg diff --git a/src/static/icons/solid/sack.svg b/apps/client/src/static/icons/solid/sack.svg similarity index 100% rename from src/static/icons/solid/sack.svg rename to apps/client/src/static/icons/solid/sack.svg diff --git a/src/static/icons/solid/sad-cry.svg b/apps/client/src/static/icons/solid/sad-cry.svg similarity index 100% rename from src/static/icons/solid/sad-cry.svg rename to apps/client/src/static/icons/solid/sad-cry.svg diff --git a/src/static/icons/solid/sad-tear.svg b/apps/client/src/static/icons/solid/sad-tear.svg similarity index 100% rename from src/static/icons/solid/sad-tear.svg rename to apps/client/src/static/icons/solid/sad-tear.svg diff --git a/src/static/icons/solid/salad.svg b/apps/client/src/static/icons/solid/salad.svg similarity index 100% rename from src/static/icons/solid/salad.svg rename to apps/client/src/static/icons/solid/salad.svg diff --git a/src/static/icons/solid/sandwich.svg b/apps/client/src/static/icons/solid/sandwich.svg similarity index 100% rename from src/static/icons/solid/sandwich.svg rename to apps/client/src/static/icons/solid/sandwich.svg diff --git a/src/static/icons/solid/satellite-dish.svg b/apps/client/src/static/icons/solid/satellite-dish.svg similarity index 100% rename from src/static/icons/solid/satellite-dish.svg rename to apps/client/src/static/icons/solid/satellite-dish.svg diff --git a/src/static/icons/solid/satellite.svg b/apps/client/src/static/icons/solid/satellite.svg similarity index 100% rename from src/static/icons/solid/satellite.svg rename to apps/client/src/static/icons/solid/satellite.svg diff --git a/src/static/icons/solid/sausage.svg b/apps/client/src/static/icons/solid/sausage.svg similarity index 100% rename from src/static/icons/solid/sausage.svg rename to apps/client/src/static/icons/solid/sausage.svg diff --git a/src/static/icons/solid/save.svg b/apps/client/src/static/icons/solid/save.svg similarity index 100% rename from src/static/icons/solid/save.svg rename to apps/client/src/static/icons/solid/save.svg diff --git a/src/static/icons/solid/sax-hot.svg b/apps/client/src/static/icons/solid/sax-hot.svg similarity index 100% rename from src/static/icons/solid/sax-hot.svg rename to apps/client/src/static/icons/solid/sax-hot.svg diff --git a/src/static/icons/solid/saxophone.svg b/apps/client/src/static/icons/solid/saxophone.svg similarity index 100% rename from src/static/icons/solid/saxophone.svg rename to apps/client/src/static/icons/solid/saxophone.svg diff --git a/src/static/icons/solid/scalpel-path.svg b/apps/client/src/static/icons/solid/scalpel-path.svg similarity index 100% rename from src/static/icons/solid/scalpel-path.svg rename to apps/client/src/static/icons/solid/scalpel-path.svg diff --git a/src/static/icons/solid/scalpel.svg b/apps/client/src/static/icons/solid/scalpel.svg similarity index 100% rename from src/static/icons/solid/scalpel.svg rename to apps/client/src/static/icons/solid/scalpel.svg diff --git a/src/static/icons/solid/scanner-image.svg b/apps/client/src/static/icons/solid/scanner-image.svg similarity index 100% rename from src/static/icons/solid/scanner-image.svg rename to apps/client/src/static/icons/solid/scanner-image.svg diff --git a/src/static/icons/solid/scanner-keyboard.svg b/apps/client/src/static/icons/solid/scanner-keyboard.svg similarity index 100% rename from src/static/icons/solid/scanner-keyboard.svg rename to apps/client/src/static/icons/solid/scanner-keyboard.svg diff --git a/src/static/icons/solid/scanner-touchscreen.svg b/apps/client/src/static/icons/solid/scanner-touchscreen.svg similarity index 100% rename from src/static/icons/solid/scanner-touchscreen.svg rename to apps/client/src/static/icons/solid/scanner-touchscreen.svg diff --git a/src/static/icons/solid/scanner.svg b/apps/client/src/static/icons/solid/scanner.svg similarity index 100% rename from src/static/icons/solid/scanner.svg rename to apps/client/src/static/icons/solid/scanner.svg diff --git a/src/static/icons/solid/scarecrow.svg b/apps/client/src/static/icons/solid/scarecrow.svg similarity index 100% rename from src/static/icons/solid/scarecrow.svg rename to apps/client/src/static/icons/solid/scarecrow.svg diff --git a/src/static/icons/solid/scarf.svg b/apps/client/src/static/icons/solid/scarf.svg similarity index 100% rename from src/static/icons/solid/scarf.svg rename to apps/client/src/static/icons/solid/scarf.svg diff --git a/src/static/icons/solid/school.svg b/apps/client/src/static/icons/solid/school.svg similarity index 100% rename from src/static/icons/solid/school.svg rename to apps/client/src/static/icons/solid/school.svg diff --git a/src/static/icons/solid/screwdriver.svg b/apps/client/src/static/icons/solid/screwdriver.svg similarity index 100% rename from src/static/icons/solid/screwdriver.svg rename to apps/client/src/static/icons/solid/screwdriver.svg diff --git a/src/static/icons/solid/scroll-old.svg b/apps/client/src/static/icons/solid/scroll-old.svg similarity index 100% rename from src/static/icons/solid/scroll-old.svg rename to apps/client/src/static/icons/solid/scroll-old.svg diff --git a/src/static/icons/solid/scroll.svg b/apps/client/src/static/icons/solid/scroll.svg similarity index 100% rename from src/static/icons/solid/scroll.svg rename to apps/client/src/static/icons/solid/scroll.svg diff --git a/src/static/icons/solid/scrubber.svg b/apps/client/src/static/icons/solid/scrubber.svg similarity index 100% rename from src/static/icons/solid/scrubber.svg rename to apps/client/src/static/icons/solid/scrubber.svg diff --git a/src/static/icons/solid/scythe.svg b/apps/client/src/static/icons/solid/scythe.svg similarity index 100% rename from src/static/icons/solid/scythe.svg rename to apps/client/src/static/icons/solid/scythe.svg diff --git a/src/static/icons/solid/sd-card.svg b/apps/client/src/static/icons/solid/sd-card.svg similarity index 100% rename from src/static/icons/solid/sd-card.svg rename to apps/client/src/static/icons/solid/sd-card.svg diff --git a/src/static/icons/solid/search-dollar.svg b/apps/client/src/static/icons/solid/search-dollar.svg similarity index 100% rename from src/static/icons/solid/search-dollar.svg rename to apps/client/src/static/icons/solid/search-dollar.svg diff --git a/src/static/icons/solid/search-location.svg b/apps/client/src/static/icons/solid/search-location.svg similarity index 100% rename from src/static/icons/solid/search-location.svg rename to apps/client/src/static/icons/solid/search-location.svg diff --git a/src/static/icons/solid/search-minus.svg b/apps/client/src/static/icons/solid/search-minus.svg similarity index 100% rename from src/static/icons/solid/search-minus.svg rename to apps/client/src/static/icons/solid/search-minus.svg diff --git a/src/static/icons/solid/search-plus.svg b/apps/client/src/static/icons/solid/search-plus.svg similarity index 100% rename from src/static/icons/solid/search-plus.svg rename to apps/client/src/static/icons/solid/search-plus.svg diff --git a/src/static/icons/solid/search.svg b/apps/client/src/static/icons/solid/search.svg similarity index 100% rename from src/static/icons/solid/search.svg rename to apps/client/src/static/icons/solid/search.svg diff --git a/src/static/icons/solid/seedling.svg b/apps/client/src/static/icons/solid/seedling.svg similarity index 100% rename from src/static/icons/solid/seedling.svg rename to apps/client/src/static/icons/solid/seedling.svg diff --git a/src/static/icons/solid/send-back.svg b/apps/client/src/static/icons/solid/send-back.svg similarity index 100% rename from src/static/icons/solid/send-back.svg rename to apps/client/src/static/icons/solid/send-back.svg diff --git a/src/static/icons/solid/send-backward.svg b/apps/client/src/static/icons/solid/send-backward.svg similarity index 100% rename from src/static/icons/solid/send-backward.svg rename to apps/client/src/static/icons/solid/send-backward.svg diff --git a/src/static/icons/solid/sensor-alert.svg b/apps/client/src/static/icons/solid/sensor-alert.svg similarity index 100% rename from src/static/icons/solid/sensor-alert.svg rename to apps/client/src/static/icons/solid/sensor-alert.svg diff --git a/src/static/icons/solid/sensor-fire.svg b/apps/client/src/static/icons/solid/sensor-fire.svg similarity index 100% rename from src/static/icons/solid/sensor-fire.svg rename to apps/client/src/static/icons/solid/sensor-fire.svg diff --git a/src/static/icons/solid/sensor-on.svg b/apps/client/src/static/icons/solid/sensor-on.svg similarity index 100% rename from src/static/icons/solid/sensor-on.svg rename to apps/client/src/static/icons/solid/sensor-on.svg diff --git a/src/static/icons/solid/sensor-smoke.svg b/apps/client/src/static/icons/solid/sensor-smoke.svg similarity index 100% rename from src/static/icons/solid/sensor-smoke.svg rename to apps/client/src/static/icons/solid/sensor-smoke.svg diff --git a/src/static/icons/solid/sensor.svg b/apps/client/src/static/icons/solid/sensor.svg similarity index 100% rename from src/static/icons/solid/sensor.svg rename to apps/client/src/static/icons/solid/sensor.svg diff --git a/src/static/icons/solid/server.svg b/apps/client/src/static/icons/solid/server.svg similarity index 100% rename from src/static/icons/solid/server.svg rename to apps/client/src/static/icons/solid/server.svg diff --git a/src/static/icons/solid/shapes.svg b/apps/client/src/static/icons/solid/shapes.svg similarity index 100% rename from src/static/icons/solid/shapes.svg rename to apps/client/src/static/icons/solid/shapes.svg diff --git a/src/static/icons/solid/share-all.svg b/apps/client/src/static/icons/solid/share-all.svg similarity index 100% rename from src/static/icons/solid/share-all.svg rename to apps/client/src/static/icons/solid/share-all.svg diff --git a/src/static/icons/solid/share-alt-square.svg b/apps/client/src/static/icons/solid/share-alt-square.svg similarity index 100% rename from src/static/icons/solid/share-alt-square.svg rename to apps/client/src/static/icons/solid/share-alt-square.svg diff --git a/src/static/icons/solid/share-alt.svg b/apps/client/src/static/icons/solid/share-alt.svg similarity index 100% rename from src/static/icons/solid/share-alt.svg rename to apps/client/src/static/icons/solid/share-alt.svg diff --git a/src/static/icons/solid/share-square.svg b/apps/client/src/static/icons/solid/share-square.svg similarity index 100% rename from src/static/icons/solid/share-square.svg rename to apps/client/src/static/icons/solid/share-square.svg diff --git a/src/static/icons/solid/share.svg b/apps/client/src/static/icons/solid/share.svg similarity index 100% rename from src/static/icons/solid/share.svg rename to apps/client/src/static/icons/solid/share.svg diff --git a/src/static/icons/solid/sheep.svg b/apps/client/src/static/icons/solid/sheep.svg similarity index 100% rename from src/static/icons/solid/sheep.svg rename to apps/client/src/static/icons/solid/sheep.svg diff --git a/src/static/icons/solid/shekel-sign.svg b/apps/client/src/static/icons/solid/shekel-sign.svg similarity index 100% rename from src/static/icons/solid/shekel-sign.svg rename to apps/client/src/static/icons/solid/shekel-sign.svg diff --git a/src/static/icons/solid/shield-alt.svg b/apps/client/src/static/icons/solid/shield-alt.svg similarity index 100% rename from src/static/icons/solid/shield-alt.svg rename to apps/client/src/static/icons/solid/shield-alt.svg diff --git a/src/static/icons/solid/shield-check.svg b/apps/client/src/static/icons/solid/shield-check.svg similarity index 100% rename from src/static/icons/solid/shield-check.svg rename to apps/client/src/static/icons/solid/shield-check.svg diff --git a/src/static/icons/solid/shield-cross.svg b/apps/client/src/static/icons/solid/shield-cross.svg similarity index 100% rename from src/static/icons/solid/shield-cross.svg rename to apps/client/src/static/icons/solid/shield-cross.svg diff --git a/src/static/icons/solid/shield.svg b/apps/client/src/static/icons/solid/shield.svg similarity index 100% rename from src/static/icons/solid/shield.svg rename to apps/client/src/static/icons/solid/shield.svg diff --git a/src/static/icons/solid/ship.svg b/apps/client/src/static/icons/solid/ship.svg similarity index 100% rename from src/static/icons/solid/ship.svg rename to apps/client/src/static/icons/solid/ship.svg diff --git a/src/static/icons/solid/shipping-fast.svg b/apps/client/src/static/icons/solid/shipping-fast.svg similarity index 100% rename from src/static/icons/solid/shipping-fast.svg rename to apps/client/src/static/icons/solid/shipping-fast.svg diff --git a/src/static/icons/solid/shipping-timed.svg b/apps/client/src/static/icons/solid/shipping-timed.svg similarity index 100% rename from src/static/icons/solid/shipping-timed.svg rename to apps/client/src/static/icons/solid/shipping-timed.svg diff --git a/src/static/icons/solid/shish-kebab.svg b/apps/client/src/static/icons/solid/shish-kebab.svg similarity index 100% rename from src/static/icons/solid/shish-kebab.svg rename to apps/client/src/static/icons/solid/shish-kebab.svg diff --git a/src/static/icons/solid/shoe-prints.svg b/apps/client/src/static/icons/solid/shoe-prints.svg similarity index 100% rename from src/static/icons/solid/shoe-prints.svg rename to apps/client/src/static/icons/solid/shoe-prints.svg diff --git a/src/static/icons/solid/shopping-bag.svg b/apps/client/src/static/icons/solid/shopping-bag.svg similarity index 100% rename from src/static/icons/solid/shopping-bag.svg rename to apps/client/src/static/icons/solid/shopping-bag.svg diff --git a/src/static/icons/solid/shopping-basket.svg b/apps/client/src/static/icons/solid/shopping-basket.svg similarity index 100% rename from src/static/icons/solid/shopping-basket.svg rename to apps/client/src/static/icons/solid/shopping-basket.svg diff --git a/src/static/icons/solid/shopping-cart.svg b/apps/client/src/static/icons/solid/shopping-cart.svg similarity index 100% rename from src/static/icons/solid/shopping-cart.svg rename to apps/client/src/static/icons/solid/shopping-cart.svg diff --git a/src/static/icons/solid/shovel-snow.svg b/apps/client/src/static/icons/solid/shovel-snow.svg similarity index 100% rename from src/static/icons/solid/shovel-snow.svg rename to apps/client/src/static/icons/solid/shovel-snow.svg diff --git a/src/static/icons/solid/shovel.svg b/apps/client/src/static/icons/solid/shovel.svg similarity index 100% rename from src/static/icons/solid/shovel.svg rename to apps/client/src/static/icons/solid/shovel.svg diff --git a/src/static/icons/solid/shower.svg b/apps/client/src/static/icons/solid/shower.svg similarity index 100% rename from src/static/icons/solid/shower.svg rename to apps/client/src/static/icons/solid/shower.svg diff --git a/src/static/icons/solid/shredder.svg b/apps/client/src/static/icons/solid/shredder.svg similarity index 100% rename from src/static/icons/solid/shredder.svg rename to apps/client/src/static/icons/solid/shredder.svg diff --git a/src/static/icons/solid/shuttle-van.svg b/apps/client/src/static/icons/solid/shuttle-van.svg similarity index 100% rename from src/static/icons/solid/shuttle-van.svg rename to apps/client/src/static/icons/solid/shuttle-van.svg diff --git a/src/static/icons/solid/shuttlecock.svg b/apps/client/src/static/icons/solid/shuttlecock.svg similarity index 100% rename from src/static/icons/solid/shuttlecock.svg rename to apps/client/src/static/icons/solid/shuttlecock.svg diff --git a/src/static/icons/solid/sickle.svg b/apps/client/src/static/icons/solid/sickle.svg similarity index 100% rename from src/static/icons/solid/sickle.svg rename to apps/client/src/static/icons/solid/sickle.svg diff --git a/src/static/icons/solid/sigma.svg b/apps/client/src/static/icons/solid/sigma.svg similarity index 100% rename from src/static/icons/solid/sigma.svg rename to apps/client/src/static/icons/solid/sigma.svg diff --git a/src/static/icons/solid/sign-in-alt.svg b/apps/client/src/static/icons/solid/sign-in-alt.svg similarity index 100% rename from src/static/icons/solid/sign-in-alt.svg rename to apps/client/src/static/icons/solid/sign-in-alt.svg diff --git a/src/static/icons/solid/sign-in.svg b/apps/client/src/static/icons/solid/sign-in.svg similarity index 100% rename from src/static/icons/solid/sign-in.svg rename to apps/client/src/static/icons/solid/sign-in.svg diff --git a/src/static/icons/solid/sign-language.svg b/apps/client/src/static/icons/solid/sign-language.svg similarity index 100% rename from src/static/icons/solid/sign-language.svg rename to apps/client/src/static/icons/solid/sign-language.svg diff --git a/src/static/icons/solid/sign-out-alt.svg b/apps/client/src/static/icons/solid/sign-out-alt.svg similarity index 100% rename from src/static/icons/solid/sign-out-alt.svg rename to apps/client/src/static/icons/solid/sign-out-alt.svg diff --git a/src/static/icons/solid/sign-out.svg b/apps/client/src/static/icons/solid/sign-out.svg similarity index 100% rename from src/static/icons/solid/sign-out.svg rename to apps/client/src/static/icons/solid/sign-out.svg diff --git a/src/static/icons/solid/sign.svg b/apps/client/src/static/icons/solid/sign.svg similarity index 100% rename from src/static/icons/solid/sign.svg rename to apps/client/src/static/icons/solid/sign.svg diff --git a/src/static/icons/solid/signal-1.svg b/apps/client/src/static/icons/solid/signal-1.svg similarity index 100% rename from src/static/icons/solid/signal-1.svg rename to apps/client/src/static/icons/solid/signal-1.svg diff --git a/src/static/icons/solid/signal-2.svg b/apps/client/src/static/icons/solid/signal-2.svg similarity index 100% rename from src/static/icons/solid/signal-2.svg rename to apps/client/src/static/icons/solid/signal-2.svg diff --git a/src/static/icons/solid/signal-3.svg b/apps/client/src/static/icons/solid/signal-3.svg similarity index 100% rename from src/static/icons/solid/signal-3.svg rename to apps/client/src/static/icons/solid/signal-3.svg diff --git a/src/static/icons/solid/signal-4.svg b/apps/client/src/static/icons/solid/signal-4.svg similarity index 100% rename from src/static/icons/solid/signal-4.svg rename to apps/client/src/static/icons/solid/signal-4.svg diff --git a/src/static/icons/solid/signal-alt-1.svg b/apps/client/src/static/icons/solid/signal-alt-1.svg similarity index 100% rename from src/static/icons/solid/signal-alt-1.svg rename to apps/client/src/static/icons/solid/signal-alt-1.svg diff --git a/src/static/icons/solid/signal-alt-2.svg b/apps/client/src/static/icons/solid/signal-alt-2.svg similarity index 100% rename from src/static/icons/solid/signal-alt-2.svg rename to apps/client/src/static/icons/solid/signal-alt-2.svg diff --git a/src/static/icons/solid/signal-alt-3.svg b/apps/client/src/static/icons/solid/signal-alt-3.svg similarity index 100% rename from src/static/icons/solid/signal-alt-3.svg rename to apps/client/src/static/icons/solid/signal-alt-3.svg diff --git a/src/static/icons/solid/signal-alt-slash.svg b/apps/client/src/static/icons/solid/signal-alt-slash.svg similarity index 100% rename from src/static/icons/solid/signal-alt-slash.svg rename to apps/client/src/static/icons/solid/signal-alt-slash.svg diff --git a/src/static/icons/solid/signal-alt.svg b/apps/client/src/static/icons/solid/signal-alt.svg similarity index 100% rename from src/static/icons/solid/signal-alt.svg rename to apps/client/src/static/icons/solid/signal-alt.svg diff --git a/src/static/icons/solid/signal-slash.svg b/apps/client/src/static/icons/solid/signal-slash.svg similarity index 100% rename from src/static/icons/solid/signal-slash.svg rename to apps/client/src/static/icons/solid/signal-slash.svg diff --git a/src/static/icons/solid/signal-stream.svg b/apps/client/src/static/icons/solid/signal-stream.svg similarity index 100% rename from src/static/icons/solid/signal-stream.svg rename to apps/client/src/static/icons/solid/signal-stream.svg diff --git a/src/static/icons/solid/signal.svg b/apps/client/src/static/icons/solid/signal.svg similarity index 100% rename from src/static/icons/solid/signal.svg rename to apps/client/src/static/icons/solid/signal.svg diff --git a/src/static/icons/solid/signature.svg b/apps/client/src/static/icons/solid/signature.svg similarity index 100% rename from src/static/icons/solid/signature.svg rename to apps/client/src/static/icons/solid/signature.svg diff --git a/src/static/icons/solid/sim-card.svg b/apps/client/src/static/icons/solid/sim-card.svg similarity index 100% rename from src/static/icons/solid/sim-card.svg rename to apps/client/src/static/icons/solid/sim-card.svg diff --git a/src/static/icons/solid/siren-on.svg b/apps/client/src/static/icons/solid/siren-on.svg similarity index 100% rename from src/static/icons/solid/siren-on.svg rename to apps/client/src/static/icons/solid/siren-on.svg diff --git a/src/static/icons/solid/siren.svg b/apps/client/src/static/icons/solid/siren.svg similarity index 100% rename from src/static/icons/solid/siren.svg rename to apps/client/src/static/icons/solid/siren.svg diff --git a/src/static/icons/solid/sitemap.svg b/apps/client/src/static/icons/solid/sitemap.svg similarity index 100% rename from src/static/icons/solid/sitemap.svg rename to apps/client/src/static/icons/solid/sitemap.svg diff --git a/src/static/icons/solid/skating.svg b/apps/client/src/static/icons/solid/skating.svg similarity index 100% rename from src/static/icons/solid/skating.svg rename to apps/client/src/static/icons/solid/skating.svg diff --git a/src/static/icons/solid/skeleton.svg b/apps/client/src/static/icons/solid/skeleton.svg similarity index 100% rename from src/static/icons/solid/skeleton.svg rename to apps/client/src/static/icons/solid/skeleton.svg diff --git a/src/static/icons/solid/ski-jump.svg b/apps/client/src/static/icons/solid/ski-jump.svg similarity index 100% rename from src/static/icons/solid/ski-jump.svg rename to apps/client/src/static/icons/solid/ski-jump.svg diff --git a/src/static/icons/solid/ski-lift.svg b/apps/client/src/static/icons/solid/ski-lift.svg similarity index 100% rename from src/static/icons/solid/ski-lift.svg rename to apps/client/src/static/icons/solid/ski-lift.svg diff --git a/src/static/icons/solid/skiing-nordic.svg b/apps/client/src/static/icons/solid/skiing-nordic.svg similarity index 100% rename from src/static/icons/solid/skiing-nordic.svg rename to apps/client/src/static/icons/solid/skiing-nordic.svg diff --git a/src/static/icons/solid/skiing.svg b/apps/client/src/static/icons/solid/skiing.svg similarity index 100% rename from src/static/icons/solid/skiing.svg rename to apps/client/src/static/icons/solid/skiing.svg diff --git a/src/static/icons/solid/skull-cow.svg b/apps/client/src/static/icons/solid/skull-cow.svg similarity index 100% rename from src/static/icons/solid/skull-cow.svg rename to apps/client/src/static/icons/solid/skull-cow.svg diff --git a/src/static/icons/solid/skull-crossbones.svg b/apps/client/src/static/icons/solid/skull-crossbones.svg similarity index 100% rename from src/static/icons/solid/skull-crossbones.svg rename to apps/client/src/static/icons/solid/skull-crossbones.svg diff --git a/src/static/icons/solid/skull.svg b/apps/client/src/static/icons/solid/skull.svg similarity index 100% rename from src/static/icons/solid/skull.svg rename to apps/client/src/static/icons/solid/skull.svg diff --git a/src/static/icons/solid/slash.svg b/apps/client/src/static/icons/solid/slash.svg similarity index 100% rename from src/static/icons/solid/slash.svg rename to apps/client/src/static/icons/solid/slash.svg diff --git a/src/static/icons/solid/sledding.svg b/apps/client/src/static/icons/solid/sledding.svg similarity index 100% rename from src/static/icons/solid/sledding.svg rename to apps/client/src/static/icons/solid/sledding.svg diff --git a/src/static/icons/solid/sleigh.svg b/apps/client/src/static/icons/solid/sleigh.svg similarity index 100% rename from src/static/icons/solid/sleigh.svg rename to apps/client/src/static/icons/solid/sleigh.svg diff --git a/src/static/icons/solid/sliders-h-square.svg b/apps/client/src/static/icons/solid/sliders-h-square.svg similarity index 100% rename from src/static/icons/solid/sliders-h-square.svg rename to apps/client/src/static/icons/solid/sliders-h-square.svg diff --git a/src/static/icons/solid/sliders-h.svg b/apps/client/src/static/icons/solid/sliders-h.svg similarity index 100% rename from src/static/icons/solid/sliders-h.svg rename to apps/client/src/static/icons/solid/sliders-h.svg diff --git a/src/static/icons/solid/sliders-v-square.svg b/apps/client/src/static/icons/solid/sliders-v-square.svg similarity index 100% rename from src/static/icons/solid/sliders-v-square.svg rename to apps/client/src/static/icons/solid/sliders-v-square.svg diff --git a/src/static/icons/solid/sliders-v.svg b/apps/client/src/static/icons/solid/sliders-v.svg similarity index 100% rename from src/static/icons/solid/sliders-v.svg rename to apps/client/src/static/icons/solid/sliders-v.svg diff --git a/src/static/icons/solid/smile-beam.svg b/apps/client/src/static/icons/solid/smile-beam.svg similarity index 100% rename from src/static/icons/solid/smile-beam.svg rename to apps/client/src/static/icons/solid/smile-beam.svg diff --git a/src/static/icons/solid/smile-plus.svg b/apps/client/src/static/icons/solid/smile-plus.svg similarity index 100% rename from src/static/icons/solid/smile-plus.svg rename to apps/client/src/static/icons/solid/smile-plus.svg diff --git a/src/static/icons/solid/smile-wink.svg b/apps/client/src/static/icons/solid/smile-wink.svg similarity index 100% rename from src/static/icons/solid/smile-wink.svg rename to apps/client/src/static/icons/solid/smile-wink.svg diff --git a/src/static/icons/solid/smile.svg b/apps/client/src/static/icons/solid/smile.svg similarity index 100% rename from src/static/icons/solid/smile.svg rename to apps/client/src/static/icons/solid/smile.svg diff --git a/src/static/icons/solid/smog.svg b/apps/client/src/static/icons/solid/smog.svg similarity index 100% rename from src/static/icons/solid/smog.svg rename to apps/client/src/static/icons/solid/smog.svg diff --git a/src/static/icons/solid/smoke.svg b/apps/client/src/static/icons/solid/smoke.svg similarity index 100% rename from src/static/icons/solid/smoke.svg rename to apps/client/src/static/icons/solid/smoke.svg diff --git a/src/static/icons/solid/smoking-ban.svg b/apps/client/src/static/icons/solid/smoking-ban.svg similarity index 100% rename from src/static/icons/solid/smoking-ban.svg rename to apps/client/src/static/icons/solid/smoking-ban.svg diff --git a/src/static/icons/solid/smoking.svg b/apps/client/src/static/icons/solid/smoking.svg similarity index 100% rename from src/static/icons/solid/smoking.svg rename to apps/client/src/static/icons/solid/smoking.svg diff --git a/src/static/icons/solid/sms.svg b/apps/client/src/static/icons/solid/sms.svg similarity index 100% rename from src/static/icons/solid/sms.svg rename to apps/client/src/static/icons/solid/sms.svg diff --git a/src/static/icons/solid/snake.svg b/apps/client/src/static/icons/solid/snake.svg similarity index 100% rename from src/static/icons/solid/snake.svg rename to apps/client/src/static/icons/solid/snake.svg diff --git a/src/static/icons/solid/snooze.svg b/apps/client/src/static/icons/solid/snooze.svg similarity index 100% rename from src/static/icons/solid/snooze.svg rename to apps/client/src/static/icons/solid/snooze.svg diff --git a/src/static/icons/solid/snow-blowing.svg b/apps/client/src/static/icons/solid/snow-blowing.svg similarity index 100% rename from src/static/icons/solid/snow-blowing.svg rename to apps/client/src/static/icons/solid/snow-blowing.svg diff --git a/src/static/icons/solid/snowboarding.svg b/apps/client/src/static/icons/solid/snowboarding.svg similarity index 100% rename from src/static/icons/solid/snowboarding.svg rename to apps/client/src/static/icons/solid/snowboarding.svg diff --git a/src/static/icons/solid/snowflake.svg b/apps/client/src/static/icons/solid/snowflake.svg similarity index 100% rename from src/static/icons/solid/snowflake.svg rename to apps/client/src/static/icons/solid/snowflake.svg diff --git a/src/static/icons/solid/snowflakes.svg b/apps/client/src/static/icons/solid/snowflakes.svg similarity index 100% rename from src/static/icons/solid/snowflakes.svg rename to apps/client/src/static/icons/solid/snowflakes.svg diff --git a/src/static/icons/solid/snowman.svg b/apps/client/src/static/icons/solid/snowman.svg similarity index 100% rename from src/static/icons/solid/snowman.svg rename to apps/client/src/static/icons/solid/snowman.svg diff --git a/src/static/icons/solid/snowmobile.svg b/apps/client/src/static/icons/solid/snowmobile.svg similarity index 100% rename from src/static/icons/solid/snowmobile.svg rename to apps/client/src/static/icons/solid/snowmobile.svg diff --git a/src/static/icons/solid/snowplow.svg b/apps/client/src/static/icons/solid/snowplow.svg similarity index 100% rename from src/static/icons/solid/snowplow.svg rename to apps/client/src/static/icons/solid/snowplow.svg diff --git a/src/static/icons/solid/socks.svg b/apps/client/src/static/icons/solid/socks.svg similarity index 100% rename from src/static/icons/solid/socks.svg rename to apps/client/src/static/icons/solid/socks.svg diff --git a/src/static/icons/solid/solar-panel.svg b/apps/client/src/static/icons/solid/solar-panel.svg similarity index 100% rename from src/static/icons/solid/solar-panel.svg rename to apps/client/src/static/icons/solid/solar-panel.svg diff --git a/src/static/icons/solid/solar-system.svg b/apps/client/src/static/icons/solid/solar-system.svg similarity index 100% rename from src/static/icons/solid/solar-system.svg rename to apps/client/src/static/icons/solid/solar-system.svg diff --git a/src/static/icons/solid/sort-alpha-down-alt.svg b/apps/client/src/static/icons/solid/sort-alpha-down-alt.svg similarity index 100% rename from src/static/icons/solid/sort-alpha-down-alt.svg rename to apps/client/src/static/icons/solid/sort-alpha-down-alt.svg diff --git a/src/static/icons/solid/sort-alpha-down.svg b/apps/client/src/static/icons/solid/sort-alpha-down.svg similarity index 100% rename from src/static/icons/solid/sort-alpha-down.svg rename to apps/client/src/static/icons/solid/sort-alpha-down.svg diff --git a/src/static/icons/solid/sort-alpha-up-alt.svg b/apps/client/src/static/icons/solid/sort-alpha-up-alt.svg similarity index 100% rename from src/static/icons/solid/sort-alpha-up-alt.svg rename to apps/client/src/static/icons/solid/sort-alpha-up-alt.svg diff --git a/src/static/icons/solid/sort-alpha-up.svg b/apps/client/src/static/icons/solid/sort-alpha-up.svg similarity index 100% rename from src/static/icons/solid/sort-alpha-up.svg rename to apps/client/src/static/icons/solid/sort-alpha-up.svg diff --git a/src/static/icons/solid/sort-alt.svg b/apps/client/src/static/icons/solid/sort-alt.svg similarity index 100% rename from src/static/icons/solid/sort-alt.svg rename to apps/client/src/static/icons/solid/sort-alt.svg diff --git a/src/static/icons/solid/sort-amount-down-alt.svg b/apps/client/src/static/icons/solid/sort-amount-down-alt.svg similarity index 100% rename from src/static/icons/solid/sort-amount-down-alt.svg rename to apps/client/src/static/icons/solid/sort-amount-down-alt.svg diff --git a/src/static/icons/solid/sort-amount-down.svg b/apps/client/src/static/icons/solid/sort-amount-down.svg similarity index 100% rename from src/static/icons/solid/sort-amount-down.svg rename to apps/client/src/static/icons/solid/sort-amount-down.svg diff --git a/src/static/icons/solid/sort-amount-up-alt.svg b/apps/client/src/static/icons/solid/sort-amount-up-alt.svg similarity index 100% rename from src/static/icons/solid/sort-amount-up-alt.svg rename to apps/client/src/static/icons/solid/sort-amount-up-alt.svg diff --git a/src/static/icons/solid/sort-amount-up.svg b/apps/client/src/static/icons/solid/sort-amount-up.svg similarity index 100% rename from src/static/icons/solid/sort-amount-up.svg rename to apps/client/src/static/icons/solid/sort-amount-up.svg diff --git a/src/static/icons/solid/sort-circle-down.svg b/apps/client/src/static/icons/solid/sort-circle-down.svg similarity index 100% rename from src/static/icons/solid/sort-circle-down.svg rename to apps/client/src/static/icons/solid/sort-circle-down.svg diff --git a/src/static/icons/solid/sort-circle-up.svg b/apps/client/src/static/icons/solid/sort-circle-up.svg similarity index 100% rename from src/static/icons/solid/sort-circle-up.svg rename to apps/client/src/static/icons/solid/sort-circle-up.svg diff --git a/src/static/icons/solid/sort-circle.svg b/apps/client/src/static/icons/solid/sort-circle.svg similarity index 100% rename from src/static/icons/solid/sort-circle.svg rename to apps/client/src/static/icons/solid/sort-circle.svg diff --git a/src/static/icons/solid/sort-down.svg b/apps/client/src/static/icons/solid/sort-down.svg similarity index 100% rename from src/static/icons/solid/sort-down.svg rename to apps/client/src/static/icons/solid/sort-down.svg diff --git a/src/static/icons/solid/sort-numeric-down-alt.svg b/apps/client/src/static/icons/solid/sort-numeric-down-alt.svg similarity index 100% rename from src/static/icons/solid/sort-numeric-down-alt.svg rename to apps/client/src/static/icons/solid/sort-numeric-down-alt.svg diff --git a/src/static/icons/solid/sort-numeric-down.svg b/apps/client/src/static/icons/solid/sort-numeric-down.svg similarity index 100% rename from src/static/icons/solid/sort-numeric-down.svg rename to apps/client/src/static/icons/solid/sort-numeric-down.svg diff --git a/src/static/icons/solid/sort-numeric-up-alt.svg b/apps/client/src/static/icons/solid/sort-numeric-up-alt.svg similarity index 100% rename from src/static/icons/solid/sort-numeric-up-alt.svg rename to apps/client/src/static/icons/solid/sort-numeric-up-alt.svg diff --git a/src/static/icons/solid/sort-numeric-up.svg b/apps/client/src/static/icons/solid/sort-numeric-up.svg similarity index 100% rename from src/static/icons/solid/sort-numeric-up.svg rename to apps/client/src/static/icons/solid/sort-numeric-up.svg diff --git a/src/static/icons/solid/sort-shapes-down-alt.svg b/apps/client/src/static/icons/solid/sort-shapes-down-alt.svg similarity index 100% rename from src/static/icons/solid/sort-shapes-down-alt.svg rename to apps/client/src/static/icons/solid/sort-shapes-down-alt.svg diff --git a/src/static/icons/solid/sort-shapes-down.svg b/apps/client/src/static/icons/solid/sort-shapes-down.svg similarity index 100% rename from src/static/icons/solid/sort-shapes-down.svg rename to apps/client/src/static/icons/solid/sort-shapes-down.svg diff --git a/src/static/icons/solid/sort-shapes-up-alt.svg b/apps/client/src/static/icons/solid/sort-shapes-up-alt.svg similarity index 100% rename from src/static/icons/solid/sort-shapes-up-alt.svg rename to apps/client/src/static/icons/solid/sort-shapes-up-alt.svg diff --git a/src/static/icons/solid/sort-shapes-up.svg b/apps/client/src/static/icons/solid/sort-shapes-up.svg similarity index 100% rename from src/static/icons/solid/sort-shapes-up.svg rename to apps/client/src/static/icons/solid/sort-shapes-up.svg diff --git a/src/static/icons/solid/sort-size-down-alt.svg b/apps/client/src/static/icons/solid/sort-size-down-alt.svg similarity index 100% rename from src/static/icons/solid/sort-size-down-alt.svg rename to apps/client/src/static/icons/solid/sort-size-down-alt.svg diff --git a/src/static/icons/solid/sort-size-down.svg b/apps/client/src/static/icons/solid/sort-size-down.svg similarity index 100% rename from src/static/icons/solid/sort-size-down.svg rename to apps/client/src/static/icons/solid/sort-size-down.svg diff --git a/src/static/icons/solid/sort-size-up-alt.svg b/apps/client/src/static/icons/solid/sort-size-up-alt.svg similarity index 100% rename from src/static/icons/solid/sort-size-up-alt.svg rename to apps/client/src/static/icons/solid/sort-size-up-alt.svg diff --git a/src/static/icons/solid/sort-size-up.svg b/apps/client/src/static/icons/solid/sort-size-up.svg similarity index 100% rename from src/static/icons/solid/sort-size-up.svg rename to apps/client/src/static/icons/solid/sort-size-up.svg diff --git a/src/static/icons/solid/sort-up.svg b/apps/client/src/static/icons/solid/sort-up.svg similarity index 100% rename from src/static/icons/solid/sort-up.svg rename to apps/client/src/static/icons/solid/sort-up.svg diff --git a/src/static/icons/solid/sort.svg b/apps/client/src/static/icons/solid/sort.svg similarity index 100% rename from src/static/icons/solid/sort.svg rename to apps/client/src/static/icons/solid/sort.svg diff --git a/src/static/icons/solid/soup.svg b/apps/client/src/static/icons/solid/soup.svg similarity index 100% rename from src/static/icons/solid/soup.svg rename to apps/client/src/static/icons/solid/soup.svg diff --git a/src/static/icons/solid/spa.svg b/apps/client/src/static/icons/solid/spa.svg similarity index 100% rename from src/static/icons/solid/spa.svg rename to apps/client/src/static/icons/solid/spa.svg diff --git a/src/static/icons/solid/space-shuttle.svg b/apps/client/src/static/icons/solid/space-shuttle.svg similarity index 100% rename from src/static/icons/solid/space-shuttle.svg rename to apps/client/src/static/icons/solid/space-shuttle.svg diff --git a/src/static/icons/solid/space-station-moon-alt.svg b/apps/client/src/static/icons/solid/space-station-moon-alt.svg similarity index 100% rename from src/static/icons/solid/space-station-moon-alt.svg rename to apps/client/src/static/icons/solid/space-station-moon-alt.svg diff --git a/src/static/icons/solid/space-station-moon.svg b/apps/client/src/static/icons/solid/space-station-moon.svg similarity index 100% rename from src/static/icons/solid/space-station-moon.svg rename to apps/client/src/static/icons/solid/space-station-moon.svg diff --git a/src/static/icons/solid/spade.svg b/apps/client/src/static/icons/solid/spade.svg similarity index 100% rename from src/static/icons/solid/spade.svg rename to apps/client/src/static/icons/solid/spade.svg diff --git a/src/static/icons/solid/sparkles.svg b/apps/client/src/static/icons/solid/sparkles.svg similarity index 100% rename from src/static/icons/solid/sparkles.svg rename to apps/client/src/static/icons/solid/sparkles.svg diff --git a/src/static/icons/solid/speaker.svg b/apps/client/src/static/icons/solid/speaker.svg similarity index 100% rename from src/static/icons/solid/speaker.svg rename to apps/client/src/static/icons/solid/speaker.svg diff --git a/src/static/icons/solid/speakers.svg b/apps/client/src/static/icons/solid/speakers.svg similarity index 100% rename from src/static/icons/solid/speakers.svg rename to apps/client/src/static/icons/solid/speakers.svg diff --git a/src/static/icons/solid/spell-check.svg b/apps/client/src/static/icons/solid/spell-check.svg similarity index 100% rename from src/static/icons/solid/spell-check.svg rename to apps/client/src/static/icons/solid/spell-check.svg diff --git a/src/static/icons/solid/spider-black-widow.svg b/apps/client/src/static/icons/solid/spider-black-widow.svg similarity index 100% rename from src/static/icons/solid/spider-black-widow.svg rename to apps/client/src/static/icons/solid/spider-black-widow.svg diff --git a/src/static/icons/solid/spider-web.svg b/apps/client/src/static/icons/solid/spider-web.svg similarity index 100% rename from src/static/icons/solid/spider-web.svg rename to apps/client/src/static/icons/solid/spider-web.svg diff --git a/src/static/icons/solid/spider.svg b/apps/client/src/static/icons/solid/spider.svg similarity index 100% rename from src/static/icons/solid/spider.svg rename to apps/client/src/static/icons/solid/spider.svg diff --git a/src/static/icons/solid/spinner-third.svg b/apps/client/src/static/icons/solid/spinner-third.svg similarity index 100% rename from src/static/icons/solid/spinner-third.svg rename to apps/client/src/static/icons/solid/spinner-third.svg diff --git a/src/static/icons/solid/spinner.svg b/apps/client/src/static/icons/solid/spinner.svg similarity index 100% rename from src/static/icons/solid/spinner.svg rename to apps/client/src/static/icons/solid/spinner.svg diff --git a/src/static/icons/solid/splotch.svg b/apps/client/src/static/icons/solid/splotch.svg similarity index 100% rename from src/static/icons/solid/splotch.svg rename to apps/client/src/static/icons/solid/splotch.svg diff --git a/src/static/icons/solid/spray-can.svg b/apps/client/src/static/icons/solid/spray-can.svg similarity index 100% rename from src/static/icons/solid/spray-can.svg rename to apps/client/src/static/icons/solid/spray-can.svg diff --git a/src/static/icons/solid/sprinkler.svg b/apps/client/src/static/icons/solid/sprinkler.svg similarity index 100% rename from src/static/icons/solid/sprinkler.svg rename to apps/client/src/static/icons/solid/sprinkler.svg diff --git a/src/static/icons/solid/square-full.svg b/apps/client/src/static/icons/solid/square-full.svg similarity index 100% rename from src/static/icons/solid/square-full.svg rename to apps/client/src/static/icons/solid/square-full.svg diff --git a/src/static/icons/solid/square-root-alt.svg b/apps/client/src/static/icons/solid/square-root-alt.svg similarity index 100% rename from src/static/icons/solid/square-root-alt.svg rename to apps/client/src/static/icons/solid/square-root-alt.svg diff --git a/src/static/icons/solid/square-root.svg b/apps/client/src/static/icons/solid/square-root.svg similarity index 100% rename from src/static/icons/solid/square-root.svg rename to apps/client/src/static/icons/solid/square-root.svg diff --git a/src/static/icons/solid/square.svg b/apps/client/src/static/icons/solid/square.svg similarity index 100% rename from src/static/icons/solid/square.svg rename to apps/client/src/static/icons/solid/square.svg diff --git a/src/static/icons/solid/squirrel.svg b/apps/client/src/static/icons/solid/squirrel.svg similarity index 100% rename from src/static/icons/solid/squirrel.svg rename to apps/client/src/static/icons/solid/squirrel.svg diff --git a/src/static/icons/solid/staff.svg b/apps/client/src/static/icons/solid/staff.svg similarity index 100% rename from src/static/icons/solid/staff.svg rename to apps/client/src/static/icons/solid/staff.svg diff --git a/src/static/icons/solid/stamp.svg b/apps/client/src/static/icons/solid/stamp.svg similarity index 100% rename from src/static/icons/solid/stamp.svg rename to apps/client/src/static/icons/solid/stamp.svg diff --git a/src/static/icons/solid/star-and-crescent.svg b/apps/client/src/static/icons/solid/star-and-crescent.svg similarity index 100% rename from src/static/icons/solid/star-and-crescent.svg rename to apps/client/src/static/icons/solid/star-and-crescent.svg diff --git a/src/static/icons/solid/star-christmas.svg b/apps/client/src/static/icons/solid/star-christmas.svg similarity index 100% rename from src/static/icons/solid/star-christmas.svg rename to apps/client/src/static/icons/solid/star-christmas.svg diff --git a/src/static/icons/solid/star-exclamation.svg b/apps/client/src/static/icons/solid/star-exclamation.svg similarity index 100% rename from src/static/icons/solid/star-exclamation.svg rename to apps/client/src/static/icons/solid/star-exclamation.svg diff --git a/src/static/icons/solid/star-half-alt.svg b/apps/client/src/static/icons/solid/star-half-alt.svg similarity index 100% rename from src/static/icons/solid/star-half-alt.svg rename to apps/client/src/static/icons/solid/star-half-alt.svg diff --git a/src/static/icons/solid/star-half.svg b/apps/client/src/static/icons/solid/star-half.svg similarity index 100% rename from src/static/icons/solid/star-half.svg rename to apps/client/src/static/icons/solid/star-half.svg diff --git a/src/static/icons/solid/star-of-david.svg b/apps/client/src/static/icons/solid/star-of-david.svg similarity index 100% rename from src/static/icons/solid/star-of-david.svg rename to apps/client/src/static/icons/solid/star-of-david.svg diff --git a/src/static/icons/solid/star-of-life.svg b/apps/client/src/static/icons/solid/star-of-life.svg similarity index 100% rename from src/static/icons/solid/star-of-life.svg rename to apps/client/src/static/icons/solid/star-of-life.svg diff --git a/src/static/icons/solid/star-shooting.svg b/apps/client/src/static/icons/solid/star-shooting.svg similarity index 100% rename from src/static/icons/solid/star-shooting.svg rename to apps/client/src/static/icons/solid/star-shooting.svg diff --git a/src/static/icons/solid/star.svg b/apps/client/src/static/icons/solid/star.svg similarity index 100% rename from src/static/icons/solid/star.svg rename to apps/client/src/static/icons/solid/star.svg diff --git a/src/static/icons/solid/starfighter-alt.svg b/apps/client/src/static/icons/solid/starfighter-alt.svg similarity index 100% rename from src/static/icons/solid/starfighter-alt.svg rename to apps/client/src/static/icons/solid/starfighter-alt.svg diff --git a/src/static/icons/solid/starfighter.svg b/apps/client/src/static/icons/solid/starfighter.svg similarity index 100% rename from src/static/icons/solid/starfighter.svg rename to apps/client/src/static/icons/solid/starfighter.svg diff --git a/src/static/icons/solid/stars.svg b/apps/client/src/static/icons/solid/stars.svg similarity index 100% rename from src/static/icons/solid/stars.svg rename to apps/client/src/static/icons/solid/stars.svg diff --git a/src/static/icons/solid/starship-freighter.svg b/apps/client/src/static/icons/solid/starship-freighter.svg similarity index 100% rename from src/static/icons/solid/starship-freighter.svg rename to apps/client/src/static/icons/solid/starship-freighter.svg diff --git a/src/static/icons/solid/starship.svg b/apps/client/src/static/icons/solid/starship.svg similarity index 100% rename from src/static/icons/solid/starship.svg rename to apps/client/src/static/icons/solid/starship.svg diff --git a/src/static/icons/solid/steak.svg b/apps/client/src/static/icons/solid/steak.svg similarity index 100% rename from src/static/icons/solid/steak.svg rename to apps/client/src/static/icons/solid/steak.svg diff --git a/src/static/icons/solid/steering-wheel.svg b/apps/client/src/static/icons/solid/steering-wheel.svg similarity index 100% rename from src/static/icons/solid/steering-wheel.svg rename to apps/client/src/static/icons/solid/steering-wheel.svg diff --git a/src/static/icons/solid/step-backward.svg b/apps/client/src/static/icons/solid/step-backward.svg similarity index 100% rename from src/static/icons/solid/step-backward.svg rename to apps/client/src/static/icons/solid/step-backward.svg diff --git a/src/static/icons/solid/step-forward.svg b/apps/client/src/static/icons/solid/step-forward.svg similarity index 100% rename from src/static/icons/solid/step-forward.svg rename to apps/client/src/static/icons/solid/step-forward.svg diff --git a/src/static/icons/solid/stethoscope.svg b/apps/client/src/static/icons/solid/stethoscope.svg similarity index 100% rename from src/static/icons/solid/stethoscope.svg rename to apps/client/src/static/icons/solid/stethoscope.svg diff --git a/src/static/icons/solid/sticky-note.svg b/apps/client/src/static/icons/solid/sticky-note.svg similarity index 100% rename from src/static/icons/solid/sticky-note.svg rename to apps/client/src/static/icons/solid/sticky-note.svg diff --git a/src/static/icons/solid/stocking.svg b/apps/client/src/static/icons/solid/stocking.svg similarity index 100% rename from src/static/icons/solid/stocking.svg rename to apps/client/src/static/icons/solid/stocking.svg diff --git a/src/static/icons/solid/stomach.svg b/apps/client/src/static/icons/solid/stomach.svg similarity index 100% rename from src/static/icons/solid/stomach.svg rename to apps/client/src/static/icons/solid/stomach.svg diff --git a/src/static/icons/solid/stop-circle.svg b/apps/client/src/static/icons/solid/stop-circle.svg similarity index 100% rename from src/static/icons/solid/stop-circle.svg rename to apps/client/src/static/icons/solid/stop-circle.svg diff --git a/src/static/icons/solid/stop.svg b/apps/client/src/static/icons/solid/stop.svg similarity index 100% rename from src/static/icons/solid/stop.svg rename to apps/client/src/static/icons/solid/stop.svg diff --git a/src/static/icons/solid/stopwatch.svg b/apps/client/src/static/icons/solid/stopwatch.svg similarity index 100% rename from src/static/icons/solid/stopwatch.svg rename to apps/client/src/static/icons/solid/stopwatch.svg diff --git a/src/static/icons/solid/store-alt.svg b/apps/client/src/static/icons/solid/store-alt.svg similarity index 100% rename from src/static/icons/solid/store-alt.svg rename to apps/client/src/static/icons/solid/store-alt.svg diff --git a/src/static/icons/solid/store.svg b/apps/client/src/static/icons/solid/store.svg similarity index 100% rename from src/static/icons/solid/store.svg rename to apps/client/src/static/icons/solid/store.svg diff --git a/src/static/icons/solid/stream.svg b/apps/client/src/static/icons/solid/stream.svg similarity index 100% rename from src/static/icons/solid/stream.svg rename to apps/client/src/static/icons/solid/stream.svg diff --git a/src/static/icons/solid/street-view.svg b/apps/client/src/static/icons/solid/street-view.svg similarity index 100% rename from src/static/icons/solid/street-view.svg rename to apps/client/src/static/icons/solid/street-view.svg diff --git a/src/static/icons/solid/stretcher.svg b/apps/client/src/static/icons/solid/stretcher.svg similarity index 100% rename from src/static/icons/solid/stretcher.svg rename to apps/client/src/static/icons/solid/stretcher.svg diff --git a/src/static/icons/solid/strikethrough.svg b/apps/client/src/static/icons/solid/strikethrough.svg similarity index 100% rename from src/static/icons/solid/strikethrough.svg rename to apps/client/src/static/icons/solid/strikethrough.svg diff --git a/src/static/icons/solid/stroopwafel.svg b/apps/client/src/static/icons/solid/stroopwafel.svg similarity index 100% rename from src/static/icons/solid/stroopwafel.svg rename to apps/client/src/static/icons/solid/stroopwafel.svg diff --git a/src/static/icons/solid/subscript.svg b/apps/client/src/static/icons/solid/subscript.svg similarity index 100% rename from src/static/icons/solid/subscript.svg rename to apps/client/src/static/icons/solid/subscript.svg diff --git a/src/static/icons/solid/subway.svg b/apps/client/src/static/icons/solid/subway.svg similarity index 100% rename from src/static/icons/solid/subway.svg rename to apps/client/src/static/icons/solid/subway.svg diff --git a/src/static/icons/solid/suitcase-rolling.svg b/apps/client/src/static/icons/solid/suitcase-rolling.svg similarity index 100% rename from src/static/icons/solid/suitcase-rolling.svg rename to apps/client/src/static/icons/solid/suitcase-rolling.svg diff --git a/src/static/icons/solid/suitcase.svg b/apps/client/src/static/icons/solid/suitcase.svg similarity index 100% rename from src/static/icons/solid/suitcase.svg rename to apps/client/src/static/icons/solid/suitcase.svg diff --git a/src/static/icons/solid/sun-cloud.svg b/apps/client/src/static/icons/solid/sun-cloud.svg similarity index 100% rename from src/static/icons/solid/sun-cloud.svg rename to apps/client/src/static/icons/solid/sun-cloud.svg diff --git a/src/static/icons/solid/sun-dust.svg b/apps/client/src/static/icons/solid/sun-dust.svg similarity index 100% rename from src/static/icons/solid/sun-dust.svg rename to apps/client/src/static/icons/solid/sun-dust.svg diff --git a/src/static/icons/solid/sun-haze.svg b/apps/client/src/static/icons/solid/sun-haze.svg similarity index 100% rename from src/static/icons/solid/sun-haze.svg rename to apps/client/src/static/icons/solid/sun-haze.svg diff --git a/src/static/icons/solid/sun.svg b/apps/client/src/static/icons/solid/sun.svg similarity index 100% rename from src/static/icons/solid/sun.svg rename to apps/client/src/static/icons/solid/sun.svg diff --git a/src/static/icons/solid/sunglasses.svg b/apps/client/src/static/icons/solid/sunglasses.svg similarity index 100% rename from src/static/icons/solid/sunglasses.svg rename to apps/client/src/static/icons/solid/sunglasses.svg diff --git a/src/static/icons/solid/sunrise.svg b/apps/client/src/static/icons/solid/sunrise.svg similarity index 100% rename from src/static/icons/solid/sunrise.svg rename to apps/client/src/static/icons/solid/sunrise.svg diff --git a/src/static/icons/solid/sunset.svg b/apps/client/src/static/icons/solid/sunset.svg similarity index 100% rename from src/static/icons/solid/sunset.svg rename to apps/client/src/static/icons/solid/sunset.svg diff --git a/src/static/icons/solid/superscript.svg b/apps/client/src/static/icons/solid/superscript.svg similarity index 100% rename from src/static/icons/solid/superscript.svg rename to apps/client/src/static/icons/solid/superscript.svg diff --git a/src/static/icons/solid/surprise.svg b/apps/client/src/static/icons/solid/surprise.svg similarity index 100% rename from src/static/icons/solid/surprise.svg rename to apps/client/src/static/icons/solid/surprise.svg diff --git a/src/static/icons/solid/swatchbook.svg b/apps/client/src/static/icons/solid/swatchbook.svg similarity index 100% rename from src/static/icons/solid/swatchbook.svg rename to apps/client/src/static/icons/solid/swatchbook.svg diff --git a/src/static/icons/solid/swimmer.svg b/apps/client/src/static/icons/solid/swimmer.svg similarity index 100% rename from src/static/icons/solid/swimmer.svg rename to apps/client/src/static/icons/solid/swimmer.svg diff --git a/src/static/icons/solid/swimming-pool.svg b/apps/client/src/static/icons/solid/swimming-pool.svg similarity index 100% rename from src/static/icons/solid/swimming-pool.svg rename to apps/client/src/static/icons/solid/swimming-pool.svg diff --git a/src/static/icons/solid/sword-laser-alt.svg b/apps/client/src/static/icons/solid/sword-laser-alt.svg similarity index 100% rename from src/static/icons/solid/sword-laser-alt.svg rename to apps/client/src/static/icons/solid/sword-laser-alt.svg diff --git a/src/static/icons/solid/sword-laser.svg b/apps/client/src/static/icons/solid/sword-laser.svg similarity index 100% rename from src/static/icons/solid/sword-laser.svg rename to apps/client/src/static/icons/solid/sword-laser.svg diff --git a/src/static/icons/solid/sword.svg b/apps/client/src/static/icons/solid/sword.svg similarity index 100% rename from src/static/icons/solid/sword.svg rename to apps/client/src/static/icons/solid/sword.svg diff --git a/src/static/icons/solid/swords-laser.svg b/apps/client/src/static/icons/solid/swords-laser.svg similarity index 100% rename from src/static/icons/solid/swords-laser.svg rename to apps/client/src/static/icons/solid/swords-laser.svg diff --git a/src/static/icons/solid/swords.svg b/apps/client/src/static/icons/solid/swords.svg similarity index 100% rename from src/static/icons/solid/swords.svg rename to apps/client/src/static/icons/solid/swords.svg diff --git a/src/static/icons/solid/synagogue.svg b/apps/client/src/static/icons/solid/synagogue.svg similarity index 100% rename from src/static/icons/solid/synagogue.svg rename to apps/client/src/static/icons/solid/synagogue.svg diff --git a/src/static/icons/solid/sync-alt.svg b/apps/client/src/static/icons/solid/sync-alt.svg similarity index 100% rename from src/static/icons/solid/sync-alt.svg rename to apps/client/src/static/icons/solid/sync-alt.svg diff --git a/src/static/icons/solid/sync.svg b/apps/client/src/static/icons/solid/sync.svg similarity index 100% rename from src/static/icons/solid/sync.svg rename to apps/client/src/static/icons/solid/sync.svg diff --git a/src/static/icons/solid/syringe.svg b/apps/client/src/static/icons/solid/syringe.svg similarity index 100% rename from src/static/icons/solid/syringe.svg rename to apps/client/src/static/icons/solid/syringe.svg diff --git a/src/static/icons/solid/table-tennis.svg b/apps/client/src/static/icons/solid/table-tennis.svg similarity index 100% rename from src/static/icons/solid/table-tennis.svg rename to apps/client/src/static/icons/solid/table-tennis.svg diff --git a/src/static/icons/solid/table.svg b/apps/client/src/static/icons/solid/table.svg similarity index 100% rename from src/static/icons/solid/table.svg rename to apps/client/src/static/icons/solid/table.svg diff --git a/src/static/icons/solid/tablet-alt.svg b/apps/client/src/static/icons/solid/tablet-alt.svg similarity index 100% rename from src/static/icons/solid/tablet-alt.svg rename to apps/client/src/static/icons/solid/tablet-alt.svg diff --git a/src/static/icons/solid/tablet-android-alt.svg b/apps/client/src/static/icons/solid/tablet-android-alt.svg similarity index 100% rename from src/static/icons/solid/tablet-android-alt.svg rename to apps/client/src/static/icons/solid/tablet-android-alt.svg diff --git a/src/static/icons/solid/tablet-android.svg b/apps/client/src/static/icons/solid/tablet-android.svg similarity index 100% rename from src/static/icons/solid/tablet-android.svg rename to apps/client/src/static/icons/solid/tablet-android.svg diff --git a/src/static/icons/solid/tablet-rugged.svg b/apps/client/src/static/icons/solid/tablet-rugged.svg similarity index 100% rename from src/static/icons/solid/tablet-rugged.svg rename to apps/client/src/static/icons/solid/tablet-rugged.svg diff --git a/src/static/icons/solid/tablet.svg b/apps/client/src/static/icons/solid/tablet.svg similarity index 100% rename from src/static/icons/solid/tablet.svg rename to apps/client/src/static/icons/solid/tablet.svg diff --git a/src/static/icons/solid/tablets.svg b/apps/client/src/static/icons/solid/tablets.svg similarity index 100% rename from src/static/icons/solid/tablets.svg rename to apps/client/src/static/icons/solid/tablets.svg diff --git a/src/static/icons/solid/tachometer-alt-average.svg b/apps/client/src/static/icons/solid/tachometer-alt-average.svg similarity index 100% rename from src/static/icons/solid/tachometer-alt-average.svg rename to apps/client/src/static/icons/solid/tachometer-alt-average.svg diff --git a/src/static/icons/solid/tachometer-alt-fast.svg b/apps/client/src/static/icons/solid/tachometer-alt-fast.svg similarity index 100% rename from src/static/icons/solid/tachometer-alt-fast.svg rename to apps/client/src/static/icons/solid/tachometer-alt-fast.svg diff --git a/src/static/icons/solid/tachometer-alt-fastest.svg b/apps/client/src/static/icons/solid/tachometer-alt-fastest.svg similarity index 100% rename from src/static/icons/solid/tachometer-alt-fastest.svg rename to apps/client/src/static/icons/solid/tachometer-alt-fastest.svg diff --git a/src/static/icons/solid/tachometer-alt-slow.svg b/apps/client/src/static/icons/solid/tachometer-alt-slow.svg similarity index 100% rename from src/static/icons/solid/tachometer-alt-slow.svg rename to apps/client/src/static/icons/solid/tachometer-alt-slow.svg diff --git a/src/static/icons/solid/tachometer-alt-slowest.svg b/apps/client/src/static/icons/solid/tachometer-alt-slowest.svg similarity index 100% rename from src/static/icons/solid/tachometer-alt-slowest.svg rename to apps/client/src/static/icons/solid/tachometer-alt-slowest.svg diff --git a/src/static/icons/solid/tachometer-alt.svg b/apps/client/src/static/icons/solid/tachometer-alt.svg similarity index 100% rename from src/static/icons/solid/tachometer-alt.svg rename to apps/client/src/static/icons/solid/tachometer-alt.svg diff --git a/src/static/icons/solid/tachometer-average.svg b/apps/client/src/static/icons/solid/tachometer-average.svg similarity index 100% rename from src/static/icons/solid/tachometer-average.svg rename to apps/client/src/static/icons/solid/tachometer-average.svg diff --git a/src/static/icons/solid/tachometer-fast.svg b/apps/client/src/static/icons/solid/tachometer-fast.svg similarity index 100% rename from src/static/icons/solid/tachometer-fast.svg rename to apps/client/src/static/icons/solid/tachometer-fast.svg diff --git a/src/static/icons/solid/tachometer-fastest.svg b/apps/client/src/static/icons/solid/tachometer-fastest.svg similarity index 100% rename from src/static/icons/solid/tachometer-fastest.svg rename to apps/client/src/static/icons/solid/tachometer-fastest.svg diff --git a/src/static/icons/solid/tachometer-slow.svg b/apps/client/src/static/icons/solid/tachometer-slow.svg similarity index 100% rename from src/static/icons/solid/tachometer-slow.svg rename to apps/client/src/static/icons/solid/tachometer-slow.svg diff --git a/src/static/icons/solid/tachometer-slowest.svg b/apps/client/src/static/icons/solid/tachometer-slowest.svg similarity index 100% rename from src/static/icons/solid/tachometer-slowest.svg rename to apps/client/src/static/icons/solid/tachometer-slowest.svg diff --git a/src/static/icons/solid/tachometer.svg b/apps/client/src/static/icons/solid/tachometer.svg similarity index 100% rename from src/static/icons/solid/tachometer.svg rename to apps/client/src/static/icons/solid/tachometer.svg diff --git a/src/static/icons/solid/taco.svg b/apps/client/src/static/icons/solid/taco.svg similarity index 100% rename from src/static/icons/solid/taco.svg rename to apps/client/src/static/icons/solid/taco.svg diff --git a/src/static/icons/solid/tag.svg b/apps/client/src/static/icons/solid/tag.svg similarity index 100% rename from src/static/icons/solid/tag.svg rename to apps/client/src/static/icons/solid/tag.svg diff --git a/src/static/icons/solid/tags.svg b/apps/client/src/static/icons/solid/tags.svg similarity index 100% rename from src/static/icons/solid/tags.svg rename to apps/client/src/static/icons/solid/tags.svg diff --git a/src/static/icons/solid/tally.svg b/apps/client/src/static/icons/solid/tally.svg similarity index 100% rename from src/static/icons/solid/tally.svg rename to apps/client/src/static/icons/solid/tally.svg diff --git a/src/static/icons/solid/tanakh.svg b/apps/client/src/static/icons/solid/tanakh.svg similarity index 100% rename from src/static/icons/solid/tanakh.svg rename to apps/client/src/static/icons/solid/tanakh.svg diff --git a/src/static/icons/solid/tape.svg b/apps/client/src/static/icons/solid/tape.svg similarity index 100% rename from src/static/icons/solid/tape.svg rename to apps/client/src/static/icons/solid/tape.svg diff --git a/src/static/icons/solid/tasks-alt.svg b/apps/client/src/static/icons/solid/tasks-alt.svg similarity index 100% rename from src/static/icons/solid/tasks-alt.svg rename to apps/client/src/static/icons/solid/tasks-alt.svg diff --git a/src/static/icons/solid/tasks.svg b/apps/client/src/static/icons/solid/tasks.svg similarity index 100% rename from src/static/icons/solid/tasks.svg rename to apps/client/src/static/icons/solid/tasks.svg diff --git a/src/static/icons/solid/taxi.svg b/apps/client/src/static/icons/solid/taxi.svg similarity index 100% rename from src/static/icons/solid/taxi.svg rename to apps/client/src/static/icons/solid/taxi.svg diff --git a/src/static/icons/solid/teeth-open.svg b/apps/client/src/static/icons/solid/teeth-open.svg similarity index 100% rename from src/static/icons/solid/teeth-open.svg rename to apps/client/src/static/icons/solid/teeth-open.svg diff --git a/src/static/icons/solid/teeth.svg b/apps/client/src/static/icons/solid/teeth.svg similarity index 100% rename from src/static/icons/solid/teeth.svg rename to apps/client/src/static/icons/solid/teeth.svg diff --git a/src/static/icons/solid/telescope.svg b/apps/client/src/static/icons/solid/telescope.svg similarity index 100% rename from src/static/icons/solid/telescope.svg rename to apps/client/src/static/icons/solid/telescope.svg diff --git a/src/static/icons/solid/temperature-down.svg b/apps/client/src/static/icons/solid/temperature-down.svg similarity index 100% rename from src/static/icons/solid/temperature-down.svg rename to apps/client/src/static/icons/solid/temperature-down.svg diff --git a/src/static/icons/solid/temperature-frigid.svg b/apps/client/src/static/icons/solid/temperature-frigid.svg similarity index 100% rename from src/static/icons/solid/temperature-frigid.svg rename to apps/client/src/static/icons/solid/temperature-frigid.svg diff --git a/src/static/icons/solid/temperature-high.svg b/apps/client/src/static/icons/solid/temperature-high.svg similarity index 100% rename from src/static/icons/solid/temperature-high.svg rename to apps/client/src/static/icons/solid/temperature-high.svg diff --git a/src/static/icons/solid/temperature-hot.svg b/apps/client/src/static/icons/solid/temperature-hot.svg similarity index 100% rename from src/static/icons/solid/temperature-hot.svg rename to apps/client/src/static/icons/solid/temperature-hot.svg diff --git a/src/static/icons/solid/temperature-low.svg b/apps/client/src/static/icons/solid/temperature-low.svg similarity index 100% rename from src/static/icons/solid/temperature-low.svg rename to apps/client/src/static/icons/solid/temperature-low.svg diff --git a/src/static/icons/solid/temperature-up.svg b/apps/client/src/static/icons/solid/temperature-up.svg similarity index 100% rename from src/static/icons/solid/temperature-up.svg rename to apps/client/src/static/icons/solid/temperature-up.svg diff --git a/src/static/icons/solid/tenge.svg b/apps/client/src/static/icons/solid/tenge.svg similarity index 100% rename from src/static/icons/solid/tenge.svg rename to apps/client/src/static/icons/solid/tenge.svg diff --git a/src/static/icons/solid/tennis-ball.svg b/apps/client/src/static/icons/solid/tennis-ball.svg similarity index 100% rename from src/static/icons/solid/tennis-ball.svg rename to apps/client/src/static/icons/solid/tennis-ball.svg diff --git a/src/static/icons/solid/terminal.svg b/apps/client/src/static/icons/solid/terminal.svg similarity index 100% rename from src/static/icons/solid/terminal.svg rename to apps/client/src/static/icons/solid/terminal.svg diff --git a/src/static/icons/solid/text-height.svg b/apps/client/src/static/icons/solid/text-height.svg similarity index 100% rename from src/static/icons/solid/text-height.svg rename to apps/client/src/static/icons/solid/text-height.svg diff --git a/src/static/icons/solid/text-size.svg b/apps/client/src/static/icons/solid/text-size.svg similarity index 100% rename from src/static/icons/solid/text-size.svg rename to apps/client/src/static/icons/solid/text-size.svg diff --git a/src/static/icons/solid/text-width.svg b/apps/client/src/static/icons/solid/text-width.svg similarity index 100% rename from src/static/icons/solid/text-width.svg rename to apps/client/src/static/icons/solid/text-width.svg diff --git a/src/static/icons/solid/text.svg b/apps/client/src/static/icons/solid/text.svg similarity index 100% rename from src/static/icons/solid/text.svg rename to apps/client/src/static/icons/solid/text.svg diff --git a/src/static/icons/solid/th-large.svg b/apps/client/src/static/icons/solid/th-large.svg similarity index 100% rename from src/static/icons/solid/th-large.svg rename to apps/client/src/static/icons/solid/th-large.svg diff --git a/src/static/icons/solid/th-list.svg b/apps/client/src/static/icons/solid/th-list.svg similarity index 100% rename from src/static/icons/solid/th-list.svg rename to apps/client/src/static/icons/solid/th-list.svg diff --git a/src/static/icons/solid/th.svg b/apps/client/src/static/icons/solid/th.svg similarity index 100% rename from src/static/icons/solid/th.svg rename to apps/client/src/static/icons/solid/th.svg diff --git a/src/static/icons/solid/theater-masks.svg b/apps/client/src/static/icons/solid/theater-masks.svg similarity index 100% rename from src/static/icons/solid/theater-masks.svg rename to apps/client/src/static/icons/solid/theater-masks.svg diff --git a/src/static/icons/solid/thermometer-empty.svg b/apps/client/src/static/icons/solid/thermometer-empty.svg similarity index 100% rename from src/static/icons/solid/thermometer-empty.svg rename to apps/client/src/static/icons/solid/thermometer-empty.svg diff --git a/src/static/icons/solid/thermometer-full.svg b/apps/client/src/static/icons/solid/thermometer-full.svg similarity index 100% rename from src/static/icons/solid/thermometer-full.svg rename to apps/client/src/static/icons/solid/thermometer-full.svg diff --git a/src/static/icons/solid/thermometer-half.svg b/apps/client/src/static/icons/solid/thermometer-half.svg similarity index 100% rename from src/static/icons/solid/thermometer-half.svg rename to apps/client/src/static/icons/solid/thermometer-half.svg diff --git a/src/static/icons/solid/thermometer-quarter.svg b/apps/client/src/static/icons/solid/thermometer-quarter.svg similarity index 100% rename from src/static/icons/solid/thermometer-quarter.svg rename to apps/client/src/static/icons/solid/thermometer-quarter.svg diff --git a/src/static/icons/solid/thermometer-three-quarters.svg b/apps/client/src/static/icons/solid/thermometer-three-quarters.svg similarity index 100% rename from src/static/icons/solid/thermometer-three-quarters.svg rename to apps/client/src/static/icons/solid/thermometer-three-quarters.svg diff --git a/src/static/icons/solid/thermometer.svg b/apps/client/src/static/icons/solid/thermometer.svg similarity index 100% rename from src/static/icons/solid/thermometer.svg rename to apps/client/src/static/icons/solid/thermometer.svg diff --git a/src/static/icons/solid/theta.svg b/apps/client/src/static/icons/solid/theta.svg similarity index 100% rename from src/static/icons/solid/theta.svg rename to apps/client/src/static/icons/solid/theta.svg diff --git a/src/static/icons/solid/thumbs-down.svg b/apps/client/src/static/icons/solid/thumbs-down.svg similarity index 100% rename from src/static/icons/solid/thumbs-down.svg rename to apps/client/src/static/icons/solid/thumbs-down.svg diff --git a/src/static/icons/solid/thumbs-up.svg b/apps/client/src/static/icons/solid/thumbs-up.svg similarity index 100% rename from src/static/icons/solid/thumbs-up.svg rename to apps/client/src/static/icons/solid/thumbs-up.svg diff --git a/src/static/icons/solid/thumbtack.svg b/apps/client/src/static/icons/solid/thumbtack.svg similarity index 100% rename from src/static/icons/solid/thumbtack.svg rename to apps/client/src/static/icons/solid/thumbtack.svg diff --git a/src/static/icons/solid/thunderstorm-moon.svg b/apps/client/src/static/icons/solid/thunderstorm-moon.svg similarity index 100% rename from src/static/icons/solid/thunderstorm-moon.svg rename to apps/client/src/static/icons/solid/thunderstorm-moon.svg diff --git a/src/static/icons/solid/thunderstorm-sun.svg b/apps/client/src/static/icons/solid/thunderstorm-sun.svg similarity index 100% rename from src/static/icons/solid/thunderstorm-sun.svg rename to apps/client/src/static/icons/solid/thunderstorm-sun.svg diff --git a/src/static/icons/solid/thunderstorm.svg b/apps/client/src/static/icons/solid/thunderstorm.svg similarity index 100% rename from src/static/icons/solid/thunderstorm.svg rename to apps/client/src/static/icons/solid/thunderstorm.svg diff --git a/src/static/icons/solid/ticket-alt.svg b/apps/client/src/static/icons/solid/ticket-alt.svg similarity index 100% rename from src/static/icons/solid/ticket-alt.svg rename to apps/client/src/static/icons/solid/ticket-alt.svg diff --git a/src/static/icons/solid/ticket.svg b/apps/client/src/static/icons/solid/ticket.svg similarity index 100% rename from src/static/icons/solid/ticket.svg rename to apps/client/src/static/icons/solid/ticket.svg diff --git a/src/static/icons/solid/tilde.svg b/apps/client/src/static/icons/solid/tilde.svg similarity index 100% rename from src/static/icons/solid/tilde.svg rename to apps/client/src/static/icons/solid/tilde.svg diff --git a/src/static/icons/solid/times-circle.svg b/apps/client/src/static/icons/solid/times-circle.svg similarity index 100% rename from src/static/icons/solid/times-circle.svg rename to apps/client/src/static/icons/solid/times-circle.svg diff --git a/src/static/icons/solid/times-hexagon.svg b/apps/client/src/static/icons/solid/times-hexagon.svg similarity index 100% rename from src/static/icons/solid/times-hexagon.svg rename to apps/client/src/static/icons/solid/times-hexagon.svg diff --git a/src/static/icons/solid/times-octagon.svg b/apps/client/src/static/icons/solid/times-octagon.svg similarity index 100% rename from src/static/icons/solid/times-octagon.svg rename to apps/client/src/static/icons/solid/times-octagon.svg diff --git a/src/static/icons/solid/times-square.svg b/apps/client/src/static/icons/solid/times-square.svg similarity index 100% rename from src/static/icons/solid/times-square.svg rename to apps/client/src/static/icons/solid/times-square.svg diff --git a/src/static/icons/solid/times.svg b/apps/client/src/static/icons/solid/times.svg similarity index 100% rename from src/static/icons/solid/times.svg rename to apps/client/src/static/icons/solid/times.svg diff --git a/src/static/icons/solid/tint-slash.svg b/apps/client/src/static/icons/solid/tint-slash.svg similarity index 100% rename from src/static/icons/solid/tint-slash.svg rename to apps/client/src/static/icons/solid/tint-slash.svg diff --git a/src/static/icons/solid/tint.svg b/apps/client/src/static/icons/solid/tint.svg similarity index 100% rename from src/static/icons/solid/tint.svg rename to apps/client/src/static/icons/solid/tint.svg diff --git a/src/static/icons/solid/tire-flat.svg b/apps/client/src/static/icons/solid/tire-flat.svg similarity index 100% rename from src/static/icons/solid/tire-flat.svg rename to apps/client/src/static/icons/solid/tire-flat.svg diff --git a/src/static/icons/solid/tire-pressure-warning.svg b/apps/client/src/static/icons/solid/tire-pressure-warning.svg similarity index 100% rename from src/static/icons/solid/tire-pressure-warning.svg rename to apps/client/src/static/icons/solid/tire-pressure-warning.svg diff --git a/src/static/icons/solid/tire-rugged.svg b/apps/client/src/static/icons/solid/tire-rugged.svg similarity index 100% rename from src/static/icons/solid/tire-rugged.svg rename to apps/client/src/static/icons/solid/tire-rugged.svg diff --git a/src/static/icons/solid/tire.svg b/apps/client/src/static/icons/solid/tire.svg similarity index 100% rename from src/static/icons/solid/tire.svg rename to apps/client/src/static/icons/solid/tire.svg diff --git a/src/static/icons/solid/tired.svg b/apps/client/src/static/icons/solid/tired.svg similarity index 100% rename from src/static/icons/solid/tired.svg rename to apps/client/src/static/icons/solid/tired.svg diff --git a/src/static/icons/solid/toggle-off.svg b/apps/client/src/static/icons/solid/toggle-off.svg similarity index 100% rename from src/static/icons/solid/toggle-off.svg rename to apps/client/src/static/icons/solid/toggle-off.svg diff --git a/src/static/icons/solid/toggle-on.svg b/apps/client/src/static/icons/solid/toggle-on.svg similarity index 100% rename from src/static/icons/solid/toggle-on.svg rename to apps/client/src/static/icons/solid/toggle-on.svg diff --git a/src/static/icons/solid/toilet-paper-alt.svg b/apps/client/src/static/icons/solid/toilet-paper-alt.svg similarity index 100% rename from src/static/icons/solid/toilet-paper-alt.svg rename to apps/client/src/static/icons/solid/toilet-paper-alt.svg diff --git a/src/static/icons/solid/toilet-paper.svg b/apps/client/src/static/icons/solid/toilet-paper.svg similarity index 100% rename from src/static/icons/solid/toilet-paper.svg rename to apps/client/src/static/icons/solid/toilet-paper.svg diff --git a/src/static/icons/solid/toilet.svg b/apps/client/src/static/icons/solid/toilet.svg similarity index 100% rename from src/static/icons/solid/toilet.svg rename to apps/client/src/static/icons/solid/toilet.svg diff --git a/src/static/icons/solid/tombstone-alt.svg b/apps/client/src/static/icons/solid/tombstone-alt.svg similarity index 100% rename from src/static/icons/solid/tombstone-alt.svg rename to apps/client/src/static/icons/solid/tombstone-alt.svg diff --git a/src/static/icons/solid/tombstone.svg b/apps/client/src/static/icons/solid/tombstone.svg similarity index 100% rename from src/static/icons/solid/tombstone.svg rename to apps/client/src/static/icons/solid/tombstone.svg diff --git a/src/static/icons/solid/toolbox.svg b/apps/client/src/static/icons/solid/toolbox.svg similarity index 100% rename from src/static/icons/solid/toolbox.svg rename to apps/client/src/static/icons/solid/toolbox.svg diff --git a/src/static/icons/solid/tools.svg b/apps/client/src/static/icons/solid/tools.svg similarity index 100% rename from src/static/icons/solid/tools.svg rename to apps/client/src/static/icons/solid/tools.svg diff --git a/src/static/icons/solid/tooth.svg b/apps/client/src/static/icons/solid/tooth.svg similarity index 100% rename from src/static/icons/solid/tooth.svg rename to apps/client/src/static/icons/solid/tooth.svg diff --git a/src/static/icons/solid/toothbrush.svg b/apps/client/src/static/icons/solid/toothbrush.svg similarity index 100% rename from src/static/icons/solid/toothbrush.svg rename to apps/client/src/static/icons/solid/toothbrush.svg diff --git a/src/static/icons/solid/torah.svg b/apps/client/src/static/icons/solid/torah.svg similarity index 100% rename from src/static/icons/solid/torah.svg rename to apps/client/src/static/icons/solid/torah.svg diff --git a/src/static/icons/solid/torii-gate.svg b/apps/client/src/static/icons/solid/torii-gate.svg similarity index 100% rename from src/static/icons/solid/torii-gate.svg rename to apps/client/src/static/icons/solid/torii-gate.svg diff --git a/src/static/icons/solid/tornado.svg b/apps/client/src/static/icons/solid/tornado.svg similarity index 100% rename from src/static/icons/solid/tornado.svg rename to apps/client/src/static/icons/solid/tornado.svg diff --git a/src/static/icons/solid/tractor.svg b/apps/client/src/static/icons/solid/tractor.svg similarity index 100% rename from src/static/icons/solid/tractor.svg rename to apps/client/src/static/icons/solid/tractor.svg diff --git a/src/static/icons/solid/trademark.svg b/apps/client/src/static/icons/solid/trademark.svg similarity index 100% rename from src/static/icons/solid/trademark.svg rename to apps/client/src/static/icons/solid/trademark.svg diff --git a/src/static/icons/solid/traffic-cone.svg b/apps/client/src/static/icons/solid/traffic-cone.svg similarity index 100% rename from src/static/icons/solid/traffic-cone.svg rename to apps/client/src/static/icons/solid/traffic-cone.svg diff --git a/src/static/icons/solid/traffic-light-go.svg b/apps/client/src/static/icons/solid/traffic-light-go.svg similarity index 100% rename from src/static/icons/solid/traffic-light-go.svg rename to apps/client/src/static/icons/solid/traffic-light-go.svg diff --git a/src/static/icons/solid/traffic-light-slow.svg b/apps/client/src/static/icons/solid/traffic-light-slow.svg similarity index 100% rename from src/static/icons/solid/traffic-light-slow.svg rename to apps/client/src/static/icons/solid/traffic-light-slow.svg diff --git a/src/static/icons/solid/traffic-light-stop.svg b/apps/client/src/static/icons/solid/traffic-light-stop.svg similarity index 100% rename from src/static/icons/solid/traffic-light-stop.svg rename to apps/client/src/static/icons/solid/traffic-light-stop.svg diff --git a/src/static/icons/solid/traffic-light.svg b/apps/client/src/static/icons/solid/traffic-light.svg similarity index 100% rename from src/static/icons/solid/traffic-light.svg rename to apps/client/src/static/icons/solid/traffic-light.svg diff --git a/src/static/icons/solid/trailer.svg b/apps/client/src/static/icons/solid/trailer.svg similarity index 100% rename from src/static/icons/solid/trailer.svg rename to apps/client/src/static/icons/solid/trailer.svg diff --git a/src/static/icons/solid/train.svg b/apps/client/src/static/icons/solid/train.svg similarity index 100% rename from src/static/icons/solid/train.svg rename to apps/client/src/static/icons/solid/train.svg diff --git a/src/static/icons/solid/tram.svg b/apps/client/src/static/icons/solid/tram.svg similarity index 100% rename from src/static/icons/solid/tram.svg rename to apps/client/src/static/icons/solid/tram.svg diff --git a/src/static/icons/solid/transgender-alt.svg b/apps/client/src/static/icons/solid/transgender-alt.svg similarity index 100% rename from src/static/icons/solid/transgender-alt.svg rename to apps/client/src/static/icons/solid/transgender-alt.svg diff --git a/src/static/icons/solid/transgender.svg b/apps/client/src/static/icons/solid/transgender.svg similarity index 100% rename from src/static/icons/solid/transgender.svg rename to apps/client/src/static/icons/solid/transgender.svg diff --git a/src/static/icons/solid/transporter-1.svg b/apps/client/src/static/icons/solid/transporter-1.svg similarity index 100% rename from src/static/icons/solid/transporter-1.svg rename to apps/client/src/static/icons/solid/transporter-1.svg diff --git a/src/static/icons/solid/transporter-2.svg b/apps/client/src/static/icons/solid/transporter-2.svg similarity index 100% rename from src/static/icons/solid/transporter-2.svg rename to apps/client/src/static/icons/solid/transporter-2.svg diff --git a/src/static/icons/solid/transporter-3.svg b/apps/client/src/static/icons/solid/transporter-3.svg similarity index 100% rename from src/static/icons/solid/transporter-3.svg rename to apps/client/src/static/icons/solid/transporter-3.svg diff --git a/src/static/icons/solid/transporter-empty.svg b/apps/client/src/static/icons/solid/transporter-empty.svg similarity index 100% rename from src/static/icons/solid/transporter-empty.svg rename to apps/client/src/static/icons/solid/transporter-empty.svg diff --git a/src/static/icons/solid/transporter.svg b/apps/client/src/static/icons/solid/transporter.svg similarity index 100% rename from src/static/icons/solid/transporter.svg rename to apps/client/src/static/icons/solid/transporter.svg diff --git a/src/static/icons/solid/trash-alt.svg b/apps/client/src/static/icons/solid/trash-alt.svg similarity index 100% rename from src/static/icons/solid/trash-alt.svg rename to apps/client/src/static/icons/solid/trash-alt.svg diff --git a/src/static/icons/solid/trash-restore-alt.svg b/apps/client/src/static/icons/solid/trash-restore-alt.svg similarity index 100% rename from src/static/icons/solid/trash-restore-alt.svg rename to apps/client/src/static/icons/solid/trash-restore-alt.svg diff --git a/src/static/icons/solid/trash-restore.svg b/apps/client/src/static/icons/solid/trash-restore.svg similarity index 100% rename from src/static/icons/solid/trash-restore.svg rename to apps/client/src/static/icons/solid/trash-restore.svg diff --git a/src/static/icons/solid/trash-undo-alt.svg b/apps/client/src/static/icons/solid/trash-undo-alt.svg similarity index 100% rename from src/static/icons/solid/trash-undo-alt.svg rename to apps/client/src/static/icons/solid/trash-undo-alt.svg diff --git a/src/static/icons/solid/trash-undo.svg b/apps/client/src/static/icons/solid/trash-undo.svg similarity index 100% rename from src/static/icons/solid/trash-undo.svg rename to apps/client/src/static/icons/solid/trash-undo.svg diff --git a/src/static/icons/solid/trash.svg b/apps/client/src/static/icons/solid/trash.svg similarity index 100% rename from src/static/icons/solid/trash.svg rename to apps/client/src/static/icons/solid/trash.svg diff --git a/src/static/icons/solid/treasure-chest.svg b/apps/client/src/static/icons/solid/treasure-chest.svg similarity index 100% rename from src/static/icons/solid/treasure-chest.svg rename to apps/client/src/static/icons/solid/treasure-chest.svg diff --git a/src/static/icons/solid/tree-alt.svg b/apps/client/src/static/icons/solid/tree-alt.svg similarity index 100% rename from src/static/icons/solid/tree-alt.svg rename to apps/client/src/static/icons/solid/tree-alt.svg diff --git a/src/static/icons/solid/tree-christmas.svg b/apps/client/src/static/icons/solid/tree-christmas.svg similarity index 100% rename from src/static/icons/solid/tree-christmas.svg rename to apps/client/src/static/icons/solid/tree-christmas.svg diff --git a/src/static/icons/solid/tree-decorated.svg b/apps/client/src/static/icons/solid/tree-decorated.svg similarity index 100% rename from src/static/icons/solid/tree-decorated.svg rename to apps/client/src/static/icons/solid/tree-decorated.svg diff --git a/src/static/icons/solid/tree-large.svg b/apps/client/src/static/icons/solid/tree-large.svg similarity index 100% rename from src/static/icons/solid/tree-large.svg rename to apps/client/src/static/icons/solid/tree-large.svg diff --git a/src/static/icons/solid/tree-palm.svg b/apps/client/src/static/icons/solid/tree-palm.svg similarity index 100% rename from src/static/icons/solid/tree-palm.svg rename to apps/client/src/static/icons/solid/tree-palm.svg diff --git a/src/static/icons/solid/tree.svg b/apps/client/src/static/icons/solid/tree.svg similarity index 100% rename from src/static/icons/solid/tree.svg rename to apps/client/src/static/icons/solid/tree.svg diff --git a/src/static/icons/solid/trees.svg b/apps/client/src/static/icons/solid/trees.svg similarity index 100% rename from src/static/icons/solid/trees.svg rename to apps/client/src/static/icons/solid/trees.svg diff --git a/src/static/icons/solid/triangle-music.svg b/apps/client/src/static/icons/solid/triangle-music.svg similarity index 100% rename from src/static/icons/solid/triangle-music.svg rename to apps/client/src/static/icons/solid/triangle-music.svg diff --git a/src/static/icons/solid/triangle.svg b/apps/client/src/static/icons/solid/triangle.svg similarity index 100% rename from src/static/icons/solid/triangle.svg rename to apps/client/src/static/icons/solid/triangle.svg diff --git a/src/static/icons/solid/trophy-alt.svg b/apps/client/src/static/icons/solid/trophy-alt.svg similarity index 100% rename from src/static/icons/solid/trophy-alt.svg rename to apps/client/src/static/icons/solid/trophy-alt.svg diff --git a/src/static/icons/solid/trophy.svg b/apps/client/src/static/icons/solid/trophy.svg similarity index 100% rename from src/static/icons/solid/trophy.svg rename to apps/client/src/static/icons/solid/trophy.svg diff --git a/src/static/icons/solid/truck-container.svg b/apps/client/src/static/icons/solid/truck-container.svg similarity index 100% rename from src/static/icons/solid/truck-container.svg rename to apps/client/src/static/icons/solid/truck-container.svg diff --git a/src/static/icons/solid/truck-couch.svg b/apps/client/src/static/icons/solid/truck-couch.svg similarity index 100% rename from src/static/icons/solid/truck-couch.svg rename to apps/client/src/static/icons/solid/truck-couch.svg diff --git a/src/static/icons/solid/truck-loading.svg b/apps/client/src/static/icons/solid/truck-loading.svg similarity index 100% rename from src/static/icons/solid/truck-loading.svg rename to apps/client/src/static/icons/solid/truck-loading.svg diff --git a/src/static/icons/solid/truck-monster.svg b/apps/client/src/static/icons/solid/truck-monster.svg similarity index 100% rename from src/static/icons/solid/truck-monster.svg rename to apps/client/src/static/icons/solid/truck-monster.svg diff --git a/src/static/icons/solid/truck-moving.svg b/apps/client/src/static/icons/solid/truck-moving.svg similarity index 100% rename from src/static/icons/solid/truck-moving.svg rename to apps/client/src/static/icons/solid/truck-moving.svg diff --git a/src/static/icons/solid/truck-pickup.svg b/apps/client/src/static/icons/solid/truck-pickup.svg similarity index 100% rename from src/static/icons/solid/truck-pickup.svg rename to apps/client/src/static/icons/solid/truck-pickup.svg diff --git a/src/static/icons/solid/truck-plow.svg b/apps/client/src/static/icons/solid/truck-plow.svg similarity index 100% rename from src/static/icons/solid/truck-plow.svg rename to apps/client/src/static/icons/solid/truck-plow.svg diff --git a/src/static/icons/solid/truck-ramp.svg b/apps/client/src/static/icons/solid/truck-ramp.svg similarity index 100% rename from src/static/icons/solid/truck-ramp.svg rename to apps/client/src/static/icons/solid/truck-ramp.svg diff --git a/src/static/icons/solid/truck.svg b/apps/client/src/static/icons/solid/truck.svg similarity index 100% rename from src/static/icons/solid/truck.svg rename to apps/client/src/static/icons/solid/truck.svg diff --git a/src/static/icons/solid/trumpet.svg b/apps/client/src/static/icons/solid/trumpet.svg similarity index 100% rename from src/static/icons/solid/trumpet.svg rename to apps/client/src/static/icons/solid/trumpet.svg diff --git a/src/static/icons/solid/tshirt.svg b/apps/client/src/static/icons/solid/tshirt.svg similarity index 100% rename from src/static/icons/solid/tshirt.svg rename to apps/client/src/static/icons/solid/tshirt.svg diff --git a/src/static/icons/solid/tty.svg b/apps/client/src/static/icons/solid/tty.svg similarity index 100% rename from src/static/icons/solid/tty.svg rename to apps/client/src/static/icons/solid/tty.svg diff --git a/src/static/icons/solid/turkey.svg b/apps/client/src/static/icons/solid/turkey.svg similarity index 100% rename from src/static/icons/solid/turkey.svg rename to apps/client/src/static/icons/solid/turkey.svg diff --git a/src/static/icons/solid/turntable.svg b/apps/client/src/static/icons/solid/turntable.svg similarity index 100% rename from src/static/icons/solid/turntable.svg rename to apps/client/src/static/icons/solid/turntable.svg diff --git a/src/static/icons/solid/turtle.svg b/apps/client/src/static/icons/solid/turtle.svg similarity index 100% rename from src/static/icons/solid/turtle.svg rename to apps/client/src/static/icons/solid/turtle.svg diff --git a/src/static/icons/solid/tv-alt.svg b/apps/client/src/static/icons/solid/tv-alt.svg similarity index 100% rename from src/static/icons/solid/tv-alt.svg rename to apps/client/src/static/icons/solid/tv-alt.svg diff --git a/src/static/icons/solid/tv-music.svg b/apps/client/src/static/icons/solid/tv-music.svg similarity index 100% rename from src/static/icons/solid/tv-music.svg rename to apps/client/src/static/icons/solid/tv-music.svg diff --git a/src/static/icons/solid/tv-retro.svg b/apps/client/src/static/icons/solid/tv-retro.svg similarity index 100% rename from src/static/icons/solid/tv-retro.svg rename to apps/client/src/static/icons/solid/tv-retro.svg diff --git a/src/static/icons/solid/tv.svg b/apps/client/src/static/icons/solid/tv.svg similarity index 100% rename from src/static/icons/solid/tv.svg rename to apps/client/src/static/icons/solid/tv.svg diff --git a/src/static/icons/solid/typewriter.svg b/apps/client/src/static/icons/solid/typewriter.svg similarity index 100% rename from src/static/icons/solid/typewriter.svg rename to apps/client/src/static/icons/solid/typewriter.svg diff --git a/src/static/icons/solid/ufo-beam.svg b/apps/client/src/static/icons/solid/ufo-beam.svg similarity index 100% rename from src/static/icons/solid/ufo-beam.svg rename to apps/client/src/static/icons/solid/ufo-beam.svg diff --git a/src/static/icons/solid/ufo.svg b/apps/client/src/static/icons/solid/ufo.svg similarity index 100% rename from src/static/icons/solid/ufo.svg rename to apps/client/src/static/icons/solid/ufo.svg diff --git a/src/static/icons/solid/umbrella-beach.svg b/apps/client/src/static/icons/solid/umbrella-beach.svg similarity index 100% rename from src/static/icons/solid/umbrella-beach.svg rename to apps/client/src/static/icons/solid/umbrella-beach.svg diff --git a/src/static/icons/solid/umbrella.svg b/apps/client/src/static/icons/solid/umbrella.svg similarity index 100% rename from src/static/icons/solid/umbrella.svg rename to apps/client/src/static/icons/solid/umbrella.svg diff --git a/src/static/icons/solid/underline.svg b/apps/client/src/static/icons/solid/underline.svg similarity index 100% rename from src/static/icons/solid/underline.svg rename to apps/client/src/static/icons/solid/underline.svg diff --git a/src/static/icons/solid/undo-alt.svg b/apps/client/src/static/icons/solid/undo-alt.svg similarity index 100% rename from src/static/icons/solid/undo-alt.svg rename to apps/client/src/static/icons/solid/undo-alt.svg diff --git a/src/static/icons/solid/undo.svg b/apps/client/src/static/icons/solid/undo.svg similarity index 100% rename from src/static/icons/solid/undo.svg rename to apps/client/src/static/icons/solid/undo.svg diff --git a/src/static/icons/solid/unicorn.svg b/apps/client/src/static/icons/solid/unicorn.svg similarity index 100% rename from src/static/icons/solid/unicorn.svg rename to apps/client/src/static/icons/solid/unicorn.svg diff --git a/src/static/icons/solid/union.svg b/apps/client/src/static/icons/solid/union.svg similarity index 100% rename from src/static/icons/solid/union.svg rename to apps/client/src/static/icons/solid/union.svg diff --git a/src/static/icons/solid/universal-access.svg b/apps/client/src/static/icons/solid/universal-access.svg similarity index 100% rename from src/static/icons/solid/universal-access.svg rename to apps/client/src/static/icons/solid/universal-access.svg diff --git a/src/static/icons/solid/university.svg b/apps/client/src/static/icons/solid/university.svg similarity index 100% rename from src/static/icons/solid/university.svg rename to apps/client/src/static/icons/solid/university.svg diff --git a/src/static/icons/solid/unlink.svg b/apps/client/src/static/icons/solid/unlink.svg similarity index 100% rename from src/static/icons/solid/unlink.svg rename to apps/client/src/static/icons/solid/unlink.svg diff --git a/src/static/icons/solid/unlock-alt.svg b/apps/client/src/static/icons/solid/unlock-alt.svg similarity index 100% rename from src/static/icons/solid/unlock-alt.svg rename to apps/client/src/static/icons/solid/unlock-alt.svg diff --git a/src/static/icons/solid/unlock.svg b/apps/client/src/static/icons/solid/unlock.svg similarity index 100% rename from src/static/icons/solid/unlock.svg rename to apps/client/src/static/icons/solid/unlock.svg diff --git a/src/static/icons/solid/upload.svg b/apps/client/src/static/icons/solid/upload.svg similarity index 100% rename from src/static/icons/solid/upload.svg rename to apps/client/src/static/icons/solid/upload.svg diff --git a/src/static/icons/solid/usb-drive.svg b/apps/client/src/static/icons/solid/usb-drive.svg similarity index 100% rename from src/static/icons/solid/usb-drive.svg rename to apps/client/src/static/icons/solid/usb-drive.svg diff --git a/src/static/icons/solid/usd-circle.svg b/apps/client/src/static/icons/solid/usd-circle.svg similarity index 100% rename from src/static/icons/solid/usd-circle.svg rename to apps/client/src/static/icons/solid/usd-circle.svg diff --git a/src/static/icons/solid/usd-square.svg b/apps/client/src/static/icons/solid/usd-square.svg similarity index 100% rename from src/static/icons/solid/usd-square.svg rename to apps/client/src/static/icons/solid/usd-square.svg diff --git a/src/static/icons/solid/user-alien.svg b/apps/client/src/static/icons/solid/user-alien.svg similarity index 100% rename from src/static/icons/solid/user-alien.svg rename to apps/client/src/static/icons/solid/user-alien.svg diff --git a/src/static/icons/solid/user-alt-slash.svg b/apps/client/src/static/icons/solid/user-alt-slash.svg similarity index 100% rename from src/static/icons/solid/user-alt-slash.svg rename to apps/client/src/static/icons/solid/user-alt-slash.svg diff --git a/src/static/icons/solid/user-alt.svg b/apps/client/src/static/icons/solid/user-alt.svg similarity index 100% rename from src/static/icons/solid/user-alt.svg rename to apps/client/src/static/icons/solid/user-alt.svg diff --git a/src/static/icons/solid/user-astronaut.svg b/apps/client/src/static/icons/solid/user-astronaut.svg similarity index 100% rename from src/static/icons/solid/user-astronaut.svg rename to apps/client/src/static/icons/solid/user-astronaut.svg diff --git a/src/static/icons/solid/user-chart.svg b/apps/client/src/static/icons/solid/user-chart.svg similarity index 100% rename from src/static/icons/solid/user-chart.svg rename to apps/client/src/static/icons/solid/user-chart.svg diff --git a/src/static/icons/solid/user-check.svg b/apps/client/src/static/icons/solid/user-check.svg similarity index 100% rename from src/static/icons/solid/user-check.svg rename to apps/client/src/static/icons/solid/user-check.svg diff --git a/src/static/icons/solid/user-circle.svg b/apps/client/src/static/icons/solid/user-circle.svg similarity index 100% rename from src/static/icons/solid/user-circle.svg rename to apps/client/src/static/icons/solid/user-circle.svg diff --git a/src/static/icons/solid/user-clock.svg b/apps/client/src/static/icons/solid/user-clock.svg similarity index 100% rename from src/static/icons/solid/user-clock.svg rename to apps/client/src/static/icons/solid/user-clock.svg diff --git a/src/static/icons/solid/user-cog.svg b/apps/client/src/static/icons/solid/user-cog.svg similarity index 100% rename from src/static/icons/solid/user-cog.svg rename to apps/client/src/static/icons/solid/user-cog.svg diff --git a/src/static/icons/solid/user-cowboy.svg b/apps/client/src/static/icons/solid/user-cowboy.svg similarity index 100% rename from src/static/icons/solid/user-cowboy.svg rename to apps/client/src/static/icons/solid/user-cowboy.svg diff --git a/src/static/icons/solid/user-crown.svg b/apps/client/src/static/icons/solid/user-crown.svg similarity index 100% rename from src/static/icons/solid/user-crown.svg rename to apps/client/src/static/icons/solid/user-crown.svg diff --git a/src/static/icons/solid/user-edit.svg b/apps/client/src/static/icons/solid/user-edit.svg similarity index 100% rename from src/static/icons/solid/user-edit.svg rename to apps/client/src/static/icons/solid/user-edit.svg diff --git a/src/static/icons/solid/user-friends.svg b/apps/client/src/static/icons/solid/user-friends.svg similarity index 100% rename from src/static/icons/solid/user-friends.svg rename to apps/client/src/static/icons/solid/user-friends.svg diff --git a/src/static/icons/solid/user-graduate.svg b/apps/client/src/static/icons/solid/user-graduate.svg similarity index 100% rename from src/static/icons/solid/user-graduate.svg rename to apps/client/src/static/icons/solid/user-graduate.svg diff --git a/src/static/icons/solid/user-hard-hat.svg b/apps/client/src/static/icons/solid/user-hard-hat.svg similarity index 100% rename from src/static/icons/solid/user-hard-hat.svg rename to apps/client/src/static/icons/solid/user-hard-hat.svg diff --git a/src/static/icons/solid/user-headset.svg b/apps/client/src/static/icons/solid/user-headset.svg similarity index 100% rename from src/static/icons/solid/user-headset.svg rename to apps/client/src/static/icons/solid/user-headset.svg diff --git a/src/static/icons/solid/user-injured.svg b/apps/client/src/static/icons/solid/user-injured.svg similarity index 100% rename from src/static/icons/solid/user-injured.svg rename to apps/client/src/static/icons/solid/user-injured.svg diff --git a/src/static/icons/solid/user-lock.svg b/apps/client/src/static/icons/solid/user-lock.svg similarity index 100% rename from src/static/icons/solid/user-lock.svg rename to apps/client/src/static/icons/solid/user-lock.svg diff --git a/src/static/icons/solid/user-md-chat.svg b/apps/client/src/static/icons/solid/user-md-chat.svg similarity index 100% rename from src/static/icons/solid/user-md-chat.svg rename to apps/client/src/static/icons/solid/user-md-chat.svg diff --git a/src/static/icons/solid/user-md.svg b/apps/client/src/static/icons/solid/user-md.svg similarity index 100% rename from src/static/icons/solid/user-md.svg rename to apps/client/src/static/icons/solid/user-md.svg diff --git a/src/static/icons/solid/user-minus.svg b/apps/client/src/static/icons/solid/user-minus.svg similarity index 100% rename from src/static/icons/solid/user-minus.svg rename to apps/client/src/static/icons/solid/user-minus.svg diff --git a/src/static/icons/solid/user-music.svg b/apps/client/src/static/icons/solid/user-music.svg similarity index 100% rename from src/static/icons/solid/user-music.svg rename to apps/client/src/static/icons/solid/user-music.svg diff --git a/src/static/icons/solid/user-ninja.svg b/apps/client/src/static/icons/solid/user-ninja.svg similarity index 100% rename from src/static/icons/solid/user-ninja.svg rename to apps/client/src/static/icons/solid/user-ninja.svg diff --git a/src/static/icons/solid/user-nurse.svg b/apps/client/src/static/icons/solid/user-nurse.svg similarity index 100% rename from src/static/icons/solid/user-nurse.svg rename to apps/client/src/static/icons/solid/user-nurse.svg diff --git a/src/static/icons/solid/user-plus.svg b/apps/client/src/static/icons/solid/user-plus.svg similarity index 100% rename from src/static/icons/solid/user-plus.svg rename to apps/client/src/static/icons/solid/user-plus.svg diff --git a/src/static/icons/solid/user-robot.svg b/apps/client/src/static/icons/solid/user-robot.svg similarity index 100% rename from src/static/icons/solid/user-robot.svg rename to apps/client/src/static/icons/solid/user-robot.svg diff --git a/src/static/icons/solid/user-secret.svg b/apps/client/src/static/icons/solid/user-secret.svg similarity index 100% rename from src/static/icons/solid/user-secret.svg rename to apps/client/src/static/icons/solid/user-secret.svg diff --git a/src/static/icons/solid/user-shield.svg b/apps/client/src/static/icons/solid/user-shield.svg similarity index 100% rename from src/static/icons/solid/user-shield.svg rename to apps/client/src/static/icons/solid/user-shield.svg diff --git a/src/static/icons/solid/user-slash.svg b/apps/client/src/static/icons/solid/user-slash.svg similarity index 100% rename from src/static/icons/solid/user-slash.svg rename to apps/client/src/static/icons/solid/user-slash.svg diff --git a/src/static/icons/solid/user-tag.svg b/apps/client/src/static/icons/solid/user-tag.svg similarity index 100% rename from src/static/icons/solid/user-tag.svg rename to apps/client/src/static/icons/solid/user-tag.svg diff --git a/src/static/icons/solid/user-tie.svg b/apps/client/src/static/icons/solid/user-tie.svg similarity index 100% rename from src/static/icons/solid/user-tie.svg rename to apps/client/src/static/icons/solid/user-tie.svg diff --git a/src/static/icons/solid/user-times.svg b/apps/client/src/static/icons/solid/user-times.svg similarity index 100% rename from src/static/icons/solid/user-times.svg rename to apps/client/src/static/icons/solid/user-times.svg diff --git a/src/static/icons/solid/user-visor.svg b/apps/client/src/static/icons/solid/user-visor.svg similarity index 100% rename from src/static/icons/solid/user-visor.svg rename to apps/client/src/static/icons/solid/user-visor.svg diff --git a/src/static/icons/solid/user.svg b/apps/client/src/static/icons/solid/user.svg similarity index 100% rename from src/static/icons/solid/user.svg rename to apps/client/src/static/icons/solid/user.svg diff --git a/src/static/icons/solid/users-class.svg b/apps/client/src/static/icons/solid/users-class.svg similarity index 100% rename from src/static/icons/solid/users-class.svg rename to apps/client/src/static/icons/solid/users-class.svg diff --git a/src/static/icons/solid/users-cog.svg b/apps/client/src/static/icons/solid/users-cog.svg similarity index 100% rename from src/static/icons/solid/users-cog.svg rename to apps/client/src/static/icons/solid/users-cog.svg diff --git a/src/static/icons/solid/users-crown.svg b/apps/client/src/static/icons/solid/users-crown.svg similarity index 100% rename from src/static/icons/solid/users-crown.svg rename to apps/client/src/static/icons/solid/users-crown.svg diff --git a/src/static/icons/solid/users-medical.svg b/apps/client/src/static/icons/solid/users-medical.svg similarity index 100% rename from src/static/icons/solid/users-medical.svg rename to apps/client/src/static/icons/solid/users-medical.svg diff --git a/src/static/icons/solid/users.svg b/apps/client/src/static/icons/solid/users.svg similarity index 100% rename from src/static/icons/solid/users.svg rename to apps/client/src/static/icons/solid/users.svg diff --git a/src/static/icons/solid/utensil-fork.svg b/apps/client/src/static/icons/solid/utensil-fork.svg similarity index 100% rename from src/static/icons/solid/utensil-fork.svg rename to apps/client/src/static/icons/solid/utensil-fork.svg diff --git a/src/static/icons/solid/utensil-knife.svg b/apps/client/src/static/icons/solid/utensil-knife.svg similarity index 100% rename from src/static/icons/solid/utensil-knife.svg rename to apps/client/src/static/icons/solid/utensil-knife.svg diff --git a/src/static/icons/solid/utensil-spoon.svg b/apps/client/src/static/icons/solid/utensil-spoon.svg similarity index 100% rename from src/static/icons/solid/utensil-spoon.svg rename to apps/client/src/static/icons/solid/utensil-spoon.svg diff --git a/src/static/icons/solid/utensils-alt.svg b/apps/client/src/static/icons/solid/utensils-alt.svg similarity index 100% rename from src/static/icons/solid/utensils-alt.svg rename to apps/client/src/static/icons/solid/utensils-alt.svg diff --git a/src/static/icons/solid/utensils.svg b/apps/client/src/static/icons/solid/utensils.svg similarity index 100% rename from src/static/icons/solid/utensils.svg rename to apps/client/src/static/icons/solid/utensils.svg diff --git a/src/static/icons/solid/vacuum-robot.svg b/apps/client/src/static/icons/solid/vacuum-robot.svg similarity index 100% rename from src/static/icons/solid/vacuum-robot.svg rename to apps/client/src/static/icons/solid/vacuum-robot.svg diff --git a/src/static/icons/solid/vacuum.svg b/apps/client/src/static/icons/solid/vacuum.svg similarity index 100% rename from src/static/icons/solid/vacuum.svg rename to apps/client/src/static/icons/solid/vacuum.svg diff --git a/src/static/icons/solid/value-absolute.svg b/apps/client/src/static/icons/solid/value-absolute.svg similarity index 100% rename from src/static/icons/solid/value-absolute.svg rename to apps/client/src/static/icons/solid/value-absolute.svg diff --git a/src/static/icons/solid/vector-square.svg b/apps/client/src/static/icons/solid/vector-square.svg similarity index 100% rename from src/static/icons/solid/vector-square.svg rename to apps/client/src/static/icons/solid/vector-square.svg diff --git a/src/static/icons/solid/venus-double.svg b/apps/client/src/static/icons/solid/venus-double.svg similarity index 100% rename from src/static/icons/solid/venus-double.svg rename to apps/client/src/static/icons/solid/venus-double.svg diff --git a/src/static/icons/solid/venus-mars.svg b/apps/client/src/static/icons/solid/venus-mars.svg similarity index 100% rename from src/static/icons/solid/venus-mars.svg rename to apps/client/src/static/icons/solid/venus-mars.svg diff --git a/src/static/icons/solid/venus.svg b/apps/client/src/static/icons/solid/venus.svg similarity index 100% rename from src/static/icons/solid/venus.svg rename to apps/client/src/static/icons/solid/venus.svg diff --git a/src/static/icons/solid/vhs.svg b/apps/client/src/static/icons/solid/vhs.svg similarity index 100% rename from src/static/icons/solid/vhs.svg rename to apps/client/src/static/icons/solid/vhs.svg diff --git a/src/static/icons/solid/vial.svg b/apps/client/src/static/icons/solid/vial.svg similarity index 100% rename from src/static/icons/solid/vial.svg rename to apps/client/src/static/icons/solid/vial.svg diff --git a/src/static/icons/solid/vials.svg b/apps/client/src/static/icons/solid/vials.svg similarity index 100% rename from src/static/icons/solid/vials.svg rename to apps/client/src/static/icons/solid/vials.svg diff --git a/src/static/icons/solid/video-plus.svg b/apps/client/src/static/icons/solid/video-plus.svg similarity index 100% rename from src/static/icons/solid/video-plus.svg rename to apps/client/src/static/icons/solid/video-plus.svg diff --git a/src/static/icons/solid/video-slash.svg b/apps/client/src/static/icons/solid/video-slash.svg similarity index 100% rename from src/static/icons/solid/video-slash.svg rename to apps/client/src/static/icons/solid/video-slash.svg diff --git a/src/static/icons/solid/video.svg b/apps/client/src/static/icons/solid/video.svg similarity index 100% rename from src/static/icons/solid/video.svg rename to apps/client/src/static/icons/solid/video.svg diff --git a/src/static/icons/solid/vihara.svg b/apps/client/src/static/icons/solid/vihara.svg similarity index 100% rename from src/static/icons/solid/vihara.svg rename to apps/client/src/static/icons/solid/vihara.svg diff --git a/src/static/icons/solid/violin.svg b/apps/client/src/static/icons/solid/violin.svg similarity index 100% rename from src/static/icons/solid/violin.svg rename to apps/client/src/static/icons/solid/violin.svg diff --git a/src/static/icons/solid/voicemail.svg b/apps/client/src/static/icons/solid/voicemail.svg similarity index 100% rename from src/static/icons/solid/voicemail.svg rename to apps/client/src/static/icons/solid/voicemail.svg diff --git a/src/static/icons/solid/volcano.svg b/apps/client/src/static/icons/solid/volcano.svg similarity index 100% rename from src/static/icons/solid/volcano.svg rename to apps/client/src/static/icons/solid/volcano.svg diff --git a/src/static/icons/solid/volleyball-ball.svg b/apps/client/src/static/icons/solid/volleyball-ball.svg similarity index 100% rename from src/static/icons/solid/volleyball-ball.svg rename to apps/client/src/static/icons/solid/volleyball-ball.svg diff --git a/src/static/icons/solid/volume-down.svg b/apps/client/src/static/icons/solid/volume-down.svg similarity index 100% rename from src/static/icons/solid/volume-down.svg rename to apps/client/src/static/icons/solid/volume-down.svg diff --git a/src/static/icons/solid/volume-mute.svg b/apps/client/src/static/icons/solid/volume-mute.svg similarity index 100% rename from src/static/icons/solid/volume-mute.svg rename to apps/client/src/static/icons/solid/volume-mute.svg diff --git a/src/static/icons/solid/volume-off.svg b/apps/client/src/static/icons/solid/volume-off.svg similarity index 100% rename from src/static/icons/solid/volume-off.svg rename to apps/client/src/static/icons/solid/volume-off.svg diff --git a/src/static/icons/solid/volume-slash.svg b/apps/client/src/static/icons/solid/volume-slash.svg similarity index 100% rename from src/static/icons/solid/volume-slash.svg rename to apps/client/src/static/icons/solid/volume-slash.svg diff --git a/src/static/icons/solid/volume-up.svg b/apps/client/src/static/icons/solid/volume-up.svg similarity index 100% rename from src/static/icons/solid/volume-up.svg rename to apps/client/src/static/icons/solid/volume-up.svg diff --git a/src/static/icons/solid/volume.svg b/apps/client/src/static/icons/solid/volume.svg similarity index 100% rename from src/static/icons/solid/volume.svg rename to apps/client/src/static/icons/solid/volume.svg diff --git a/src/static/icons/solid/vote-nay.svg b/apps/client/src/static/icons/solid/vote-nay.svg similarity index 100% rename from src/static/icons/solid/vote-nay.svg rename to apps/client/src/static/icons/solid/vote-nay.svg diff --git a/src/static/icons/solid/vote-yea.svg b/apps/client/src/static/icons/solid/vote-yea.svg similarity index 100% rename from src/static/icons/solid/vote-yea.svg rename to apps/client/src/static/icons/solid/vote-yea.svg diff --git a/src/static/icons/solid/vr-cardboard.svg b/apps/client/src/static/icons/solid/vr-cardboard.svg similarity index 100% rename from src/static/icons/solid/vr-cardboard.svg rename to apps/client/src/static/icons/solid/vr-cardboard.svg diff --git a/src/static/icons/solid/wagon-covered.svg b/apps/client/src/static/icons/solid/wagon-covered.svg similarity index 100% rename from src/static/icons/solid/wagon-covered.svg rename to apps/client/src/static/icons/solid/wagon-covered.svg diff --git a/src/static/icons/solid/walker.svg b/apps/client/src/static/icons/solid/walker.svg similarity index 100% rename from src/static/icons/solid/walker.svg rename to apps/client/src/static/icons/solid/walker.svg diff --git a/src/static/icons/solid/walkie-talkie.svg b/apps/client/src/static/icons/solid/walkie-talkie.svg similarity index 100% rename from src/static/icons/solid/walkie-talkie.svg rename to apps/client/src/static/icons/solid/walkie-talkie.svg diff --git a/src/static/icons/solid/walking.svg b/apps/client/src/static/icons/solid/walking.svg similarity index 100% rename from src/static/icons/solid/walking.svg rename to apps/client/src/static/icons/solid/walking.svg diff --git a/src/static/icons/solid/wallet.svg b/apps/client/src/static/icons/solid/wallet.svg similarity index 100% rename from src/static/icons/solid/wallet.svg rename to apps/client/src/static/icons/solid/wallet.svg diff --git a/src/static/icons/solid/wand-magic.svg b/apps/client/src/static/icons/solid/wand-magic.svg similarity index 100% rename from src/static/icons/solid/wand-magic.svg rename to apps/client/src/static/icons/solid/wand-magic.svg diff --git a/src/static/icons/solid/wand.svg b/apps/client/src/static/icons/solid/wand.svg similarity index 100% rename from src/static/icons/solid/wand.svg rename to apps/client/src/static/icons/solid/wand.svg diff --git a/src/static/icons/solid/warehouse-alt.svg b/apps/client/src/static/icons/solid/warehouse-alt.svg similarity index 100% rename from src/static/icons/solid/warehouse-alt.svg rename to apps/client/src/static/icons/solid/warehouse-alt.svg diff --git a/src/static/icons/solid/warehouse.svg b/apps/client/src/static/icons/solid/warehouse.svg similarity index 100% rename from src/static/icons/solid/warehouse.svg rename to apps/client/src/static/icons/solid/warehouse.svg diff --git a/src/static/icons/solid/washer.svg b/apps/client/src/static/icons/solid/washer.svg similarity index 100% rename from src/static/icons/solid/washer.svg rename to apps/client/src/static/icons/solid/washer.svg diff --git a/src/static/icons/solid/watch-calculator.svg b/apps/client/src/static/icons/solid/watch-calculator.svg similarity index 100% rename from src/static/icons/solid/watch-calculator.svg rename to apps/client/src/static/icons/solid/watch-calculator.svg diff --git a/src/static/icons/solid/watch-fitness.svg b/apps/client/src/static/icons/solid/watch-fitness.svg similarity index 100% rename from src/static/icons/solid/watch-fitness.svg rename to apps/client/src/static/icons/solid/watch-fitness.svg diff --git a/src/static/icons/solid/watch.svg b/apps/client/src/static/icons/solid/watch.svg similarity index 100% rename from src/static/icons/solid/watch.svg rename to apps/client/src/static/icons/solid/watch.svg diff --git a/src/static/icons/solid/water-lower.svg b/apps/client/src/static/icons/solid/water-lower.svg similarity index 100% rename from src/static/icons/solid/water-lower.svg rename to apps/client/src/static/icons/solid/water-lower.svg diff --git a/src/static/icons/solid/water-rise.svg b/apps/client/src/static/icons/solid/water-rise.svg similarity index 100% rename from src/static/icons/solid/water-rise.svg rename to apps/client/src/static/icons/solid/water-rise.svg diff --git a/src/static/icons/solid/water.svg b/apps/client/src/static/icons/solid/water.svg similarity index 100% rename from src/static/icons/solid/water.svg rename to apps/client/src/static/icons/solid/water.svg diff --git a/src/static/icons/solid/wave-sine.svg b/apps/client/src/static/icons/solid/wave-sine.svg similarity index 100% rename from src/static/icons/solid/wave-sine.svg rename to apps/client/src/static/icons/solid/wave-sine.svg diff --git a/src/static/icons/solid/wave-square.svg b/apps/client/src/static/icons/solid/wave-square.svg similarity index 100% rename from src/static/icons/solid/wave-square.svg rename to apps/client/src/static/icons/solid/wave-square.svg diff --git a/src/static/icons/solid/wave-triangle.svg b/apps/client/src/static/icons/solid/wave-triangle.svg similarity index 100% rename from src/static/icons/solid/wave-triangle.svg rename to apps/client/src/static/icons/solid/wave-triangle.svg diff --git a/src/static/icons/solid/waveform-path.svg b/apps/client/src/static/icons/solid/waveform-path.svg similarity index 100% rename from src/static/icons/solid/waveform-path.svg rename to apps/client/src/static/icons/solid/waveform-path.svg diff --git a/src/static/icons/solid/waveform.svg b/apps/client/src/static/icons/solid/waveform.svg similarity index 100% rename from src/static/icons/solid/waveform.svg rename to apps/client/src/static/icons/solid/waveform.svg diff --git a/src/static/icons/solid/webcam-slash.svg b/apps/client/src/static/icons/solid/webcam-slash.svg similarity index 100% rename from src/static/icons/solid/webcam-slash.svg rename to apps/client/src/static/icons/solid/webcam-slash.svg diff --git a/src/static/icons/solid/webcam.svg b/apps/client/src/static/icons/solid/webcam.svg similarity index 100% rename from src/static/icons/solid/webcam.svg rename to apps/client/src/static/icons/solid/webcam.svg diff --git a/src/static/icons/solid/weight-hanging.svg b/apps/client/src/static/icons/solid/weight-hanging.svg similarity index 100% rename from src/static/icons/solid/weight-hanging.svg rename to apps/client/src/static/icons/solid/weight-hanging.svg diff --git a/src/static/icons/solid/weight.svg b/apps/client/src/static/icons/solid/weight.svg similarity index 100% rename from src/static/icons/solid/weight.svg rename to apps/client/src/static/icons/solid/weight.svg diff --git a/src/static/icons/solid/whale.svg b/apps/client/src/static/icons/solid/whale.svg similarity index 100% rename from src/static/icons/solid/whale.svg rename to apps/client/src/static/icons/solid/whale.svg diff --git a/src/static/icons/solid/wheat.svg b/apps/client/src/static/icons/solid/wheat.svg similarity index 100% rename from src/static/icons/solid/wheat.svg rename to apps/client/src/static/icons/solid/wheat.svg diff --git a/src/static/icons/solid/wheelchair.svg b/apps/client/src/static/icons/solid/wheelchair.svg similarity index 100% rename from src/static/icons/solid/wheelchair.svg rename to apps/client/src/static/icons/solid/wheelchair.svg diff --git a/src/static/icons/solid/whistle.svg b/apps/client/src/static/icons/solid/whistle.svg similarity index 100% rename from src/static/icons/solid/whistle.svg rename to apps/client/src/static/icons/solid/whistle.svg diff --git a/src/static/icons/solid/wifi-1.svg b/apps/client/src/static/icons/solid/wifi-1.svg similarity index 100% rename from src/static/icons/solid/wifi-1.svg rename to apps/client/src/static/icons/solid/wifi-1.svg diff --git a/src/static/icons/solid/wifi-2.svg b/apps/client/src/static/icons/solid/wifi-2.svg similarity index 100% rename from src/static/icons/solid/wifi-2.svg rename to apps/client/src/static/icons/solid/wifi-2.svg diff --git a/src/static/icons/solid/wifi-slash.svg b/apps/client/src/static/icons/solid/wifi-slash.svg similarity index 100% rename from src/static/icons/solid/wifi-slash.svg rename to apps/client/src/static/icons/solid/wifi-slash.svg diff --git a/src/static/icons/solid/wifi.svg b/apps/client/src/static/icons/solid/wifi.svg similarity index 100% rename from src/static/icons/solid/wifi.svg rename to apps/client/src/static/icons/solid/wifi.svg diff --git a/src/static/icons/solid/wind-turbine.svg b/apps/client/src/static/icons/solid/wind-turbine.svg similarity index 100% rename from src/static/icons/solid/wind-turbine.svg rename to apps/client/src/static/icons/solid/wind-turbine.svg diff --git a/src/static/icons/solid/wind-warning.svg b/apps/client/src/static/icons/solid/wind-warning.svg similarity index 100% rename from src/static/icons/solid/wind-warning.svg rename to apps/client/src/static/icons/solid/wind-warning.svg diff --git a/src/static/icons/solid/wind.svg b/apps/client/src/static/icons/solid/wind.svg similarity index 100% rename from src/static/icons/solid/wind.svg rename to apps/client/src/static/icons/solid/wind.svg diff --git a/src/static/icons/solid/window-alt.svg b/apps/client/src/static/icons/solid/window-alt.svg similarity index 100% rename from src/static/icons/solid/window-alt.svg rename to apps/client/src/static/icons/solid/window-alt.svg diff --git a/src/static/icons/solid/window-close.svg b/apps/client/src/static/icons/solid/window-close.svg similarity index 100% rename from src/static/icons/solid/window-close.svg rename to apps/client/src/static/icons/solid/window-close.svg diff --git a/src/static/icons/solid/window-frame-open.svg b/apps/client/src/static/icons/solid/window-frame-open.svg similarity index 100% rename from src/static/icons/solid/window-frame-open.svg rename to apps/client/src/static/icons/solid/window-frame-open.svg diff --git a/src/static/icons/solid/window-frame.svg b/apps/client/src/static/icons/solid/window-frame.svg similarity index 100% rename from src/static/icons/solid/window-frame.svg rename to apps/client/src/static/icons/solid/window-frame.svg diff --git a/src/static/icons/solid/window-maximize.svg b/apps/client/src/static/icons/solid/window-maximize.svg similarity index 100% rename from src/static/icons/solid/window-maximize.svg rename to apps/client/src/static/icons/solid/window-maximize.svg diff --git a/src/static/icons/solid/window-minimize.svg b/apps/client/src/static/icons/solid/window-minimize.svg similarity index 100% rename from src/static/icons/solid/window-minimize.svg rename to apps/client/src/static/icons/solid/window-minimize.svg diff --git a/src/static/icons/solid/window-restore.svg b/apps/client/src/static/icons/solid/window-restore.svg similarity index 100% rename from src/static/icons/solid/window-restore.svg rename to apps/client/src/static/icons/solid/window-restore.svg diff --git a/src/static/icons/solid/window.svg b/apps/client/src/static/icons/solid/window.svg similarity index 100% rename from src/static/icons/solid/window.svg rename to apps/client/src/static/icons/solid/window.svg diff --git a/src/static/icons/solid/windsock.svg b/apps/client/src/static/icons/solid/windsock.svg similarity index 100% rename from src/static/icons/solid/windsock.svg rename to apps/client/src/static/icons/solid/windsock.svg diff --git a/src/static/icons/solid/wine-bottle.svg b/apps/client/src/static/icons/solid/wine-bottle.svg similarity index 100% rename from src/static/icons/solid/wine-bottle.svg rename to apps/client/src/static/icons/solid/wine-bottle.svg diff --git a/src/static/icons/solid/wine-glass-alt.svg b/apps/client/src/static/icons/solid/wine-glass-alt.svg similarity index 100% rename from src/static/icons/solid/wine-glass-alt.svg rename to apps/client/src/static/icons/solid/wine-glass-alt.svg diff --git a/src/static/icons/solid/wine-glass.svg b/apps/client/src/static/icons/solid/wine-glass.svg similarity index 100% rename from src/static/icons/solid/wine-glass.svg rename to apps/client/src/static/icons/solid/wine-glass.svg diff --git a/src/static/icons/solid/won-sign.svg b/apps/client/src/static/icons/solid/won-sign.svg similarity index 100% rename from src/static/icons/solid/won-sign.svg rename to apps/client/src/static/icons/solid/won-sign.svg diff --git a/src/static/icons/solid/wreath.svg b/apps/client/src/static/icons/solid/wreath.svg similarity index 100% rename from src/static/icons/solid/wreath.svg rename to apps/client/src/static/icons/solid/wreath.svg diff --git a/src/static/icons/solid/wrench.svg b/apps/client/src/static/icons/solid/wrench.svg similarity index 100% rename from src/static/icons/solid/wrench.svg rename to apps/client/src/static/icons/solid/wrench.svg diff --git a/src/static/icons/solid/x-ray.svg b/apps/client/src/static/icons/solid/x-ray.svg similarity index 100% rename from src/static/icons/solid/x-ray.svg rename to apps/client/src/static/icons/solid/x-ray.svg diff --git a/src/static/icons/solid/yen-sign.svg b/apps/client/src/static/icons/solid/yen-sign.svg similarity index 100% rename from src/static/icons/solid/yen-sign.svg rename to apps/client/src/static/icons/solid/yen-sign.svg diff --git a/src/static/icons/solid/yin-yang.svg b/apps/client/src/static/icons/solid/yin-yang.svg similarity index 100% rename from src/static/icons/solid/yin-yang.svg rename to apps/client/src/static/icons/solid/yin-yang.svg diff --git a/src/static/json/icons.tsx b/apps/client/src/static/json/icons.tsx similarity index 100% rename from src/static/json/icons.tsx rename to apps/client/src/static/json/icons.tsx diff --git a/src/store/Bills/bills.actions.tsx b/apps/client/src/store/Bills/bills.actions.tsx similarity index 100% rename from src/store/Bills/bills.actions.tsx rename to apps/client/src/store/Bills/bills.actions.tsx diff --git a/src/store/Bills/bills.reducer.tsx b/apps/client/src/store/Bills/bills.reducer.tsx similarity index 100% rename from src/store/Bills/bills.reducer.tsx rename to apps/client/src/store/Bills/bills.reducer.tsx diff --git a/src/store/Bills/bills.selectors.tsx b/apps/client/src/store/Bills/bills.selectors.tsx similarity index 100% rename from src/store/Bills/bills.selectors.tsx rename to apps/client/src/store/Bills/bills.selectors.tsx diff --git a/src/store/Bills/bills.type.tsx b/apps/client/src/store/Bills/bills.type.tsx similarity index 100% rename from src/store/Bills/bills.type.tsx rename to apps/client/src/store/Bills/bills.type.tsx diff --git a/src/store/CashflowAccounts/CashflowAccounts.actions.tsx b/apps/client/src/store/CashflowAccounts/CashflowAccounts.actions.tsx similarity index 100% rename from src/store/CashflowAccounts/CashflowAccounts.actions.tsx rename to apps/client/src/store/CashflowAccounts/CashflowAccounts.actions.tsx diff --git a/src/store/CashflowAccounts/CashflowAccounts.reducer.tsx b/apps/client/src/store/CashflowAccounts/CashflowAccounts.reducer.tsx similarity index 100% rename from src/store/CashflowAccounts/CashflowAccounts.reducer.tsx rename to apps/client/src/store/CashflowAccounts/CashflowAccounts.reducer.tsx diff --git a/src/store/CashflowAccounts/CashflowAccounts.selectors.tsx b/apps/client/src/store/CashflowAccounts/CashflowAccounts.selectors.tsx similarity index 100% rename from src/store/CashflowAccounts/CashflowAccounts.selectors.tsx rename to apps/client/src/store/CashflowAccounts/CashflowAccounts.selectors.tsx diff --git a/src/store/CashflowAccounts/CashflowAccounts.types.tsx b/apps/client/src/store/CashflowAccounts/CashflowAccounts.types.tsx similarity index 100% rename from src/store/CashflowAccounts/CashflowAccounts.types.tsx rename to apps/client/src/store/CashflowAccounts/CashflowAccounts.types.tsx diff --git a/src/store/CreditNote/creditNote.actions.tsx b/apps/client/src/store/CreditNote/creditNote.actions.tsx similarity index 100% rename from src/store/CreditNote/creditNote.actions.tsx rename to apps/client/src/store/CreditNote/creditNote.actions.tsx diff --git a/src/store/CreditNote/creditNote.reducer.tsx b/apps/client/src/store/CreditNote/creditNote.reducer.tsx similarity index 100% rename from src/store/CreditNote/creditNote.reducer.tsx rename to apps/client/src/store/CreditNote/creditNote.reducer.tsx diff --git a/src/store/CreditNote/creditNote.selector.tsx b/apps/client/src/store/CreditNote/creditNote.selector.tsx similarity index 100% rename from src/store/CreditNote/creditNote.selector.tsx rename to apps/client/src/store/CreditNote/creditNote.selector.tsx diff --git a/src/store/CreditNote/creditNote.type.tsx b/apps/client/src/store/CreditNote/creditNote.type.tsx similarity index 100% rename from src/store/CreditNote/creditNote.type.tsx rename to apps/client/src/store/CreditNote/creditNote.type.tsx diff --git a/src/store/Estimate/estimates.actions.tsx b/apps/client/src/store/Estimate/estimates.actions.tsx similarity index 100% rename from src/store/Estimate/estimates.actions.tsx rename to apps/client/src/store/Estimate/estimates.actions.tsx diff --git a/src/store/Estimate/estimates.reducer.tsx b/apps/client/src/store/Estimate/estimates.reducer.tsx similarity index 100% rename from src/store/Estimate/estimates.reducer.tsx rename to apps/client/src/store/Estimate/estimates.reducer.tsx diff --git a/src/store/Estimate/estimates.selectors.tsx b/apps/client/src/store/Estimate/estimates.selectors.tsx similarity index 100% rename from src/store/Estimate/estimates.selectors.tsx rename to apps/client/src/store/Estimate/estimates.selectors.tsx diff --git a/src/store/Estimate/estimates.types.tsx b/apps/client/src/store/Estimate/estimates.types.tsx similarity index 100% rename from src/store/Estimate/estimates.types.tsx rename to apps/client/src/store/Estimate/estimates.types.tsx diff --git a/src/store/ExchangeRate/exchange.actions.tsx b/apps/client/src/store/ExchangeRate/exchange.actions.tsx similarity index 100% rename from src/store/ExchangeRate/exchange.actions.tsx rename to apps/client/src/store/ExchangeRate/exchange.actions.tsx diff --git a/src/store/ExchangeRate/exchange.reducer.tsx b/apps/client/src/store/ExchangeRate/exchange.reducer.tsx similarity index 100% rename from src/store/ExchangeRate/exchange.reducer.tsx rename to apps/client/src/store/ExchangeRate/exchange.reducer.tsx diff --git a/src/store/ExchangeRate/exchange.selector.tsx b/apps/client/src/store/ExchangeRate/exchange.selector.tsx similarity index 100% rename from src/store/ExchangeRate/exchange.selector.tsx rename to apps/client/src/store/ExchangeRate/exchange.selector.tsx diff --git a/src/store/ExchangeRate/exchange.type.tsx b/apps/client/src/store/ExchangeRate/exchange.type.tsx similarity index 100% rename from src/store/ExchangeRate/exchange.type.tsx rename to apps/client/src/store/ExchangeRate/exchange.type.tsx diff --git a/src/store/Invoice/invoices.actions.tsx b/apps/client/src/store/Invoice/invoices.actions.tsx similarity index 100% rename from src/store/Invoice/invoices.actions.tsx rename to apps/client/src/store/Invoice/invoices.actions.tsx diff --git a/src/store/Invoice/invoices.reducer.tsx b/apps/client/src/store/Invoice/invoices.reducer.tsx similarity index 100% rename from src/store/Invoice/invoices.reducer.tsx rename to apps/client/src/store/Invoice/invoices.reducer.tsx diff --git a/src/store/Invoice/invoices.selector.tsx b/apps/client/src/store/Invoice/invoices.selector.tsx similarity index 100% rename from src/store/Invoice/invoices.selector.tsx rename to apps/client/src/store/Invoice/invoices.selector.tsx diff --git a/src/store/Invoice/invoices.types.tsx b/apps/client/src/store/Invoice/invoices.types.tsx similarity index 100% rename from src/store/Invoice/invoices.types.tsx rename to apps/client/src/store/Invoice/invoices.types.tsx diff --git a/src/store/PaymentMades/paymentMades.actions.tsx b/apps/client/src/store/PaymentMades/paymentMades.actions.tsx similarity index 100% rename from src/store/PaymentMades/paymentMades.actions.tsx rename to apps/client/src/store/PaymentMades/paymentMades.actions.tsx diff --git a/src/store/PaymentMades/paymentMades.reducer.tsx b/apps/client/src/store/PaymentMades/paymentMades.reducer.tsx similarity index 100% rename from src/store/PaymentMades/paymentMades.reducer.tsx rename to apps/client/src/store/PaymentMades/paymentMades.reducer.tsx diff --git a/src/store/PaymentMades/paymentMades.selector.tsx b/apps/client/src/store/PaymentMades/paymentMades.selector.tsx similarity index 100% rename from src/store/PaymentMades/paymentMades.selector.tsx rename to apps/client/src/store/PaymentMades/paymentMades.selector.tsx diff --git a/src/store/PaymentMades/paymentMades.type.tsx b/apps/client/src/store/PaymentMades/paymentMades.type.tsx similarity index 100% rename from src/store/PaymentMades/paymentMades.type.tsx rename to apps/client/src/store/PaymentMades/paymentMades.type.tsx diff --git a/src/store/PaymentReceives/paymentReceives.actions.tsx b/apps/client/src/store/PaymentReceives/paymentReceives.actions.tsx similarity index 100% rename from src/store/PaymentReceives/paymentReceives.actions.tsx rename to apps/client/src/store/PaymentReceives/paymentReceives.actions.tsx diff --git a/src/store/PaymentReceives/paymentReceives.reducer.tsx b/apps/client/src/store/PaymentReceives/paymentReceives.reducer.tsx similarity index 100% rename from src/store/PaymentReceives/paymentReceives.reducer.tsx rename to apps/client/src/store/PaymentReceives/paymentReceives.reducer.tsx diff --git a/src/store/PaymentReceives/paymentReceives.selector.tsx b/apps/client/src/store/PaymentReceives/paymentReceives.selector.tsx similarity index 100% rename from src/store/PaymentReceives/paymentReceives.selector.tsx rename to apps/client/src/store/PaymentReceives/paymentReceives.selector.tsx diff --git a/src/store/PaymentReceives/paymentReceives.type.tsx b/apps/client/src/store/PaymentReceives/paymentReceives.type.tsx similarity index 100% rename from src/store/PaymentReceives/paymentReceives.type.tsx rename to apps/client/src/store/PaymentReceives/paymentReceives.type.tsx diff --git a/src/store/Project/projects.actions.ts b/apps/client/src/store/Project/projects.actions.ts similarity index 100% rename from src/store/Project/projects.actions.ts rename to apps/client/src/store/Project/projects.actions.ts diff --git a/src/store/Project/projects.reducer.ts b/apps/client/src/store/Project/projects.reducer.ts similarity index 100% rename from src/store/Project/projects.reducer.ts rename to apps/client/src/store/Project/projects.reducer.ts diff --git a/src/store/Project/projects.selectors.ts b/apps/client/src/store/Project/projects.selectors.ts similarity index 100% rename from src/store/Project/projects.selectors.ts rename to apps/client/src/store/Project/projects.selectors.ts diff --git a/src/store/Project/projects.type.ts b/apps/client/src/store/Project/projects.type.ts similarity index 100% rename from src/store/Project/projects.type.ts rename to apps/client/src/store/Project/projects.type.ts diff --git a/src/store/ResetMiddleware.tsx b/apps/client/src/store/ResetMiddleware.tsx similarity index 100% rename from src/store/ResetMiddleware.tsx rename to apps/client/src/store/ResetMiddleware.tsx diff --git a/src/store/VendorCredit/VendorCredit.reducer.tsx b/apps/client/src/store/VendorCredit/VendorCredit.reducer.tsx similarity index 100% rename from src/store/VendorCredit/VendorCredit.reducer.tsx rename to apps/client/src/store/VendorCredit/VendorCredit.reducer.tsx diff --git a/src/store/VendorCredit/vendorCredit.actions.tsx b/apps/client/src/store/VendorCredit/vendorCredit.actions.tsx similarity index 100% rename from src/store/VendorCredit/vendorCredit.actions.tsx rename to apps/client/src/store/VendorCredit/vendorCredit.actions.tsx diff --git a/src/store/VendorCredit/vendorCredit.selector.tsx b/apps/client/src/store/VendorCredit/vendorCredit.selector.tsx similarity index 100% rename from src/store/VendorCredit/vendorCredit.selector.tsx rename to apps/client/src/store/VendorCredit/vendorCredit.selector.tsx diff --git a/src/store/VendorCredit/vendorCredit.type.tsx b/apps/client/src/store/VendorCredit/vendorCredit.type.tsx similarity index 100% rename from src/store/VendorCredit/vendorCredit.type.tsx rename to apps/client/src/store/VendorCredit/vendorCredit.type.tsx diff --git a/src/store/WarehouseTransfer/warehouseTransfer.actions.tsx b/apps/client/src/store/WarehouseTransfer/warehouseTransfer.actions.tsx similarity index 100% rename from src/store/WarehouseTransfer/warehouseTransfer.actions.tsx rename to apps/client/src/store/WarehouseTransfer/warehouseTransfer.actions.tsx diff --git a/src/store/WarehouseTransfer/warehouseTransfer.reducer.tsx b/apps/client/src/store/WarehouseTransfer/warehouseTransfer.reducer.tsx similarity index 100% rename from src/store/WarehouseTransfer/warehouseTransfer.reducer.tsx rename to apps/client/src/store/WarehouseTransfer/warehouseTransfer.reducer.tsx diff --git a/src/store/WarehouseTransfer/warehouseTransfer.selector.tsx b/apps/client/src/store/WarehouseTransfer/warehouseTransfer.selector.tsx similarity index 100% rename from src/store/WarehouseTransfer/warehouseTransfer.selector.tsx rename to apps/client/src/store/WarehouseTransfer/warehouseTransfer.selector.tsx diff --git a/src/store/WarehouseTransfer/warehouseTransfer.type.tsx b/apps/client/src/store/WarehouseTransfer/warehouseTransfer.type.tsx similarity index 100% rename from src/store/WarehouseTransfer/warehouseTransfer.type.tsx rename to apps/client/src/store/WarehouseTransfer/warehouseTransfer.type.tsx diff --git a/src/store/accounts/accounts.actions.tsx b/apps/client/src/store/accounts/accounts.actions.tsx similarity index 100% rename from src/store/accounts/accounts.actions.tsx rename to apps/client/src/store/accounts/accounts.actions.tsx diff --git a/src/store/accounts/accounts.reducer.tsx b/apps/client/src/store/accounts/accounts.reducer.tsx similarity index 100% rename from src/store/accounts/accounts.reducer.tsx rename to apps/client/src/store/accounts/accounts.reducer.tsx diff --git a/src/store/accounts/accounts.selectors.tsx b/apps/client/src/store/accounts/accounts.selectors.tsx similarity index 100% rename from src/store/accounts/accounts.selectors.tsx rename to apps/client/src/store/accounts/accounts.selectors.tsx diff --git a/src/store/accounts/accounts.types.tsx b/apps/client/src/store/accounts/accounts.types.tsx similarity index 100% rename from src/store/accounts/accounts.types.tsx rename to apps/client/src/store/accounts/accounts.types.tsx diff --git a/src/store/authentication/authentication.actions.tsx b/apps/client/src/store/authentication/authentication.actions.tsx similarity index 100% rename from src/store/authentication/authentication.actions.tsx rename to apps/client/src/store/authentication/authentication.actions.tsx diff --git a/src/store/authentication/authentication.reducer.tsx b/apps/client/src/store/authentication/authentication.reducer.tsx similarity index 100% rename from src/store/authentication/authentication.reducer.tsx rename to apps/client/src/store/authentication/authentication.reducer.tsx diff --git a/src/store/authentication/authentication.selectors.tsx b/apps/client/src/store/authentication/authentication.selectors.tsx similarity index 100% rename from src/store/authentication/authentication.selectors.tsx rename to apps/client/src/store/authentication/authentication.selectors.tsx diff --git a/src/store/authentication/authentication.types.tsx b/apps/client/src/store/authentication/authentication.types.tsx similarity index 100% rename from src/store/authentication/authentication.types.tsx rename to apps/client/src/store/authentication/authentication.types.tsx diff --git a/src/store/billing/Billing.action.tsx b/apps/client/src/store/billing/Billing.action.tsx similarity index 100% rename from src/store/billing/Billing.action.tsx rename to apps/client/src/store/billing/Billing.action.tsx diff --git a/src/store/createStore.tsx b/apps/client/src/store/createStore.tsx similarity index 100% rename from src/store/createStore.tsx rename to apps/client/src/store/createStore.tsx diff --git a/src/store/currencies/currencies.actions.tsx b/apps/client/src/store/currencies/currencies.actions.tsx similarity index 100% rename from src/store/currencies/currencies.actions.tsx rename to apps/client/src/store/currencies/currencies.actions.tsx diff --git a/src/store/currencies/currencies.reducer.tsx b/apps/client/src/store/currencies/currencies.reducer.tsx similarity index 100% rename from src/store/currencies/currencies.reducer.tsx rename to apps/client/src/store/currencies/currencies.reducer.tsx diff --git a/src/store/currencies/currencies.selector.tsx b/apps/client/src/store/currencies/currencies.selector.tsx similarity index 100% rename from src/store/currencies/currencies.selector.tsx rename to apps/client/src/store/currencies/currencies.selector.tsx diff --git a/src/store/currencies/currencies.types.tsx b/apps/client/src/store/currencies/currencies.types.tsx similarity index 100% rename from src/store/currencies/currencies.types.tsx rename to apps/client/src/store/currencies/currencies.types.tsx diff --git a/src/store/customFields/customFields.actions.tsx b/apps/client/src/store/customFields/customFields.actions.tsx similarity index 100% rename from src/store/customFields/customFields.actions.tsx rename to apps/client/src/store/customFields/customFields.actions.tsx diff --git a/src/store/customFields/customFields.reducer.tsx b/apps/client/src/store/customFields/customFields.reducer.tsx similarity index 100% rename from src/store/customFields/customFields.reducer.tsx rename to apps/client/src/store/customFields/customFields.reducer.tsx diff --git a/src/store/customFields/customFields.types.tsx b/apps/client/src/store/customFields/customFields.types.tsx similarity index 100% rename from src/store/customFields/customFields.types.tsx rename to apps/client/src/store/customFields/customFields.types.tsx diff --git a/src/store/customViews/customViews.actions.tsx b/apps/client/src/store/customViews/customViews.actions.tsx similarity index 100% rename from src/store/customViews/customViews.actions.tsx rename to apps/client/src/store/customViews/customViews.actions.tsx diff --git a/src/store/customViews/customViews.reducer.tsx b/apps/client/src/store/customViews/customViews.reducer.tsx similarity index 100% rename from src/store/customViews/customViews.reducer.tsx rename to apps/client/src/store/customViews/customViews.reducer.tsx diff --git a/src/store/customViews/customViews.selectors.tsx b/apps/client/src/store/customViews/customViews.selectors.tsx similarity index 100% rename from src/store/customViews/customViews.selectors.tsx rename to apps/client/src/store/customViews/customViews.selectors.tsx diff --git a/src/store/customViews/customViews.types.tsx b/apps/client/src/store/customViews/customViews.types.tsx similarity index 100% rename from src/store/customViews/customViews.types.tsx rename to apps/client/src/store/customViews/customViews.types.tsx diff --git a/src/store/customers/customers.actions.tsx b/apps/client/src/store/customers/customers.actions.tsx similarity index 100% rename from src/store/customers/customers.actions.tsx rename to apps/client/src/store/customers/customers.actions.tsx diff --git a/src/store/customers/customers.reducer.tsx b/apps/client/src/store/customers/customers.reducer.tsx similarity index 100% rename from src/store/customers/customers.reducer.tsx rename to apps/client/src/store/customers/customers.reducer.tsx diff --git a/src/store/customers/customers.selectors.tsx b/apps/client/src/store/customers/customers.selectors.tsx similarity index 100% rename from src/store/customers/customers.selectors.tsx rename to apps/client/src/store/customers/customers.selectors.tsx diff --git a/src/store/customers/customers.type.tsx b/apps/client/src/store/customers/customers.type.tsx similarity index 100% rename from src/store/customers/customers.type.tsx rename to apps/client/src/store/customers/customers.type.tsx diff --git a/src/store/dashboard/dashboard.actions.tsx b/apps/client/src/store/dashboard/dashboard.actions.tsx similarity index 100% rename from src/store/dashboard/dashboard.actions.tsx rename to apps/client/src/store/dashboard/dashboard.actions.tsx diff --git a/src/store/dashboard/dashboard.reducer.tsx b/apps/client/src/store/dashboard/dashboard.reducer.tsx similarity index 100% rename from src/store/dashboard/dashboard.reducer.tsx rename to apps/client/src/store/dashboard/dashboard.reducer.tsx diff --git a/src/store/dashboard/dashboard.selectors.tsx b/apps/client/src/store/dashboard/dashboard.selectors.tsx similarity index 100% rename from src/store/dashboard/dashboard.selectors.tsx rename to apps/client/src/store/dashboard/dashboard.selectors.tsx diff --git a/src/store/dashboard/dashboard.types.tsx b/apps/client/src/store/dashboard/dashboard.types.tsx similarity index 100% rename from src/store/dashboard/dashboard.types.tsx rename to apps/client/src/store/dashboard/dashboard.types.tsx diff --git a/src/store/enhancers/monitorReducer.tsx b/apps/client/src/store/enhancers/monitorReducer.tsx similarity index 100% rename from src/store/enhancers/monitorReducer.tsx rename to apps/client/src/store/enhancers/monitorReducer.tsx diff --git a/src/store/expenses/expenses.actions.tsx b/apps/client/src/store/expenses/expenses.actions.tsx similarity index 100% rename from src/store/expenses/expenses.actions.tsx rename to apps/client/src/store/expenses/expenses.actions.tsx diff --git a/src/store/expenses/expenses.reducer.tsx b/apps/client/src/store/expenses/expenses.reducer.tsx similarity index 100% rename from src/store/expenses/expenses.reducer.tsx rename to apps/client/src/store/expenses/expenses.reducer.tsx diff --git a/src/store/expenses/expenses.selectors.tsx b/apps/client/src/store/expenses/expenses.selectors.tsx similarity index 100% rename from src/store/expenses/expenses.selectors.tsx rename to apps/client/src/store/expenses/expenses.selectors.tsx diff --git a/src/store/expenses/expenses.types.tsx b/apps/client/src/store/expenses/expenses.types.tsx similarity index 100% rename from src/store/expenses/expenses.types.tsx rename to apps/client/src/store/expenses/expenses.types.tsx diff --git a/src/store/financialStatement/financialStatements.actions.tsx b/apps/client/src/store/financialStatement/financialStatements.actions.tsx similarity index 100% rename from src/store/financialStatement/financialStatements.actions.tsx rename to apps/client/src/store/financialStatement/financialStatements.actions.tsx diff --git a/src/store/financialStatement/financialStatements.mappers.tsx b/apps/client/src/store/financialStatement/financialStatements.mappers.tsx similarity index 100% rename from src/store/financialStatement/financialStatements.mappers.tsx rename to apps/client/src/store/financialStatement/financialStatements.mappers.tsx diff --git a/src/store/financialStatement/financialStatements.reducer.tsx b/apps/client/src/store/financialStatement/financialStatements.reducer.tsx similarity index 100% rename from src/store/financialStatement/financialStatements.reducer.tsx rename to apps/client/src/store/financialStatement/financialStatements.reducer.tsx diff --git a/src/store/financialStatement/financialStatements.selectors.tsx b/apps/client/src/store/financialStatement/financialStatements.selectors.tsx similarity index 100% rename from src/store/financialStatement/financialStatements.selectors.tsx rename to apps/client/src/store/financialStatement/financialStatements.selectors.tsx diff --git a/src/store/financialStatement/financialStatements.types.tsx b/apps/client/src/store/financialStatement/financialStatements.types.tsx similarity index 100% rename from src/store/financialStatement/financialStatements.types.tsx rename to apps/client/src/store/financialStatement/financialStatements.types.tsx diff --git a/src/store/globalErrors/globalErrors.actions.tsx b/apps/client/src/store/globalErrors/globalErrors.actions.tsx similarity index 100% rename from src/store/globalErrors/globalErrors.actions.tsx rename to apps/client/src/store/globalErrors/globalErrors.actions.tsx diff --git a/src/store/globalErrors/globalErrors.reducer.tsx b/apps/client/src/store/globalErrors/globalErrors.reducer.tsx similarity index 100% rename from src/store/globalErrors/globalErrors.reducer.tsx rename to apps/client/src/store/globalErrors/globalErrors.reducer.tsx diff --git a/src/store/inventoryAdjustments/inventoryAdjustment.actions.tsx b/apps/client/src/store/inventoryAdjustments/inventoryAdjustment.actions.tsx similarity index 100% rename from src/store/inventoryAdjustments/inventoryAdjustment.actions.tsx rename to apps/client/src/store/inventoryAdjustments/inventoryAdjustment.actions.tsx diff --git a/src/store/inventoryAdjustments/inventoryAdjustment.reducer.tsx b/apps/client/src/store/inventoryAdjustments/inventoryAdjustment.reducer.tsx similarity index 100% rename from src/store/inventoryAdjustments/inventoryAdjustment.reducer.tsx rename to apps/client/src/store/inventoryAdjustments/inventoryAdjustment.reducer.tsx diff --git a/src/store/inventoryAdjustments/inventoryAdjustment.selector.tsx b/apps/client/src/store/inventoryAdjustments/inventoryAdjustment.selector.tsx similarity index 100% rename from src/store/inventoryAdjustments/inventoryAdjustment.selector.tsx rename to apps/client/src/store/inventoryAdjustments/inventoryAdjustment.selector.tsx diff --git a/src/store/inventoryAdjustments/inventoryAdjustment.type.tsx b/apps/client/src/store/inventoryAdjustments/inventoryAdjustment.type.tsx similarity index 100% rename from src/store/inventoryAdjustments/inventoryAdjustment.type.tsx rename to apps/client/src/store/inventoryAdjustments/inventoryAdjustment.type.tsx diff --git a/src/store/itemCategories/ItemsCategories.selectors.tsx b/apps/client/src/store/itemCategories/ItemsCategories.selectors.tsx similarity index 100% rename from src/store/itemCategories/ItemsCategories.selectors.tsx rename to apps/client/src/store/itemCategories/ItemsCategories.selectors.tsx diff --git a/src/store/itemCategories/itemsCategory.actions.tsx b/apps/client/src/store/itemCategories/itemsCategory.actions.tsx similarity index 100% rename from src/store/itemCategories/itemsCategory.actions.tsx rename to apps/client/src/store/itemCategories/itemsCategory.actions.tsx diff --git a/src/store/itemCategories/itemsCategory.reducer.tsx b/apps/client/src/store/itemCategories/itemsCategory.reducer.tsx similarity index 100% rename from src/store/itemCategories/itemsCategory.reducer.tsx rename to apps/client/src/store/itemCategories/itemsCategory.reducer.tsx diff --git a/src/store/itemCategories/itemsCategory.type.tsx b/apps/client/src/store/itemCategories/itemsCategory.type.tsx similarity index 100% rename from src/store/itemCategories/itemsCategory.type.tsx rename to apps/client/src/store/itemCategories/itemsCategory.type.tsx diff --git a/src/store/itemCategories/itemsCateory.reducer.tsx b/apps/client/src/store/itemCategories/itemsCateory.reducer.tsx similarity index 100% rename from src/store/itemCategories/itemsCateory.reducer.tsx rename to apps/client/src/store/itemCategories/itemsCateory.reducer.tsx diff --git a/src/store/items/items.actions.tsx b/apps/client/src/store/items/items.actions.tsx similarity index 100% rename from src/store/items/items.actions.tsx rename to apps/client/src/store/items/items.actions.tsx diff --git a/src/store/items/items.reducer.tsx b/apps/client/src/store/items/items.reducer.tsx similarity index 100% rename from src/store/items/items.reducer.tsx rename to apps/client/src/store/items/items.reducer.tsx diff --git a/src/store/items/items.selectors.tsx b/apps/client/src/store/items/items.selectors.tsx similarity index 100% rename from src/store/items/items.selectors.tsx rename to apps/client/src/store/items/items.selectors.tsx diff --git a/src/store/items/items.types.tsx b/apps/client/src/store/items/items.types.tsx similarity index 100% rename from src/store/items/items.types.tsx rename to apps/client/src/store/items/items.types.tsx diff --git a/src/store/journalNumber.reducer.tsx b/apps/client/src/store/journalNumber.reducer.tsx similarity index 100% rename from src/store/journalNumber.reducer.tsx rename to apps/client/src/store/journalNumber.reducer.tsx diff --git a/src/store/localStorage.tsx b/apps/client/src/store/localStorage.tsx similarity index 100% rename from src/store/localStorage.tsx rename to apps/client/src/store/localStorage.tsx diff --git a/src/store/logger.middleware.ts b/apps/client/src/store/logger.middleware.ts similarity index 100% rename from src/store/logger.middleware.ts rename to apps/client/src/store/logger.middleware.ts diff --git a/src/store/manualJournals/manualJournals.actions.tsx b/apps/client/src/store/manualJournals/manualJournals.actions.tsx similarity index 100% rename from src/store/manualJournals/manualJournals.actions.tsx rename to apps/client/src/store/manualJournals/manualJournals.actions.tsx diff --git a/src/store/manualJournals/manualJournals.reducers.tsx b/apps/client/src/store/manualJournals/manualJournals.reducers.tsx similarity index 100% rename from src/store/manualJournals/manualJournals.reducers.tsx rename to apps/client/src/store/manualJournals/manualJournals.reducers.tsx diff --git a/src/store/manualJournals/manualJournals.selectors.tsx b/apps/client/src/store/manualJournals/manualJournals.selectors.tsx similarity index 100% rename from src/store/manualJournals/manualJournals.selectors.tsx rename to apps/client/src/store/manualJournals/manualJournals.selectors.tsx diff --git a/src/store/manualJournals/manualJournals.types.tsx b/apps/client/src/store/manualJournals/manualJournals.types.tsx similarity index 100% rename from src/store/manualJournals/manualJournals.types.tsx rename to apps/client/src/store/manualJournals/manualJournals.types.tsx diff --git a/src/store/organizations/organizations.actions.tsx b/apps/client/src/store/organizations/organizations.actions.tsx similarity index 100% rename from src/store/organizations/organizations.actions.tsx rename to apps/client/src/store/organizations/organizations.actions.tsx diff --git a/src/store/organizations/organizations.reducers.tsx b/apps/client/src/store/organizations/organizations.reducers.tsx similarity index 100% rename from src/store/organizations/organizations.reducers.tsx rename to apps/client/src/store/organizations/organizations.reducers.tsx diff --git a/src/store/organizations/organizations.selectors.tsx b/apps/client/src/store/organizations/organizations.selectors.tsx similarity index 100% rename from src/store/organizations/organizations.selectors.tsx rename to apps/client/src/store/organizations/organizations.selectors.tsx diff --git a/src/store/organizations/organizations.types.tsx b/apps/client/src/store/organizations/organizations.types.tsx similarity index 100% rename from src/store/organizations/organizations.types.tsx rename to apps/client/src/store/organizations/organizations.types.tsx diff --git a/src/store/organizations/withSetupWizard.tsx b/apps/client/src/store/organizations/withSetupWizard.tsx similarity index 100% rename from src/store/organizations/withSetupWizard.tsx rename to apps/client/src/store/organizations/withSetupWizard.tsx diff --git a/src/store/plans/plans.actions.tsx b/apps/client/src/store/plans/plans.actions.tsx similarity index 100% rename from src/store/plans/plans.actions.tsx rename to apps/client/src/store/plans/plans.actions.tsx diff --git a/src/store/plans/plans.reducer.tsx b/apps/client/src/store/plans/plans.reducer.tsx similarity index 100% rename from src/store/plans/plans.reducer.tsx rename to apps/client/src/store/plans/plans.reducer.tsx diff --git a/src/store/plans/plans.selectors.tsx b/apps/client/src/store/plans/plans.selectors.tsx similarity index 100% rename from src/store/plans/plans.selectors.tsx rename to apps/client/src/store/plans/plans.selectors.tsx diff --git a/src/store/plans/plans.types.tsx b/apps/client/src/store/plans/plans.types.tsx similarity index 100% rename from src/store/plans/plans.types.tsx rename to apps/client/src/store/plans/plans.types.tsx diff --git a/src/store/preferences/preferences.actions.tsx b/apps/client/src/store/preferences/preferences.actions.tsx similarity index 100% rename from src/store/preferences/preferences.actions.tsx rename to apps/client/src/store/preferences/preferences.actions.tsx diff --git a/src/store/preferences/preferences.types.tsx b/apps/client/src/store/preferences/preferences.types.tsx similarity index 100% rename from src/store/preferences/preferences.types.tsx rename to apps/client/src/store/preferences/preferences.types.tsx diff --git a/src/store/queryReducers.tsx b/apps/client/src/store/queryReducers.tsx similarity index 100% rename from src/store/queryReducers.tsx rename to apps/client/src/store/queryReducers.tsx diff --git a/src/store/receipts/receipts.actions.tsx b/apps/client/src/store/receipts/receipts.actions.tsx similarity index 100% rename from src/store/receipts/receipts.actions.tsx rename to apps/client/src/store/receipts/receipts.actions.tsx diff --git a/src/store/receipts/receipts.reducer.tsx b/apps/client/src/store/receipts/receipts.reducer.tsx similarity index 100% rename from src/store/receipts/receipts.reducer.tsx rename to apps/client/src/store/receipts/receipts.reducer.tsx diff --git a/src/store/receipts/receipts.selector.tsx b/apps/client/src/store/receipts/receipts.selector.tsx similarity index 100% rename from src/store/receipts/receipts.selector.tsx rename to apps/client/src/store/receipts/receipts.selector.tsx diff --git a/src/store/receipts/receipts.type.tsx b/apps/client/src/store/receipts/receipts.type.tsx similarity index 100% rename from src/store/receipts/receipts.type.tsx rename to apps/client/src/store/receipts/receipts.type.tsx diff --git a/src/store/reducers.tsx b/apps/client/src/store/reducers.tsx similarity index 100% rename from src/store/reducers.tsx rename to apps/client/src/store/reducers.tsx diff --git a/src/store/registers/register.action.tsx b/apps/client/src/store/registers/register.action.tsx similarity index 100% rename from src/store/registers/register.action.tsx rename to apps/client/src/store/registers/register.action.tsx diff --git a/src/store/registers/register.reducer.tsx b/apps/client/src/store/registers/register.reducer.tsx similarity index 100% rename from src/store/registers/register.reducer.tsx rename to apps/client/src/store/registers/register.reducer.tsx diff --git a/src/store/registers/register.type.tsx b/apps/client/src/store/registers/register.type.tsx similarity index 100% rename from src/store/registers/register.type.tsx rename to apps/client/src/store/registers/register.type.tsx diff --git a/src/store/resetPassword/resetPassword.action.tsx b/apps/client/src/store/resetPassword/resetPassword.action.tsx similarity index 100% rename from src/store/resetPassword/resetPassword.action.tsx rename to apps/client/src/store/resetPassword/resetPassword.action.tsx diff --git a/src/store/resources/resources.actions.tsx b/apps/client/src/store/resources/resources.actions.tsx similarity index 100% rename from src/store/resources/resources.actions.tsx rename to apps/client/src/store/resources/resources.actions.tsx diff --git a/src/store/resources/resources.reducer.tsx b/apps/client/src/store/resources/resources.reducer.tsx similarity index 100% rename from src/store/resources/resources.reducer.tsx rename to apps/client/src/store/resources/resources.reducer.tsx diff --git a/src/store/resources/resources.selectors.tsx b/apps/client/src/store/resources/resources.selectors.tsx similarity index 100% rename from src/store/resources/resources.selectors.tsx rename to apps/client/src/store/resources/resources.selectors.tsx diff --git a/src/store/search/search.actions.tsx b/apps/client/src/store/search/search.actions.tsx similarity index 100% rename from src/store/search/search.actions.tsx rename to apps/client/src/store/search/search.actions.tsx diff --git a/src/store/search/search.reducer.tsx b/apps/client/src/store/search/search.reducer.tsx similarity index 100% rename from src/store/search/search.reducer.tsx rename to apps/client/src/store/search/search.reducer.tsx diff --git a/src/store/search/search.type.tsx b/apps/client/src/store/search/search.type.tsx similarity index 100% rename from src/store/search/search.type.tsx rename to apps/client/src/store/search/search.type.tsx diff --git a/src/store/selectors.tsx b/apps/client/src/store/selectors.tsx similarity index 100% rename from src/store/selectors.tsx rename to apps/client/src/store/selectors.tsx diff --git a/src/store/settings/settings.actions.tsx b/apps/client/src/store/settings/settings.actions.tsx similarity index 100% rename from src/store/settings/settings.actions.tsx rename to apps/client/src/store/settings/settings.actions.tsx diff --git a/src/store/settings/settings.reducer.tsx b/apps/client/src/store/settings/settings.reducer.tsx similarity index 100% rename from src/store/settings/settings.reducer.tsx rename to apps/client/src/store/settings/settings.reducer.tsx diff --git a/src/store/settings/settings.type.tsx b/apps/client/src/store/settings/settings.type.tsx similarity index 100% rename from src/store/settings/settings.type.tsx rename to apps/client/src/store/settings/settings.type.tsx diff --git a/src/store/subscription/subscription.actions.tsx b/apps/client/src/store/subscription/subscription.actions.tsx similarity index 100% rename from src/store/subscription/subscription.actions.tsx rename to apps/client/src/store/subscription/subscription.actions.tsx diff --git a/src/store/subscription/subscription.reducer.tsx b/apps/client/src/store/subscription/subscription.reducer.tsx similarity index 100% rename from src/store/subscription/subscription.reducer.tsx rename to apps/client/src/store/subscription/subscription.reducer.tsx diff --git a/src/store/subscription/subscription.selectors.tsx b/apps/client/src/store/subscription/subscription.selectors.tsx similarity index 100% rename from src/store/subscription/subscription.selectors.tsx rename to apps/client/src/store/subscription/subscription.selectors.tsx diff --git a/src/store/subscription/subscription.types.tsx b/apps/client/src/store/subscription/subscription.types.tsx similarity index 100% rename from src/store/subscription/subscription.types.tsx rename to apps/client/src/store/subscription/subscription.types.tsx diff --git a/src/store/tableState.reducer.tsx b/apps/client/src/store/tableState.reducer.tsx similarity index 100% rename from src/store/tableState.reducer.tsx rename to apps/client/src/store/tableState.reducer.tsx diff --git a/src/store/types.tsx b/apps/client/src/store/types.tsx similarity index 100% rename from src/store/types.tsx rename to apps/client/src/store/types.tsx diff --git a/src/store/users/users.actions.tsx b/apps/client/src/store/users/users.actions.tsx similarity index 100% rename from src/store/users/users.actions.tsx rename to apps/client/src/store/users/users.actions.tsx diff --git a/src/store/users/users.reducer.tsx b/apps/client/src/store/users/users.reducer.tsx similarity index 100% rename from src/store/users/users.reducer.tsx rename to apps/client/src/store/users/users.reducer.tsx diff --git a/src/store/users/users.selectors.tsx b/apps/client/src/store/users/users.selectors.tsx similarity index 100% rename from src/store/users/users.selectors.tsx rename to apps/client/src/store/users/users.selectors.tsx diff --git a/src/store/users/users.types.tsx b/apps/client/src/store/users/users.types.tsx similarity index 100% rename from src/store/users/users.types.tsx rename to apps/client/src/store/users/users.types.tsx diff --git a/src/store/vendors/vendors.actions.tsx b/apps/client/src/store/vendors/vendors.actions.tsx similarity index 100% rename from src/store/vendors/vendors.actions.tsx rename to apps/client/src/store/vendors/vendors.actions.tsx diff --git a/src/store/vendors/vendors.reducer.tsx b/apps/client/src/store/vendors/vendors.reducer.tsx similarity index 100% rename from src/store/vendors/vendors.reducer.tsx rename to apps/client/src/store/vendors/vendors.reducer.tsx diff --git a/src/store/vendors/vendors.selectors.tsx b/apps/client/src/store/vendors/vendors.selectors.tsx similarity index 100% rename from src/store/vendors/vendors.selectors.tsx rename to apps/client/src/store/vendors/vendors.selectors.tsx diff --git a/src/store/vendors/vendors.types.tsx b/apps/client/src/store/vendors/vendors.types.tsx similarity index 100% rename from src/store/vendors/vendors.types.tsx rename to apps/client/src/store/vendors/vendors.types.tsx diff --git a/src/style/App.scss b/apps/client/src/style/App.scss similarity index 100% rename from src/style/App.scss rename to apps/client/src/style/App.scss diff --git a/src/style/Base.scss b/apps/client/src/style/Base.scss similarity index 100% rename from src/style/Base.scss rename to apps/client/src/style/Base.scss diff --git a/src/style/components/Alert.scss b/apps/client/src/style/components/Alert.scss similarity index 100% rename from src/style/components/Alert.scss rename to apps/client/src/style/components/Alert.scss diff --git a/src/style/components/BigAmount.scss b/apps/client/src/style/components/BigAmount.scss similarity index 100% rename from src/style/components/BigAmount.scss rename to apps/client/src/style/components/BigAmount.scss diff --git a/src/style/components/BigcapitalLoading.scss b/apps/client/src/style/components/BigcapitalLoading.scss similarity index 100% rename from src/style/components/BigcapitalLoading.scss rename to apps/client/src/style/components/BigcapitalLoading.scss diff --git a/src/style/components/CloudSpinner.scss b/apps/client/src/style/components/CloudSpinner.scss similarity index 100% rename from src/style/components/CloudSpinner.scss rename to apps/client/src/style/components/CloudSpinner.scss diff --git a/src/style/components/CustomScrollbar.scss b/apps/client/src/style/components/CustomScrollbar.scss similarity index 100% rename from src/style/components/CustomScrollbar.scss rename to apps/client/src/style/components/CustomScrollbar.scss diff --git a/src/style/components/DataTable/DataTable.scss b/apps/client/src/style/components/DataTable/DataTable.scss similarity index 100% rename from src/style/components/DataTable/DataTable.scss rename to apps/client/src/style/components/DataTable/DataTable.scss diff --git a/src/style/components/DataTable/DataTableEditable.scss b/apps/client/src/style/components/DataTable/DataTableEditable.scss similarity index 100% rename from src/style/components/DataTable/DataTableEditable.scss rename to apps/client/src/style/components/DataTable/DataTableEditable.scss diff --git a/src/style/components/DataTable/DataTableEmptyStatus.module.scss b/apps/client/src/style/components/DataTable/DataTableEmptyStatus.module.scss similarity index 100% rename from src/style/components/DataTable/DataTableEmptyStatus.module.scss rename to apps/client/src/style/components/DataTable/DataTableEmptyStatus.module.scss diff --git a/src/style/components/DataTable/Pagination.scss b/apps/client/src/style/components/DataTable/Pagination.scss similarity index 100% rename from src/style/components/DataTable/Pagination.scss rename to apps/client/src/style/components/DataTable/Pagination.scss diff --git a/src/style/components/Details.scss b/apps/client/src/style/components/Details.scss similarity index 100% rename from src/style/components/Details.scss rename to apps/client/src/style/components/Details.scss diff --git a/src/style/components/Dialog/Dialog.scss b/apps/client/src/style/components/Dialog/Dialog.scss similarity index 100% rename from src/style/components/Dialog/Dialog.scss rename to apps/client/src/style/components/Dialog/Dialog.scss diff --git a/src/style/components/Drawer.scss b/apps/client/src/style/components/Drawer.scss similarity index 100% rename from src/style/components/Drawer.scss rename to apps/client/src/style/components/Drawer.scss diff --git a/src/style/components/Drawers/AccountDrawer.scss b/apps/client/src/style/components/Drawers/AccountDrawer.scss similarity index 100% rename from src/style/components/Drawers/AccountDrawer.scss rename to apps/client/src/style/components/Drawers/AccountDrawer.scss diff --git a/src/style/components/Drawers/BillDrawer.module.scss b/apps/client/src/style/components/Drawers/BillDrawer.module.scss similarity index 100% rename from src/style/components/Drawers/BillDrawer.module.scss rename to apps/client/src/style/components/Drawers/BillDrawer.module.scss diff --git a/src/style/components/Drawers/CashflowTransactionDrawer.scss b/apps/client/src/style/components/Drawers/CashflowTransactionDrawer.scss similarity index 100% rename from src/style/components/Drawers/CashflowTransactionDrawer.scss rename to apps/client/src/style/components/Drawers/CashflowTransactionDrawer.scss diff --git a/src/style/components/Drawers/DrawerTemplate.scss b/apps/client/src/style/components/Drawers/DrawerTemplate.scss similarity index 100% rename from src/style/components/Drawers/DrawerTemplate.scss rename to apps/client/src/style/components/Drawers/DrawerTemplate.scss diff --git a/src/style/components/Drawers/EstimateDetails.module.scss b/apps/client/src/style/components/Drawers/EstimateDetails.module.scss similarity index 100% rename from src/style/components/Drawers/EstimateDetails.module.scss rename to apps/client/src/style/components/Drawers/EstimateDetails.module.scss diff --git a/src/style/components/Drawers/ExpenseDrawer.scss b/apps/client/src/style/components/Drawers/ExpenseDrawer.scss similarity index 100% rename from src/style/components/Drawers/ExpenseDrawer.scss rename to apps/client/src/style/components/Drawers/ExpenseDrawer.scss diff --git a/src/style/components/Drawers/InventoryAdjustmentDrawer.module.scss b/apps/client/src/style/components/Drawers/InventoryAdjustmentDrawer.module.scss similarity index 100% rename from src/style/components/Drawers/InventoryAdjustmentDrawer.module.scss rename to apps/client/src/style/components/Drawers/InventoryAdjustmentDrawer.module.scss diff --git a/src/style/components/Drawers/ItemDrawer.scss b/apps/client/src/style/components/Drawers/ItemDrawer.scss similarity index 100% rename from src/style/components/Drawers/ItemDrawer.scss rename to apps/client/src/style/components/Drawers/ItemDrawer.scss diff --git a/src/style/components/Drawers/ManualJournalDrawer.scss b/apps/client/src/style/components/Drawers/ManualJournalDrawer.scss similarity index 100% rename from src/style/components/Drawers/ManualJournalDrawer.scss rename to apps/client/src/style/components/Drawers/ManualJournalDrawer.scss diff --git a/src/style/components/Drawers/ReceiptDrawer.module.scss b/apps/client/src/style/components/Drawers/ReceiptDrawer.module.scss similarity index 100% rename from src/style/components/Drawers/ReceiptDrawer.module.scss rename to apps/client/src/style/components/Drawers/ReceiptDrawer.module.scss diff --git a/src/style/components/Drawers/VendorCreditDetail.module.scss b/apps/client/src/style/components/Drawers/VendorCreditDetail.module.scss similarity index 100% rename from src/style/components/Drawers/VendorCreditDetail.module.scss rename to apps/client/src/style/components/Drawers/VendorCreditDetail.module.scss diff --git a/src/style/components/Drawers/ViewDetail/ViewDetail.scss b/apps/client/src/style/components/Drawers/ViewDetail/ViewDetail.scss similarity index 100% rename from src/style/components/Drawers/ViewDetail/ViewDetail.scss rename to apps/client/src/style/components/Drawers/ViewDetail/ViewDetail.scss diff --git a/src/style/components/Hint.scss b/apps/client/src/style/components/Hint.scss similarity index 100% rename from src/style/components/Hint.scss rename to apps/client/src/style/components/Hint.scss diff --git a/src/style/components/MaterialProgressBar.scss b/apps/client/src/style/components/MaterialProgressBar.scss similarity index 100% rename from src/style/components/MaterialProgressBar.scss rename to apps/client/src/style/components/MaterialProgressBar.scss diff --git a/src/style/components/Menu.scss b/apps/client/src/style/components/Menu.scss similarity index 100% rename from src/style/components/Menu.scss rename to apps/client/src/style/components/Menu.scss diff --git a/src/style/components/Overlay.scss b/apps/client/src/style/components/Overlay.scss similarity index 100% rename from src/style/components/Overlay.scss rename to apps/client/src/style/components/Overlay.scss diff --git a/src/style/components/PageForm.scss b/apps/client/src/style/components/PageForm.scss similarity index 100% rename from src/style/components/PageForm.scss rename to apps/client/src/style/components/PageForm.scss diff --git a/src/style/components/Postbox.scss b/apps/client/src/style/components/Postbox.scss similarity index 100% rename from src/style/components/Postbox.scss rename to apps/client/src/style/components/Postbox.scss diff --git a/src/style/components/SidebarOverlay.scss b/apps/client/src/style/components/SidebarOverlay.scss similarity index 100% rename from src/style/components/SidebarOverlay.scss rename to apps/client/src/style/components/SidebarOverlay.scss diff --git a/src/style/components/Skeleton.scss b/apps/client/src/style/components/Skeleton.scss similarity index 100% rename from src/style/components/Skeleton.scss rename to apps/client/src/style/components/Skeleton.scss diff --git a/src/style/components/Toast.scss b/apps/client/src/style/components/Toast.scss similarity index 100% rename from src/style/components/Toast.scss rename to apps/client/src/style/components/Toast.scss diff --git a/src/style/components/Tooltip.scss b/apps/client/src/style/components/Tooltip.scss similarity index 100% rename from src/style/components/Tooltip.scss rename to apps/client/src/style/components/Tooltip.scss diff --git a/src/style/components/UniversalSearch.scss b/apps/client/src/style/components/UniversalSearch.scss similarity index 100% rename from src/style/components/UniversalSearch.scss rename to apps/client/src/style/components/UniversalSearch.scss diff --git a/src/style/components/dragzone.scss b/apps/client/src/style/components/dragzone.scss similarity index 100% rename from src/style/components/dragzone.scss rename to apps/client/src/style/components/dragzone.scss diff --git a/src/style/components/resizer.scss b/apps/client/src/style/components/resizer.scss similarity index 100% rename from src/style/components/resizer.scss rename to apps/client/src/style/components/resizer.scss diff --git a/src/style/components/tabs.scss b/apps/client/src/style/components/tabs.scss similarity index 100% rename from src/style/components/tabs.scss rename to apps/client/src/style/components/tabs.scss diff --git a/src/style/containers/Dashboard/Sidebar.scss b/apps/client/src/style/containers/Dashboard/Sidebar.scss similarity index 100% rename from src/style/containers/Dashboard/Sidebar.scss rename to apps/client/src/style/containers/Dashboard/Sidebar.scss diff --git a/src/style/containers/FinancialStatements/DrawerHeader.scss b/apps/client/src/style/containers/FinancialStatements/DrawerHeader.scss similarity index 100% rename from src/style/containers/FinancialStatements/DrawerHeader.scss rename to apps/client/src/style/containers/FinancialStatements/DrawerHeader.scss diff --git a/src/style/fonts/NotoSans-Black.woff b/apps/client/src/style/fonts/NotoSans-Black.woff similarity index 100% rename from src/style/fonts/NotoSans-Black.woff rename to apps/client/src/style/fonts/NotoSans-Black.woff diff --git a/src/style/fonts/NotoSans-Medium.woff b/apps/client/src/style/fonts/NotoSans-Medium.woff similarity index 100% rename from src/style/fonts/NotoSans-Medium.woff rename to apps/client/src/style/fonts/NotoSans-Medium.woff diff --git a/src/style/fonts/NotoSans-Regular.woff b/apps/client/src/style/fonts/NotoSans-Regular.woff similarity index 100% rename from src/style/fonts/NotoSans-Regular.woff rename to apps/client/src/style/fonts/NotoSans-Regular.woff diff --git a/src/style/fonts/NotoSans-SemiBold.woff b/apps/client/src/style/fonts/NotoSans-SemiBold.woff similarity index 100% rename from src/style/fonts/NotoSans-SemiBold.woff rename to apps/client/src/style/fonts/NotoSans-SemiBold.woff diff --git a/src/style/fonts/NotoSansArabicUI-SemiCondensed.woff b/apps/client/src/style/fonts/NotoSansArabicUI-SemiCondensed.woff similarity index 100% rename from src/style/fonts/NotoSansArabicUI-SemiCondensed.woff rename to apps/client/src/style/fonts/NotoSansArabicUI-SemiCondensed.woff diff --git a/src/style/fonts/NotoSansArabicUI-SemiCondensedBlack.woff b/apps/client/src/style/fonts/NotoSansArabicUI-SemiCondensedBlack.woff similarity index 100% rename from src/style/fonts/NotoSansArabicUI-SemiCondensedBlack.woff rename to apps/client/src/style/fonts/NotoSansArabicUI-SemiCondensedBlack.woff diff --git a/src/style/fonts/NotoSansArabicUI-SemiCondensedMedium.woff b/apps/client/src/style/fonts/NotoSansArabicUI-SemiCondensedMedium.woff similarity index 100% rename from src/style/fonts/NotoSansArabicUI-SemiCondensedMedium.woff rename to apps/client/src/style/fonts/NotoSansArabicUI-SemiCondensedMedium.woff diff --git a/src/style/fonts/NotoSansArabicUI-SemiCondensedSemiBold.woff b/apps/client/src/style/fonts/NotoSansArabicUI-SemiCondensedSemiBold.woff similarity index 100% rename from src/style/fonts/NotoSansArabicUI-SemiCondensedSemiBold.woff rename to apps/client/src/style/fonts/NotoSansArabicUI-SemiCondensedSemiBold.woff diff --git a/src/style/fonts/SegoeArabicUI-Bold.woff2 b/apps/client/src/style/fonts/SegoeArabicUI-Bold.woff2 similarity index 100% rename from src/style/fonts/SegoeArabicUI-Bold.woff2 rename to apps/client/src/style/fonts/SegoeArabicUI-Bold.woff2 diff --git a/src/style/fonts/SegoeArabicUI-Light.woff2 b/apps/client/src/style/fonts/SegoeArabicUI-Light.woff2 similarity index 100% rename from src/style/fonts/SegoeArabicUI-Light.woff2 rename to apps/client/src/style/fonts/SegoeArabicUI-Light.woff2 diff --git a/src/style/fonts/SegoeArabicUI-Regular.woff2 b/apps/client/src/style/fonts/SegoeArabicUI-Regular.woff2 similarity index 100% rename from src/style/fonts/SegoeArabicUI-Regular.woff2 rename to apps/client/src/style/fonts/SegoeArabicUI-Regular.woff2 diff --git a/src/style/fonts/SegoeArabicUI-SemiBold.woff2 b/apps/client/src/style/fonts/SegoeArabicUI-SemiBold.woff2 similarity index 100% rename from src/style/fonts/SegoeArabicUI-SemiBold.woff2 rename to apps/client/src/style/fonts/SegoeArabicUI-SemiBold.woff2 diff --git a/src/style/functions.scss b/apps/client/src/style/functions.scss similarity index 100% rename from src/style/functions.scss rename to apps/client/src/style/functions.scss diff --git a/src/style/normalize.scss b/apps/client/src/style/normalize.scss similarity index 100% rename from src/style/normalize.scss rename to apps/client/src/style/normalize.scss diff --git a/src/style/objects/Bigcapital.scss b/apps/client/src/style/objects/Bigcapital.scss similarity index 100% rename from src/style/objects/Bigcapital.scss rename to apps/client/src/style/objects/Bigcapital.scss diff --git a/src/style/objects/buttons.scss b/apps/client/src/style/objects/buttons.scss similarity index 100% rename from src/style/objects/buttons.scss rename to apps/client/src/style/objects/buttons.scss diff --git a/src/style/objects/form.scss b/apps/client/src/style/objects/form.scss similarity index 100% rename from src/style/objects/form.scss rename to apps/client/src/style/objects/form.scss diff --git a/src/style/objects/switch.scss b/apps/client/src/style/objects/switch.scss similarity index 100% rename from src/style/objects/switch.scss rename to apps/client/src/style/objects/switch.scss diff --git a/src/style/objects/typography.scss b/apps/client/src/style/objects/typography.scss similarity index 100% rename from src/style/objects/typography.scss rename to apps/client/src/style/objects/typography.scss diff --git a/src/style/pages/Accounts/AccountFormDialog.scss b/apps/client/src/style/pages/Accounts/AccountFormDialog.scss similarity index 100% rename from src/style/pages/Accounts/AccountFormDialog.scss rename to apps/client/src/style/pages/Accounts/AccountFormDialog.scss diff --git a/src/style/pages/Accounts/List.scss b/apps/client/src/style/pages/Accounts/List.scss similarity index 100% rename from src/style/pages/Accounts/List.scss rename to apps/client/src/style/pages/Accounts/List.scss diff --git a/src/style/pages/AllocateLandedCost/AllocateLandedCostForm.scss b/apps/client/src/style/pages/AllocateLandedCost/AllocateLandedCostForm.scss similarity index 100% rename from src/style/pages/AllocateLandedCost/AllocateLandedCostForm.scss rename to apps/client/src/style/pages/AllocateLandedCost/AllocateLandedCostForm.scss diff --git a/src/style/pages/AllocateLandedCost/List.scss b/apps/client/src/style/pages/AllocateLandedCost/List.scss similarity index 100% rename from src/style/pages/AllocateLandedCost/List.scss rename to apps/client/src/style/pages/AllocateLandedCost/List.scss diff --git a/src/style/pages/Authentication/Auth.scss b/apps/client/src/style/pages/Authentication/Auth.scss similarity index 100% rename from src/style/pages/Authentication/Auth.scss rename to apps/client/src/style/pages/Authentication/Auth.scss diff --git a/src/style/pages/BadDebt/BadDebtDialog.scss b/apps/client/src/style/pages/BadDebt/BadDebtDialog.scss similarity index 100% rename from src/style/pages/BadDebt/BadDebtDialog.scss rename to apps/client/src/style/pages/BadDebt/BadDebtDialog.scss diff --git a/src/style/pages/Billing/BillingPage.scss b/apps/client/src/style/pages/Billing/BillingPage.scss similarity index 100% rename from src/style/pages/Billing/BillingPage.scss rename to apps/client/src/style/pages/Billing/BillingPage.scss diff --git a/src/style/pages/Bills/List.scss b/apps/client/src/style/pages/Bills/List.scss similarity index 100% rename from src/style/pages/Bills/List.scss rename to apps/client/src/style/pages/Bills/List.scss diff --git a/src/style/pages/Bills/PageForm.scss b/apps/client/src/style/pages/Bills/PageForm.scss similarity index 100% rename from src/style/pages/Bills/PageForm.scss rename to apps/client/src/style/pages/Bills/PageForm.scss diff --git a/src/style/pages/Branches/BranchFormDialog.scss b/apps/client/src/style/pages/Branches/BranchFormDialog.scss similarity index 100% rename from src/style/pages/Branches/BranchFormDialog.scss rename to apps/client/src/style/pages/Branches/BranchFormDialog.scss diff --git a/src/style/pages/CashFlow/AccountTransactions/List.scss b/apps/client/src/style/pages/CashFlow/AccountTransactions/List.scss similarity index 100% rename from src/style/pages/CashFlow/AccountTransactions/List.scss rename to apps/client/src/style/pages/CashFlow/AccountTransactions/List.scss diff --git a/src/style/pages/CashFlow/CashFlowAccounts/List.scss b/apps/client/src/style/pages/CashFlow/CashFlowAccounts/List.scss similarity index 100% rename from src/style/pages/CashFlow/CashFlowAccounts/List.scss rename to apps/client/src/style/pages/CashFlow/CashFlowAccounts/List.scss diff --git a/src/style/pages/CashFlow/CashflowTransactionForm.scss b/apps/client/src/style/pages/CashFlow/CashflowTransactionForm.scss similarity index 100% rename from src/style/pages/CashFlow/CashflowTransactionForm.scss rename to apps/client/src/style/pages/CashFlow/CashflowTransactionForm.scss diff --git a/src/style/pages/ContactDuplicate/ContactDuplicateDialog.scss b/apps/client/src/style/pages/ContactDuplicate/ContactDuplicateDialog.scss similarity index 100% rename from src/style/pages/ContactDuplicate/ContactDuplicateDialog.scss rename to apps/client/src/style/pages/ContactDuplicate/ContactDuplicateDialog.scss diff --git a/src/style/pages/CreditNote/List.scss b/apps/client/src/style/pages/CreditNote/List.scss similarity index 100% rename from src/style/pages/CreditNote/List.scss rename to apps/client/src/style/pages/CreditNote/List.scss diff --git a/src/style/pages/CreditNote/PageForm.scss b/apps/client/src/style/pages/CreditNote/PageForm.scss similarity index 100% rename from src/style/pages/CreditNote/PageForm.scss rename to apps/client/src/style/pages/CreditNote/PageForm.scss diff --git a/src/style/pages/Currency/CurrencyFormDialog.scss b/apps/client/src/style/pages/Currency/CurrencyFormDialog.scss similarity index 100% rename from src/style/pages/Currency/CurrencyFormDialog.scss rename to apps/client/src/style/pages/Currency/CurrencyFormDialog.scss diff --git a/src/style/pages/CustomerOpeningBalance/CustomerOpeningBalance.scss b/apps/client/src/style/pages/CustomerOpeningBalance/CustomerOpeningBalance.scss similarity index 100% rename from src/style/pages/CustomerOpeningBalance/CustomerOpeningBalance.scss rename to apps/client/src/style/pages/CustomerOpeningBalance/CustomerOpeningBalance.scss diff --git a/src/style/pages/Customers/Form.scss b/apps/client/src/style/pages/Customers/Form.scss similarity index 100% rename from src/style/pages/Customers/Form.scss rename to apps/client/src/style/pages/Customers/Form.scss diff --git a/src/style/pages/Customers/List.scss b/apps/client/src/style/pages/Customers/List.scss similarity index 100% rename from src/style/pages/Customers/List.scss rename to apps/client/src/style/pages/Customers/List.scss diff --git a/src/style/pages/Dashboard/Dashboard.scss b/apps/client/src/style/pages/Dashboard/Dashboard.scss similarity index 100% rename from src/style/pages/Dashboard/Dashboard.scss rename to apps/client/src/style/pages/Dashboard/Dashboard.scss diff --git a/src/style/pages/ExchangeRate/ExchangeRateDialog.scss b/apps/client/src/style/pages/ExchangeRate/ExchangeRateDialog.scss similarity index 100% rename from src/style/pages/ExchangeRate/ExchangeRateDialog.scss rename to apps/client/src/style/pages/ExchangeRate/ExchangeRateDialog.scss diff --git a/src/style/pages/Expense/List.scss b/apps/client/src/style/pages/Expense/List.scss similarity index 100% rename from src/style/pages/Expense/List.scss rename to apps/client/src/style/pages/Expense/List.scss diff --git a/src/style/pages/Expense/PageForm.scss b/apps/client/src/style/pages/Expense/PageForm.scss similarity index 100% rename from src/style/pages/Expense/PageForm.scss rename to apps/client/src/style/pages/Expense/PageForm.scss diff --git a/src/style/pages/FinancialStatements/APAgingSummary.scss b/apps/client/src/style/pages/FinancialStatements/APAgingSummary.scss similarity index 100% rename from src/style/pages/FinancialStatements/APAgingSummary.scss rename to apps/client/src/style/pages/FinancialStatements/APAgingSummary.scss diff --git a/src/style/pages/FinancialStatements/CashFlowStatement.scss b/apps/client/src/style/pages/FinancialStatements/CashFlowStatement.scss similarity index 100% rename from src/style/pages/FinancialStatements/CashFlowStatement.scss rename to apps/client/src/style/pages/FinancialStatements/CashFlowStatement.scss diff --git a/src/style/pages/FinancialStatements/ContactsBalanceSummary.scss b/apps/client/src/style/pages/FinancialStatements/ContactsBalanceSummary.scss similarity index 100% rename from src/style/pages/FinancialStatements/ContactsBalanceSummary.scss rename to apps/client/src/style/pages/FinancialStatements/ContactsBalanceSummary.scss diff --git a/src/style/pages/FinancialStatements/FinancialReportPage.scss b/apps/client/src/style/pages/FinancialStatements/FinancialReportPage.scss similarity index 100% rename from src/style/pages/FinancialStatements/FinancialReportPage.scss rename to apps/client/src/style/pages/FinancialStatements/FinancialReportPage.scss diff --git a/src/style/pages/FinancialStatements/FinancialSheets.scss b/apps/client/src/style/pages/FinancialStatements/FinancialSheets.scss similarity index 100% rename from src/style/pages/FinancialStatements/FinancialSheets.scss rename to apps/client/src/style/pages/FinancialStatements/FinancialSheets.scss diff --git a/src/style/pages/FinancialStatements/InventoryItemDetails.scss b/apps/client/src/style/pages/FinancialStatements/InventoryItemDetails.scss similarity index 100% rename from src/style/pages/FinancialStatements/InventoryItemDetails.scss rename to apps/client/src/style/pages/FinancialStatements/InventoryItemDetails.scss diff --git a/src/style/pages/FinancialStatements/Journal.scss b/apps/client/src/style/pages/FinancialStatements/Journal.scss similarity index 100% rename from src/style/pages/FinancialStatements/Journal.scss rename to apps/client/src/style/pages/FinancialStatements/Journal.scss diff --git a/src/style/pages/FinancialStatements/NumberFormatDropdown.scss b/apps/client/src/style/pages/FinancialStatements/NumberFormatDropdown.scss similarity index 100% rename from src/style/pages/FinancialStatements/NumberFormatDropdown.scss rename to apps/client/src/style/pages/FinancialStatements/NumberFormatDropdown.scss diff --git a/src/style/pages/FinancialStatements/SalesAndPurchasesSheet.scss b/apps/client/src/style/pages/FinancialStatements/SalesAndPurchasesSheet.scss similarity index 100% rename from src/style/pages/FinancialStatements/SalesAndPurchasesSheet.scss rename to apps/client/src/style/pages/FinancialStatements/SalesAndPurchasesSheet.scss diff --git a/src/style/pages/HomePage/HomePage.scss b/apps/client/src/style/pages/HomePage/HomePage.scss similarity index 100% rename from src/style/pages/HomePage/HomePage.scss rename to apps/client/src/style/pages/HomePage/HomePage.scss diff --git a/src/style/pages/InventoryAdjustments/List.scss b/apps/client/src/style/pages/InventoryAdjustments/List.scss similarity index 100% rename from src/style/pages/InventoryAdjustments/List.scss rename to apps/client/src/style/pages/InventoryAdjustments/List.scss diff --git a/src/style/pages/ItemCategory/ItemCategoryDialog.scss b/apps/client/src/style/pages/ItemCategory/ItemCategoryDialog.scss similarity index 100% rename from src/style/pages/ItemCategory/ItemCategoryDialog.scss rename to apps/client/src/style/pages/ItemCategory/ItemCategoryDialog.scss diff --git a/src/style/pages/Items/Form.scss b/apps/client/src/style/pages/Items/Form.scss similarity index 100% rename from src/style/pages/Items/Form.scss rename to apps/client/src/style/pages/Items/Form.scss diff --git a/src/style/pages/Items/ItemAdjustmentDialog.scss b/apps/client/src/style/pages/Items/ItemAdjustmentDialog.scss similarity index 100% rename from src/style/pages/Items/ItemAdjustmentDialog.scss rename to apps/client/src/style/pages/Items/ItemAdjustmentDialog.scss diff --git a/src/style/pages/Items/List.scss b/apps/client/src/style/pages/Items/List.scss similarity index 100% rename from src/style/pages/Items/List.scss rename to apps/client/src/style/pages/Items/List.scss diff --git a/src/style/pages/ItemsCategories/List.scss b/apps/client/src/style/pages/ItemsCategories/List.scss similarity index 100% rename from src/style/pages/ItemsCategories/List.scss rename to apps/client/src/style/pages/ItemsCategories/List.scss diff --git a/src/style/pages/JournalEntries/List.scss b/apps/client/src/style/pages/JournalEntries/List.scss similarity index 100% rename from src/style/pages/JournalEntries/List.scss rename to apps/client/src/style/pages/JournalEntries/List.scss diff --git a/src/style/pages/ManualJournal/JournalNumberDialog.scss b/apps/client/src/style/pages/ManualJournal/JournalNumberDialog.scss similarity index 100% rename from src/style/pages/ManualJournal/JournalNumberDialog.scss rename to apps/client/src/style/pages/ManualJournal/JournalNumberDialog.scss diff --git a/src/style/pages/ManualJournal/List.scss b/apps/client/src/style/pages/ManualJournal/List.scss similarity index 100% rename from src/style/pages/ManualJournal/List.scss rename to apps/client/src/style/pages/ManualJournal/List.scss diff --git a/src/style/pages/ManualJournal/MakeJournal.scss b/apps/client/src/style/pages/ManualJournal/MakeJournal.scss similarity index 100% rename from src/style/pages/ManualJournal/MakeJournal.scss rename to apps/client/src/style/pages/ManualJournal/MakeJournal.scss diff --git a/src/style/pages/NotifyConactViaSMS/NotifyConactViaSMSDialog.scss b/apps/client/src/style/pages/NotifyConactViaSMS/NotifyConactViaSMSDialog.scss similarity index 100% rename from src/style/pages/NotifyConactViaSMS/NotifyConactViaSMSDialog.scss rename to apps/client/src/style/pages/NotifyConactViaSMS/NotifyConactViaSMSDialog.scss diff --git a/src/style/pages/PaymentMade/List.scss b/apps/client/src/style/pages/PaymentMade/List.scss similarity index 100% rename from src/style/pages/PaymentMade/List.scss rename to apps/client/src/style/pages/PaymentMade/List.scss diff --git a/src/style/pages/PaymentMade/PageForm.scss b/apps/client/src/style/pages/PaymentMade/PageForm.scss similarity index 100% rename from src/style/pages/PaymentMade/PageForm.scss rename to apps/client/src/style/pages/PaymentMade/PageForm.scss diff --git a/src/style/pages/PaymentReceive/List.scss b/apps/client/src/style/pages/PaymentReceive/List.scss similarity index 100% rename from src/style/pages/PaymentReceive/List.scss rename to apps/client/src/style/pages/PaymentReceive/List.scss diff --git a/src/style/pages/PaymentReceive/PageForm.scss b/apps/client/src/style/pages/PaymentReceive/PageForm.scss similarity index 100% rename from src/style/pages/PaymentReceive/PageForm.scss rename to apps/client/src/style/pages/PaymentReceive/PageForm.scss diff --git a/src/style/pages/PaymentReceive/QuickPaymentReceiveDialog.scss b/apps/client/src/style/pages/PaymentReceive/QuickPaymentReceiveDialog.scss similarity index 100% rename from src/style/pages/PaymentReceive/QuickPaymentReceiveDialog.scss rename to apps/client/src/style/pages/PaymentReceive/QuickPaymentReceiveDialog.scss diff --git a/src/style/pages/PaymentTransactions/List.scss b/apps/client/src/style/pages/PaymentTransactions/List.scss similarity index 100% rename from src/style/pages/PaymentTransactions/List.scss rename to apps/client/src/style/pages/PaymentTransactions/List.scss diff --git a/src/style/pages/Preferences/Accounting.scss b/apps/client/src/style/pages/Preferences/Accounting.scss similarity index 100% rename from src/style/pages/Preferences/Accounting.scss rename to apps/client/src/style/pages/Preferences/Accounting.scss diff --git a/src/style/pages/Preferences/CurrenciesList.scss b/apps/client/src/style/pages/Preferences/CurrenciesList.scss similarity index 100% rename from src/style/pages/Preferences/CurrenciesList.scss rename to apps/client/src/style/pages/Preferences/CurrenciesList.scss diff --git a/src/style/pages/Preferences/GeneralForm.scss b/apps/client/src/style/pages/Preferences/GeneralForm.scss similarity index 100% rename from src/style/pages/Preferences/GeneralForm.scss rename to apps/client/src/style/pages/Preferences/GeneralForm.scss diff --git a/src/style/pages/Preferences/Page.scss b/apps/client/src/style/pages/Preferences/Page.scss similarity index 100% rename from src/style/pages/Preferences/Page.scss rename to apps/client/src/style/pages/Preferences/Page.scss diff --git a/src/style/pages/Preferences/Roles/Form.scss b/apps/client/src/style/pages/Preferences/Roles/Form.scss similarity index 100% rename from src/style/pages/Preferences/Roles/Form.scss rename to apps/client/src/style/pages/Preferences/Roles/Form.scss diff --git a/src/style/pages/Preferences/SMSIntegration.scss b/apps/client/src/style/pages/Preferences/SMSIntegration.scss similarity index 100% rename from src/style/pages/Preferences/SMSIntegration.scss rename to apps/client/src/style/pages/Preferences/SMSIntegration.scss diff --git a/src/style/pages/Preferences/Sidebar.scss b/apps/client/src/style/pages/Preferences/Sidebar.scss similarity index 100% rename from src/style/pages/Preferences/Sidebar.scss rename to apps/client/src/style/pages/Preferences/Sidebar.scss diff --git a/src/style/pages/Preferences/Topbar.scss b/apps/client/src/style/pages/Preferences/Topbar.scss similarity index 100% rename from src/style/pages/Preferences/Topbar.scss rename to apps/client/src/style/pages/Preferences/Topbar.scss diff --git a/src/style/pages/Preferences/Users.scss b/apps/client/src/style/pages/Preferences/Users.scss similarity index 100% rename from src/style/pages/Preferences/Users.scss rename to apps/client/src/style/pages/Preferences/Users.scss diff --git a/src/style/pages/Preferences/branchesList.scss b/apps/client/src/style/pages/Preferences/branchesList.scss similarity index 100% rename from src/style/pages/Preferences/branchesList.scss rename to apps/client/src/style/pages/Preferences/branchesList.scss diff --git a/src/style/pages/Preferences/warehousesList.scss b/apps/client/src/style/pages/Preferences/warehousesList.scss similarity index 100% rename from src/style/pages/Preferences/warehousesList.scss rename to apps/client/src/style/pages/Preferences/warehousesList.scss diff --git a/src/style/pages/ReconcileCreditNote/ReconcileCreditNoteForm.scss b/apps/client/src/style/pages/ReconcileCreditNote/ReconcileCreditNoteForm.scss similarity index 100% rename from src/style/pages/ReconcileCreditNote/ReconcileCreditNoteForm.scss rename to apps/client/src/style/pages/ReconcileCreditNote/ReconcileCreditNoteForm.scss diff --git a/src/style/pages/ReconcileVendorCredit/ReconcileVendorCreditForm.scss b/apps/client/src/style/pages/ReconcileVendorCredit/ReconcileVendorCreditForm.scss similarity index 100% rename from src/style/pages/ReconcileVendorCredit/ReconcileVendorCreditForm.scss rename to apps/client/src/style/pages/ReconcileVendorCredit/ReconcileVendorCreditForm.scss diff --git a/src/style/pages/ReferenceNumber/ReferenceNumber.scss b/apps/client/src/style/pages/ReferenceNumber/ReferenceNumber.scss similarity index 100% rename from src/style/pages/ReferenceNumber/ReferenceNumber.scss rename to apps/client/src/style/pages/ReferenceNumber/ReferenceNumber.scss diff --git a/src/style/pages/RefundCreditNote/List.scss b/apps/client/src/style/pages/RefundCreditNote/List.scss similarity index 100% rename from src/style/pages/RefundCreditNote/List.scss rename to apps/client/src/style/pages/RefundCreditNote/List.scss diff --git a/src/style/pages/RefundCreditNote/RefundCreditNote.scss b/apps/client/src/style/pages/RefundCreditNote/RefundCreditNote.scss similarity index 100% rename from src/style/pages/RefundCreditNote/RefundCreditNote.scss rename to apps/client/src/style/pages/RefundCreditNote/RefundCreditNote.scss diff --git a/src/style/pages/RefundVendorCredit/List.scss b/apps/client/src/style/pages/RefundVendorCredit/List.scss similarity index 100% rename from src/style/pages/RefundVendorCredit/List.scss rename to apps/client/src/style/pages/RefundVendorCredit/List.scss diff --git a/src/style/pages/RefundVendorCredit/RefundVendorCredit.scss b/apps/client/src/style/pages/RefundVendorCredit/RefundVendorCredit.scss similarity index 100% rename from src/style/pages/RefundVendorCredit/RefundVendorCredit.scss rename to apps/client/src/style/pages/RefundVendorCredit/RefundVendorCredit.scss diff --git a/src/style/pages/SMSMessage/SMSMessage.scss b/apps/client/src/style/pages/SMSMessage/SMSMessage.scss similarity index 100% rename from src/style/pages/SMSMessage/SMSMessage.scss rename to apps/client/src/style/pages/SMSMessage/SMSMessage.scss diff --git a/src/style/pages/SaleEstimate/List.scss b/apps/client/src/style/pages/SaleEstimate/List.scss similarity index 100% rename from src/style/pages/SaleEstimate/List.scss rename to apps/client/src/style/pages/SaleEstimate/List.scss diff --git a/src/style/pages/SaleEstimate/PageForm.scss b/apps/client/src/style/pages/SaleEstimate/PageForm.scss similarity index 100% rename from src/style/pages/SaleEstimate/PageForm.scss rename to apps/client/src/style/pages/SaleEstimate/PageForm.scss diff --git a/src/style/pages/SaleInvoice/List.scss b/apps/client/src/style/pages/SaleInvoice/List.scss similarity index 100% rename from src/style/pages/SaleInvoice/List.scss rename to apps/client/src/style/pages/SaleInvoice/List.scss diff --git a/src/style/pages/SaleInvoice/PageForm.scss b/apps/client/src/style/pages/SaleInvoice/PageForm.scss similarity index 100% rename from src/style/pages/SaleInvoice/PageForm.scss rename to apps/client/src/style/pages/SaleInvoice/PageForm.scss diff --git a/src/style/pages/SaleReceipt/List.scss b/apps/client/src/style/pages/SaleReceipt/List.scss similarity index 100% rename from src/style/pages/SaleReceipt/List.scss rename to apps/client/src/style/pages/SaleReceipt/List.scss diff --git a/src/style/pages/SaleReceipt/PageForm.scss b/apps/client/src/style/pages/SaleReceipt/PageForm.scss similarity index 100% rename from src/style/pages/SaleReceipt/PageForm.scss rename to apps/client/src/style/pages/SaleReceipt/PageForm.scss diff --git a/src/style/pages/Setup/Congrats.scss b/apps/client/src/style/pages/Setup/Congrats.scss similarity index 100% rename from src/style/pages/Setup/Congrats.scss rename to apps/client/src/style/pages/Setup/Congrats.scss diff --git a/src/style/pages/Setup/Initializing.scss b/apps/client/src/style/pages/Setup/Initializing.scss similarity index 100% rename from src/style/pages/Setup/Initializing.scss rename to apps/client/src/style/pages/Setup/Initializing.scss diff --git a/src/style/pages/Setup/Organization.scss b/apps/client/src/style/pages/Setup/Organization.scss similarity index 100% rename from src/style/pages/Setup/Organization.scss rename to apps/client/src/style/pages/Setup/Organization.scss diff --git a/src/style/pages/Setup/PaymentViaVoucherDialog.scss b/apps/client/src/style/pages/Setup/PaymentViaVoucherDialog.scss similarity index 100% rename from src/style/pages/Setup/PaymentViaVoucherDialog.scss rename to apps/client/src/style/pages/Setup/PaymentViaVoucherDialog.scss diff --git a/src/style/pages/Setup/SetupPage.scss b/apps/client/src/style/pages/Setup/SetupPage.scss similarity index 100% rename from src/style/pages/Setup/SetupPage.scss rename to apps/client/src/style/pages/Setup/SetupPage.scss diff --git a/src/style/pages/Setup/Subscription.scss b/apps/client/src/style/pages/Setup/Subscription.scss similarity index 100% rename from src/style/pages/Setup/Subscription.scss rename to apps/client/src/style/pages/Setup/Subscription.scss diff --git a/src/style/pages/Subscription/BillingPlans.scss b/apps/client/src/style/pages/Subscription/BillingPlans.scss similarity index 100% rename from src/style/pages/Subscription/BillingPlans.scss rename to apps/client/src/style/pages/Subscription/BillingPlans.scss diff --git a/src/style/pages/Subscription/PlanPeriodRadio.scss b/apps/client/src/style/pages/Subscription/PlanPeriodRadio.scss similarity index 100% rename from src/style/pages/Subscription/PlanPeriodRadio.scss rename to apps/client/src/style/pages/Subscription/PlanPeriodRadio.scss diff --git a/src/style/pages/Subscription/PlanRadio.scss b/apps/client/src/style/pages/Subscription/PlanRadio.scss similarity index 100% rename from src/style/pages/Subscription/PlanRadio.scss rename to apps/client/src/style/pages/Subscription/PlanRadio.scss diff --git a/src/style/pages/TransactionsLocking/TransactionsLockingDialog.scss b/apps/client/src/style/pages/TransactionsLocking/TransactionsLockingDialog.scss similarity index 100% rename from src/style/pages/TransactionsLocking/TransactionsLockingDialog.scss rename to apps/client/src/style/pages/TransactionsLocking/TransactionsLockingDialog.scss diff --git a/src/style/pages/Users/InviteFormDialog.scss b/apps/client/src/style/pages/Users/InviteFormDialog.scss similarity index 100% rename from src/style/pages/Users/InviteFormDialog.scss rename to apps/client/src/style/pages/Users/InviteFormDialog.scss diff --git a/src/style/pages/Users/UserFormDialog.scss b/apps/client/src/style/pages/Users/UserFormDialog.scss similarity index 100% rename from src/style/pages/Users/UserFormDialog.scss rename to apps/client/src/style/pages/Users/UserFormDialog.scss diff --git a/src/style/pages/VendorOpeningBalance/VendorOpeningBalance.scss b/apps/client/src/style/pages/VendorOpeningBalance/VendorOpeningBalance.scss similarity index 100% rename from src/style/pages/VendorOpeningBalance/VendorOpeningBalance.scss rename to apps/client/src/style/pages/VendorOpeningBalance/VendorOpeningBalance.scss diff --git a/src/style/pages/Vendors/Form.scss b/apps/client/src/style/pages/Vendors/Form.scss similarity index 100% rename from src/style/pages/Vendors/Form.scss rename to apps/client/src/style/pages/Vendors/Form.scss diff --git a/src/style/pages/Vendors/List.scss b/apps/client/src/style/pages/Vendors/List.scss similarity index 100% rename from src/style/pages/Vendors/List.scss rename to apps/client/src/style/pages/Vendors/List.scss diff --git a/src/style/pages/Vendors/PageForm.scss b/apps/client/src/style/pages/Vendors/PageForm.scss similarity index 100% rename from src/style/pages/Vendors/PageForm.scss rename to apps/client/src/style/pages/Vendors/PageForm.scss diff --git a/src/style/pages/VendorsCreditNote/List.scss b/apps/client/src/style/pages/VendorsCreditNote/List.scss similarity index 100% rename from src/style/pages/VendorsCreditNote/List.scss rename to apps/client/src/style/pages/VendorsCreditNote/List.scss diff --git a/src/style/pages/VendorsCreditNote/PageForm.scss b/apps/client/src/style/pages/VendorsCreditNote/PageForm.scss similarity index 100% rename from src/style/pages/VendorsCreditNote/PageForm.scss rename to apps/client/src/style/pages/VendorsCreditNote/PageForm.scss diff --git a/src/style/pages/WarehouseTransfers/PageForm.scss b/apps/client/src/style/pages/WarehouseTransfers/PageForm.scss similarity index 100% rename from src/style/pages/WarehouseTransfers/PageForm.scss rename to apps/client/src/style/pages/WarehouseTransfers/PageForm.scss diff --git a/src/style/pages/Warehouses/warehouseFormDialog.scss b/apps/client/src/style/pages/Warehouses/warehouseFormDialog.scss similarity index 100% rename from src/style/pages/Warehouses/warehouseFormDialog.scss rename to apps/client/src/style/pages/Warehouses/warehouseFormDialog.scss diff --git a/src/style/pages/authentication.scss b/apps/client/src/style/pages/authentication.scss similarity index 100% rename from src/style/pages/authentication.scss rename to apps/client/src/style/pages/authentication.scss diff --git a/src/style/pages/fonts.scss b/apps/client/src/style/pages/fonts.scss similarity index 100% rename from src/style/pages/fonts.scss rename to apps/client/src/style/pages/fonts.scss diff --git a/src/style/pages/keyboardShortcuts/KeyboardShortcutDialog.scss b/apps/client/src/style/pages/keyboardShortcuts/KeyboardShortcutDialog.scss similarity index 100% rename from src/style/pages/keyboardShortcuts/KeyboardShortcutDialog.scss rename to apps/client/src/style/pages/keyboardShortcuts/KeyboardShortcutDialog.scss diff --git a/src/style/pages/register-organizaton.scss b/apps/client/src/style/pages/register-organizaton.scss similarity index 100% rename from src/style/pages/register-organizaton.scss rename to apps/client/src/style/pages/register-organizaton.scss diff --git a/src/style/pages/view-form.scss b/apps/client/src/style/pages/view-form.scss similarity index 100% rename from src/style/pages/view-form.scss rename to apps/client/src/style/pages/view-form.scss diff --git a/src/style/variables.scss b/apps/client/src/style/variables.scss similarity index 100% rename from src/style/variables.scss rename to apps/client/src/style/variables.scss diff --git a/src/style/views/filter-dropdown.scss b/apps/client/src/style/views/filter-dropdown.scss similarity index 100% rename from src/style/views/filter-dropdown.scss rename to apps/client/src/style/views/filter-dropdown.scss diff --git a/src/utils/deep.tsx b/apps/client/src/utils/deep.tsx similarity index 100% rename from src/utils/deep.tsx rename to apps/client/src/utils/deep.tsx diff --git a/src/utils/index.tsx b/apps/client/src/utils/index.tsx similarity index 100% rename from src/utils/index.tsx rename to apps/client/src/utils/index.tsx diff --git a/tsconfig.base.json b/apps/client/tsconfig.base.json similarity index 100% rename from tsconfig.base.json rename to apps/client/tsconfig.base.json diff --git a/tsconfig.json b/apps/client/tsconfig.json similarity index 100% rename from tsconfig.json rename to apps/client/tsconfig.json diff --git a/package-lock.json b/package-lock.json index 5b46f8a91..7cb83feed 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,1877 +1,32 @@ { - "name": "bigcapital-client", - "version": "1.7.1", + "name": "client", + "version": "0.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { - "@ampproject/remapping": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", - "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", - "requires": { - "@jridgewell/gen-mapping": "^0.1.0", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "dependencies": { - "@jridgewell/gen-mapping": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", - "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", - "requires": { - "@jridgewell/set-array": "^1.0.0", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - } - } - }, - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/compat-data": { - "version": "7.19.3", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.3.tgz", - "integrity": "sha512-prBHMK4JYYK+wDjJF1q99KK4JLL+egWS4nmNqdlMUgCExMZ+iZW0hGhyC3VEbsPjvaN0TBhW//VIFwBrk8sEiw==" - }, - "@babel/core": { - "version": "7.19.3", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.19.3.tgz", - "integrity": "sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==", - "requires": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.19.3", - "@babel/helper-compilation-targets": "^7.19.3", - "@babel/helper-module-transforms": "^7.19.0", - "@babel/helpers": "^7.19.0", - "@babel/parser": "^7.19.3", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.19.3", - "@babel/types": "^7.19.3", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", - "semver": "^6.3.0" - } - }, - "@babel/generator": { - "version": "7.19.3", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.3.tgz", - "integrity": "sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ==", - "requires": { - "@babel/types": "^7.19.3", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - } - }, - "@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", - "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", - "requires": { - "@babel/helper-explode-assignable-expression": "^7.18.6", - "@babel/types": "^7.18.9" - } - }, - "@babel/helper-compilation-targets": { - "version": "7.19.3", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz", - "integrity": "sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==", - "requires": { - "@babel/compat-data": "^7.19.3", - "@babel/helper-validator-option": "^7.18.6", - "browserslist": "^4.21.3", - "semver": "^6.3.0" - } - }, - "@babel/helper-create-class-features-plugin": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.19.0.tgz", - "integrity": "sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-member-expression-to-functions": "^7.18.9", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.9", - "@babel/helper-split-export-declaration": "^7.18.6" - } - }, - "@babel/helper-create-regexp-features-plugin": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz", - "integrity": "sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "regexpu-core": "^5.1.0" - } - }, - "@babel/helper-define-polyfill-provider": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", - "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", - "requires": { - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", - "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" - }, - "@babel/helper-explode-assignable-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", - "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-function-name": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", - "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", - "requires": { - "@babel/template": "^7.18.10", - "@babel/types": "^7.19.0" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", - "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", - "requires": { - "@babel/types": "^7.18.9" - } - }, - "@babel/helper-module-imports": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", - "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-module-transforms": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.0.tgz", - "integrity": "sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==", - "requires": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.18.6", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.19.0", - "@babel/types": "^7.19.0" - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", - "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz", - "integrity": "sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==" - }, - "@babel/helper-remap-async-to-generator": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", - "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-wrap-function": "^7.18.9", - "@babel/types": "^7.18.9" - } - }, - "@babel/helper-replace-supers": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz", - "integrity": "sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==", - "requires": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-member-expression-to-functions": "^7.18.9", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.19.1", - "@babel/types": "^7.19.0" - } - }, - "@babel/helper-simple-access": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", - "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz", - "integrity": "sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==", - "requires": { - "@babel/types": "^7.18.9" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-string-parser": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz", - "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==" - }, - "@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==" - }, - "@babel/helper-validator-option": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", - "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" - }, - "@babel/helper-wrap-function": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz", - "integrity": "sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==", - "requires": { - "@babel/helper-function-name": "^7.19.0", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.19.0", - "@babel/types": "^7.19.0" - } - }, - "@babel/helpers": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.0.tgz", - "integrity": "sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==", - "requires": { - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.19.0", - "@babel/types": "^7.19.0" - } - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.19.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.3.tgz", - "integrity": "sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ==" - }, - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.18.6", - "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.18.6.tgz", - "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.9.tgz", - "integrity": "sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", - "@babel/plugin-proposal-optional-chaining": "^7.18.9" - } - }, - "@babel/plugin-proposal-async-generator-functions": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.1.tgz", - "integrity": "sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==", - "requires": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/helper-remap-async-to-generator": "^7.18.9", - "@babel/plugin-syntax-async-generators": "^7.8.4" - } - }, - "@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==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-proposal-class-static-block": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz", - "integrity": "sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - } - }, - "@babel/plugin-proposal-decorators": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.8.3.tgz", - "integrity": "sha512-e3RvdvS4qPJVTe288DlXjwKflpfy1hr0j5dz5WpIYYeP7vQZg2WfAEIp8k5/Lwis/m5REXEteIz6rrcDtXXG7w==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-decorators": "^7.8.3" - } - }, - "@babel/plugin-proposal-dynamic-import": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", - "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - } - }, - "@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", - "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - } - }, - "@babel/plugin-proposal-json-strings": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", - "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-json-strings": "^7.8.3" - } - }, - "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.9.tgz", - "integrity": "sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - } - }, - "@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==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - } - }, - "@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==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - } - }, - "@babel/plugin-proposal-object-rest-spread": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.9.tgz", - "integrity": "sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==", - "requires": { - "@babel/compat-data": "^7.18.8", - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.18.8" - } - }, - "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", - "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - } - }, - "@babel/plugin-proposal-optional-chaining": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.9.tgz", - "integrity": "sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - } - }, - "@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==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-proposal-private-property-in-object": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz", - "integrity": "sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - } - }, - "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@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==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@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==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - } - }, - "@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==", - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-decorators": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.19.0.tgz", - "integrity": "sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.19.0" - } - }, - "@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==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@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==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-syntax-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", - "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-syntax-import-assertions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz", - "integrity": "sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@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==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-jsx": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", - "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@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==", - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@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==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@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==", - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@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==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@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==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@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==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@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==", - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@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==", - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz", - "integrity": "sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-arrow-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz", - "integrity": "sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-async-to-generator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz", - "integrity": "sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==", - "requires": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-remap-async-to-generator": "^7.18.6" - } - }, - "@babel/plugin-transform-block-scoped-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", - "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-block-scoping": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.9.tgz", - "integrity": "sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9" - } - }, - "@babel/plugin-transform-classes": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.19.0.tgz", - "integrity": "sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-compilation-targets": "^7.19.0", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/helper-replace-supers": "^7.18.9", - "@babel/helper-split-export-declaration": "^7.18.6", - "globals": "^11.1.0" - } - }, - "@babel/plugin-transform-computed-properties": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.9.tgz", - "integrity": "sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9" - } - }, - "@babel/plugin-transform-destructuring": { - "version": "7.18.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.13.tgz", - "integrity": "sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9" - } - }, - "@babel/plugin-transform-dotall-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", - "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-duplicate-keys": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", - "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9" - } - }, - "@babel/plugin-transform-exponentiation-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", - "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", - "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-flow-strip-types": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.9.0.tgz", - "integrity": "sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-flow": "^7.8.3" - } - }, - "@babel/plugin-transform-for-of": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", - "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-function-name": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", - "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", - "requires": { - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-function-name": "^7.18.9", - "@babel/helper-plugin-utils": "^7.18.9" - } - }, - "@babel/plugin-transform-literals": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", - "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9" - } - }, - "@babel/plugin-transform-member-expression-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", - "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-modules-amd": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz", - "integrity": "sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==", - "requires": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" - } - }, - "@babel/plugin-transform-modules-commonjs": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz", - "integrity": "sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==", - "requires": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-simple-access": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" - } - }, - "@babel/plugin-transform-modules-systemjs": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.0.tgz", - "integrity": "sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==", - "requires": { - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.19.0", - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/helper-validator-identifier": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" - } - }, - "@babel/plugin-transform-modules-umd": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", - "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", - "requires": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz", - "integrity": "sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.19.0", - "@babel/helper-plugin-utils": "^7.19.0" - } - }, - "@babel/plugin-transform-new-target": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", - "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-object-super": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", - "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6" - } - }, - "@babel/plugin-transform-parameters": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz", - "integrity": "sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-property-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", - "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-react-constant-elements": { - "version": "7.18.12", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.18.12.tgz", - "integrity": "sha512-Q99U9/ttiu+LMnRU8psd23HhvwXmKWDQIpocm0JKaICcZHnw+mdQbHm6xnSy7dOl8I5PELakYtNBubNQlBXbZw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9" - } - }, - "@babel/plugin-transform-react-display-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", - "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-react-jsx": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz", - "integrity": "sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/plugin-syntax-jsx": "^7.18.6", - "@babel/types": "^7.19.0" - } - }, - "@babel/plugin-transform-react-jsx-development": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", - "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", - "requires": { - "@babel/plugin-transform-react-jsx": "^7.18.6" - } - }, - "@babel/plugin-transform-react-jsx-self": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.18.6.tgz", - "integrity": "sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-react-jsx-source": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.18.6.tgz", - "integrity": "sha512-utZmlASneDfdaMh0m/WausbjUjEdGrQJz0vFK93d7wD3xf5wBtX219+q6IlCNZeguIcxS2f/CvLZrlLSvSHQXw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-react-pure-annotations": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", - "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-regenerator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz", - "integrity": "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "regenerator-transform": "^0.15.0" - } - }, - "@babel/plugin-transform-reserved-words": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", - "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-runtime": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.9.0.tgz", - "integrity": "sha512-pUu9VSf3kI1OqbWINQ7MaugnitRss1z533436waNXp+0N3ur3zfut37sXiQMxkuCF4VUjwZucen/quskCh7NHw==", - "requires": { - "@babel/helper-module-imports": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3", - "resolve": "^1.8.1", - "semver": "^5.5.1" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, - "@babel/plugin-transform-shorthand-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", - "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-spread": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.19.0.tgz", - "integrity": "sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==", - "requires": { - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.9" - } - }, - "@babel/plugin-transform-sticky-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", - "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-template-literals": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", - "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9" - } - }, - "@babel/plugin-transform-typeof-symbol": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", - "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9" - } - }, - "@babel/plugin-transform-typescript": { - "version": "7.19.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.19.3.tgz", - "integrity": "sha512-z6fnuK9ve9u/0X0rRvI9MY0xg+DOUaABDYOe+/SQTxtlptaBB/V9JIUxJn6xp3lMBeb9qe8xSFmHU35oZDXD+w==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.19.0", - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/plugin-syntax-typescript": "^7.18.6" - } - }, - "@babel/plugin-transform-unicode-escapes": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", - "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.9" - } - }, - "@babel/plugin-transform-unicode-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", - "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/preset-env": { - "version": "7.19.3", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.19.3.tgz", - "integrity": "sha512-ziye1OTc9dGFOAXSWKUqQblYHNlBOaDl8wzqf2iKXJAltYiR3hKHUKmkt+S9PppW7RQpq4fFCrwwpIDj/f5P4w==", - "requires": { - "@babel/compat-data": "^7.19.3", - "@babel/helper-compilation-targets": "^7.19.3", - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", - "@babel/plugin-proposal-async-generator-functions": "^7.19.1", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-class-static-block": "^7.18.6", - "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.9", - "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", - "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.18.9", - "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.9", - "@babel/plugin-proposal-private-methods": "^7.18.6", - "@babel/plugin-proposal-private-property-in-object": "^7.18.6", - "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", - "@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.18.6", - "@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-transform-arrow-functions": "^7.18.6", - "@babel/plugin-transform-async-to-generator": "^7.18.6", - "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.18.9", - "@babel/plugin-transform-classes": "^7.19.0", - "@babel/plugin-transform-computed-properties": "^7.18.9", - "@babel/plugin-transform-destructuring": "^7.18.13", - "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.9", - "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.18.8", - "@babel/plugin-transform-function-name": "^7.18.9", - "@babel/plugin-transform-literals": "^7.18.9", - "@babel/plugin-transform-member-expression-literals": "^7.18.6", - "@babel/plugin-transform-modules-amd": "^7.18.6", - "@babel/plugin-transform-modules-commonjs": "^7.18.6", - "@babel/plugin-transform-modules-systemjs": "^7.19.0", - "@babel/plugin-transform-modules-umd": "^7.18.6", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1", - "@babel/plugin-transform-new-target": "^7.18.6", - "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.18.8", - "@babel/plugin-transform-property-literals": "^7.18.6", - "@babel/plugin-transform-regenerator": "^7.18.6", - "@babel/plugin-transform-reserved-words": "^7.18.6", - "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.19.0", - "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.9", - "@babel/plugin-transform-typeof-symbol": "^7.18.9", - "@babel/plugin-transform-unicode-escapes": "^7.18.10", - "@babel/plugin-transform-unicode-regex": "^7.18.6", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.19.3", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "core-js-compat": "^3.25.1", - "semver": "^6.3.0" - } - }, - "@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - } - }, - "@babel/preset-react": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", - "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-transform-react-display-name": "^7.18.6", - "@babel/plugin-transform-react-jsx": "^7.18.6", - "@babel/plugin-transform-react-jsx-development": "^7.18.6", - "@babel/plugin-transform-react-pure-annotations": "^7.18.6" - } - }, - "@babel/preset-typescript": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.9.0.tgz", - "integrity": "sha512-S4cueFnGrIbvYJgwsVFKdvOmpiL0XGw9MFW9D0vgRys5g36PBhZRL8NX8Gr2akz8XRtzq6HuDXPD/1nniagNUg==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-transform-typescript": "^7.9.0" - } - }, "@babel/runtime": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz", - "integrity": "sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==", + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.13.tgz", + "integrity": "sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==", + "dev": true, "requires": { - "regenerator-runtime": "^0.13.4" + "regenerator-runtime": "^0.13.11" } }, - "@babel/runtime-corejs3": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.1.tgz", - "integrity": "sha512-j2vJGnkopRzH+ykJ8h68wrHnEUmtK//E723jjixiAl/PPf6FhqY/vYRcMVlNydRKQjQsTsYEjpx+DZMIvnGk/g==", + "@next/eslint-plugin-next": { + "version": "12.3.4", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-12.3.4.tgz", + "integrity": "sha512-BFwj8ykJY+zc1/jWANsDprDIu2MgwPOIKxNVnrKvPs+f5TPegrVnem8uScND+1veT4B7F6VeqgaNLFW1Hzl9Og==", + "dev": true, "requires": { - "core-js-pure": "^3.25.1", - "regenerator-runtime": "^0.13.4" - } - }, - "@babel/template": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", - "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.10", - "@babel/types": "^7.18.10" - } - }, - "@babel/traverse": { - "version": "7.19.3", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.3.tgz", - "integrity": "sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.19.3", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.19.3", - "@babel/types": "^7.19.3", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.19.3", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.3.tgz", - "integrity": "sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw==", - "requires": { - "@babel/helper-string-parser": "^7.18.10", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" - } - }, - "@blueprintjs-formik/core": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@blueprintjs-formik/core/-/core-0.2.1.tgz", - "integrity": "sha512-YGJe+QorDGbkWDSUg6x69LYGN62Kgvb92Iz/voqmszVRKj4KcoPvd/7coF8Jmu+ZQE6LcwM/9ccB2i63L99ITA==", - "requires": { - "lodash.get": "^4.4.2", - "lodash.keyby": "^4.6.0", - "styled-components": "^5.3.3", - "web-vitals": "^2.1.4" - } - }, - "@blueprintjs-formik/datetime": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/@blueprintjs-formik/datetime/-/datetime-0.3.4.tgz", - "integrity": "sha512-HhBBxdLrMypOFZsFjgLlrIDODTnPy4uZC2YduPXg5WhMeu0otO0HF1pZrQctkA1rwkwE5EE/o+WfvoGo7UrvNQ==", - "requires": { - "lodash.get": "^4.4.2", - "lodash.keyby": "^4.6.0", - "styled-components": "^5.3.3", - "web-vitals": "^2.1.4" - } - }, - "@blueprintjs-formik/select": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@blueprintjs-formik/select/-/select-0.1.5.tgz", - "integrity": "sha512-EqGbuoiS1VrWpzjd39uVhBAmfVobdpgqalGcpODyGA+XAYoft1UU12yzTzrEOwBZpQKiC12UQwekUPspYBsVKA==", - "requires": { - "lodash.get": "^4.4.2", - "lodash.keyby": "^4.6.0", - "styled-components": "^5.3.3", - "web-vitals": "^2.1.4" - } - }, - "@blueprintjs/colors": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.1.6.tgz", - "integrity": "sha512-3/kahUWyvgQUV9NtCMeeJgTFHziM2Z3f4hjDfnl03X4MW0onUeZfa2Mu4ZsRn2IAK7AmfLNkZe8vp8mxX9pDRg==" - }, - "@blueprintjs/core": { - "version": "3.54.0", - "resolved": "https://registry.npmjs.org/@blueprintjs/core/-/core-3.54.0.tgz", - "integrity": "sha512-u2c1s6MNn0ocxhnC6CuiG5g3KV6b4cKUvSobznepA9SC3/AL1s3XOvT7DLWoHRv2B/vBOHFYEDzLw2/vlcGGZg==", - "requires": { - "@blueprintjs/colors": "^4.0.0-alpha.3", - "@blueprintjs/icons": "^3.33.0", - "@juggle/resize-observer": "^3.3.1", - "@types/dom4": "^2.0.1", - "classnames": "^2.2", - "dom4": "^2.1.5", - "normalize.css": "^8.0.1", - "popper.js": "^1.16.1", - "react-lifecycles-compat": "^3.0.4", - "react-popper": "^1.3.7", - "react-transition-group": "^2.9.0", - "tslib": "~2.3.1" - }, - "dependencies": { - "react-transition-group": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz", - "integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==", - "requires": { - "dom-helpers": "^3.4.0", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2", - "react-lifecycles-compat": "^3.0.4" - } - } - } - }, - "@blueprintjs/datetime": { - "version": "3.24.1", - "resolved": "https://registry.npmjs.org/@blueprintjs/datetime/-/datetime-3.24.1.tgz", - "integrity": "sha512-+k5Zpmtzqqec1b+wiNMfXuw1N2pDUAlcuMAHQkZGbmrNKocpqMKLU6S6bPLGBsG0fwAbzQdYYiCCVz65m2z4Uw==", - "requires": { - "@blueprintjs/core": "^3.54.0", - "classnames": "^2.2", - "react-day-picker": "7.4.9", - "react-lifecycles-compat": "^3.0.4", - "tslib": "~2.3.1" - } - }, - "@blueprintjs/icons": { - "version": "3.33.0", - "resolved": "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.33.0.tgz", - "integrity": "sha512-Q6qoSDIm0kRYQZISm59UUcDCpV3oeHulkLuh3bSlw0HhcSjvEQh2PSYbtaifM60Q4aK4PCd6bwJHg7lvF1x5fQ==", - "requires": { - "classnames": "^2.2", - "tslib": "~2.3.1" - } - }, - "@blueprintjs/popover2": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/@blueprintjs/popover2/-/popover2-0.11.4.tgz", - "integrity": "sha512-KTietd+thBzeen9yP0WWzHJDAaqoey1H3AXvjaF94ypQQKdUaIzSmIop9Z3lJK44ynlYiI+dSzFYQbRdbpd0/w==", - "requires": { - "@blueprintjs/core": "^3.49.1", - "@popperjs/core": "^2.5.4", - "classnames": "^2.2", - "dom4": "^2.1.5", - "react-popper": "^2.2.4", - "resize-observer-polyfill": "^1.5.1", - "tslib": "~1.13.0" - }, - "dependencies": { - "react-popper": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.3.0.tgz", - "integrity": "sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==", - "requires": { - "react-fast-compare": "^3.0.1", - "warning": "^4.0.2" - } - }, - "tslib": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz", - "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==" - } - } - }, - "@blueprintjs/select": { - "version": "3.19.1", - "resolved": "https://registry.npmjs.org/@blueprintjs/select/-/select-3.19.1.tgz", - "integrity": "sha512-8UJIZMaWXRMQHr14wbmzJc/CklcSKxOU5JUux0xXKQz/hDW/g1a650tlwJmnxufvRdShbGinlVfHupCs0EL6sw==", - "requires": { - "@blueprintjs/core": "^3.54.0", - "classnames": "^2.2", - "tslib": "~2.3.1" - } - }, - "@blueprintjs/table": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/@blueprintjs/table/-/table-3.10.0.tgz", - "integrity": "sha512-CSob9e5vsZa+/ABpHN1IoZE0zHCYqNwsu1CBkrIPm0+4T/5B2MPCywJ+1aNbdC4+IDjuD6UC97/Hiyre3dlSEA==", - "requires": { - "@blueprintjs/core": "^3.54.0", - "classnames": "^2.2", - "prop-types": "^15.7.2", - "react-lifecycles-compat": "^3.0.4", - "tslib": "~2.3.1" - } - }, - "@blueprintjs/timezone": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/@blueprintjs/timezone/-/timezone-3.10.1.tgz", - "integrity": "sha512-uVf28kENhkwiwCCyGTQBxRsz/Z/KEy3RyQXoeCv/ZDryjEFNVpHCjYlf2QMt4DP7ADEwWH3SfLebjtXdRjFb+g==", - "requires": { - "@blueprintjs/core": "^3.54.0", - "@blueprintjs/select": "^3.19.1", - "classnames": "^2.2", - "moment": "^2.29.0", - "moment-timezone": "^0.5.31", - "react-lifecycles-compat": "^3.0.4", - "tslib": "~2.3.1" - } - }, - "@casl/ability": { - "version": "5.4.4", - "resolved": "https://registry.npmjs.org/@casl/ability/-/ability-5.4.4.tgz", - "integrity": "sha512-7+GOnMUq6q4fqtDDesymBXTS9LSDVezYhFiSJ8Rn3f0aQLeRm7qHn66KWbej4niCOvm0XzNj9jzpkK0yz6hUww==", - "requires": { - "@ucast/mongo2js": "^1.3.0" - } - }, - "@casl/react": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@casl/react/-/react-2.3.0.tgz", - "integrity": "sha512-xP5G9ShXviE56IrU4mPpj1K7bl8KmNOjz3e4YgwrirmRdtZ38rF70a5AkFotWX9hgdH2mqZK/VHiYDGAIlYu1Q==" - }, - "@choojs/findup": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@choojs/findup/-/findup-0.2.1.tgz", - "integrity": "sha512-YstAqNb0MCN8PjdLCDfRsBcGVRN41f3vgLvaI0IrIcBp4AqILRSS0DeWNGkicC+f/zRIPJLc+9RURVSepwvfBw==", - "requires": { - "commander": "^2.15.1" - } - }, - "@cnakazawa/watch": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", - "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", - "requires": { - "exec-sh": "^0.3.2", - "minimist": "^1.2.0" - } - }, - "@craco/craco": { - "version": "5.9.0", - "resolved": "https://registry.npmjs.org/@craco/craco/-/craco-5.9.0.tgz", - "integrity": "sha512-2Q8gIB4W0/nPiUxr9iAKUhGsFlXYN0/wngUdK1VWtfV2NtBv+yllNn2AjieaLbttgpQinuOYmDU65vocC0NMDg==", - "requires": { - "cross-spawn": "^7.0.0", - "lodash": "^4.17.15", - "webpack-merge": "^4.2.2" - } - }, - "@csstools/convert-colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz", - "integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==" - }, - "@csstools/normalize.css": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-10.1.0.tgz", - "integrity": "sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==" - }, - "@emotion/is-prop-valid": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.0.tgz", - "integrity": "sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==", - "requires": { - "@emotion/memoize": "^0.8.0" - } - }, - "@emotion/memoize": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.0.tgz", - "integrity": "sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==" - }, - "@emotion/stylis": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz", - "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" - }, - "@emotion/unitless": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", - "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" - }, - "@formatjs/intl-unified-numberformat": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/@formatjs/intl-unified-numberformat/-/intl-unified-numberformat-3.3.7.tgz", - "integrity": "sha512-KnWgLRHzCAgT9eyt3OS34RHoyD7dPDYhRcuKn+/6Kv2knDF8Im43J6vlSW6Hm1w63fNq3ZIT1cFk7RuVO3Psag==", - "requires": { - "@formatjs/intl-utils": "^2.3.0" - } - }, - "@formatjs/intl-utils": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@formatjs/intl-utils/-/intl-utils-2.3.0.tgz", - "integrity": "sha512-KWk80UPIzPmUg+P0rKh6TqspRw0G6eux1PuJr+zz47ftMaZ9QDwbGzHZbtzWkl5hgayM/qrKRutllRC7D/vVXQ==" - }, - "@hapi/address": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz", - "integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==" - }, - "@hapi/bourne": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz", - "integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==" - }, - "@hapi/hoek": { - "version": "8.5.1", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz", - "integrity": "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==" - }, - "@hapi/joi": { - "version": "15.1.1", - "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz", - "integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==", - "requires": { - "@hapi/address": "2.x.x", - "@hapi/bourne": "1.x.x", - "@hapi/hoek": "8.x.x", - "@hapi/topo": "3.x.x" - } - }, - "@hapi/topo": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", - "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==", - "requires": { - "@hapi/hoek": "^8.3.0" - } - }, - "@hypnosphi/create-react-context": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz", - "integrity": "sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A==", - "requires": { - "gud": "^1.0.0", - "warning": "^4.0.3" - } - }, - "@jest/console": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-24.9.0.tgz", - "integrity": "sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==", - "requires": { - "@jest/source-map": "^24.9.0", - "chalk": "^2.0.1", - "slash": "^2.0.0" - } - }, - "@jest/core": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-24.9.0.tgz", - "integrity": "sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A==", - "requires": { - "@jest/console": "^24.7.1", - "@jest/reporters": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "ansi-escapes": "^3.0.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "graceful-fs": "^4.1.15", - "jest-changed-files": "^24.9.0", - "jest-config": "^24.9.0", - "jest-haste-map": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-regex-util": "^24.3.0", - "jest-resolve": "^24.9.0", - "jest-resolve-dependencies": "^24.9.0", - "jest-runner": "^24.9.0", - "jest-runtime": "^24.9.0", - "jest-snapshot": "^24.9.0", - "jest-util": "^24.9.0", - "jest-validate": "^24.9.0", - "jest-watcher": "^24.9.0", - "micromatch": "^3.1.10", - "p-each-series": "^1.0.0", - "realpath-native": "^1.1.0", - "rimraf": "^2.5.4", - "slash": "^2.0.0", - "strip-ansi": "^5.0.0" - }, - "dependencies": { - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } - } - }, - "@jest/environment": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-24.9.0.tgz", - "integrity": "sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==", - "requires": { - "@jest/fake-timers": "^24.9.0", - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "jest-mock": "^24.9.0" - } - }, - "@jest/fake-timers": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.9.0.tgz", - "integrity": "sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==", - "requires": { - "@jest/types": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-mock": "^24.9.0" - } - }, - "@jest/reporters": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-24.9.0.tgz", - "integrity": "sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw==", - "requires": { - "@jest/environment": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "glob": "^7.1.2", - "istanbul-lib-coverage": "^2.0.2", - "istanbul-lib-instrument": "^3.0.1", - "istanbul-lib-report": "^2.0.4", - "istanbul-lib-source-maps": "^3.0.1", - "istanbul-reports": "^2.2.6", - "jest-haste-map": "^24.9.0", - "jest-resolve": "^24.9.0", - "jest-runtime": "^24.9.0", - "jest-util": "^24.9.0", - "jest-worker": "^24.6.0", - "node-notifier": "^5.4.2", - "slash": "^2.0.0", - "source-map": "^0.6.0", - "string-length": "^2.0.0" - } - }, - "@jest/source-map": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-24.9.0.tgz", - "integrity": "sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg==", - "requires": { - "callsites": "^3.0.0", - "graceful-fs": "^4.1.15", - "source-map": "^0.6.0" - } - }, - "@jest/test-result": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-24.9.0.tgz", - "integrity": "sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA==", - "requires": { - "@jest/console": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/istanbul-lib-coverage": "^2.0.0" - } - }, - "@jest/test-sequencer": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz", - "integrity": "sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A==", - "requires": { - "@jest/test-result": "^24.9.0", - "jest-haste-map": "^24.9.0", - "jest-runner": "^24.9.0", - "jest-runtime": "^24.9.0" - } - }, - "@jest/transform": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz", - "integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==", - "requires": { - "@babel/core": "^7.1.0", - "@jest/types": "^24.9.0", - "babel-plugin-istanbul": "^5.1.0", - "chalk": "^2.0.1", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.1.15", - "jest-haste-map": "^24.9.0", - "jest-regex-util": "^24.9.0", - "jest-util": "^24.9.0", - "micromatch": "^3.1.10", - "pirates": "^4.0.1", - "realpath-native": "^1.1.0", - "slash": "^2.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "2.4.1" - }, - "dependencies": { - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } - } - }, - "@jest/types": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", - "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^13.0.0" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" - }, - "@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==" - }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - }, - "@jridgewell/trace-mapping": { - "version": "0.3.15", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz", - "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==", - "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "@juggle/resize-observer": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz", - "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==" - }, - "@mrmlnc/readdir-enhanced": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", - "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", - "requires": { - "call-me-maybe": "^1.0.1", - "glob-to-regexp": "^0.3.0" + "glob": "7.1.7" } }, "@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, "requires": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" @@ -1880,2453 +35,187 @@ "@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==" + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true }, "@nodelib/fs.walk": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, "requires": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" } }, - "@popperjs/core": { - "version": "2.11.6", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz", - "integrity": "sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw==" - }, - "@reduxjs/toolkit": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.8.5.tgz", - "integrity": "sha512-f4D5EXO7A7Xq35T0zRbWq5kJQyXzzscnHKmjnu2+37B3rwHU6mX9PYlbfXdnxcY6P/7zfmjhgan0Z+yuOfeBmA==", - "requires": { - "immer": "^9.0.7", - "redux": "^4.1.2", - "redux-thunk": "^2.4.1", - "reselect": "^4.1.5" - } - }, - "@sentry/browser": { - "version": "6.19.7", - "resolved": "https://registry.npmjs.org/@sentry/browser/-/browser-6.19.7.tgz", - "integrity": "sha512-oDbklp4O3MtAM4mtuwyZLrgO1qDVYIujzNJQzXmi9YzymJCuzMLSRDvhY83NNDCRxf0pds4DShgYeZdbSyKraA==", - "requires": { - "@sentry/core": "6.19.7", - "@sentry/types": "6.19.7", - "@sentry/utils": "6.19.7", - "tslib": "^1.9.3" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, - "@sentry/core": { - "version": "6.19.7", - "resolved": "https://registry.npmjs.org/@sentry/core/-/core-6.19.7.tgz", - "integrity": "sha512-tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw==", - "requires": { - "@sentry/hub": "6.19.7", - "@sentry/minimal": "6.19.7", - "@sentry/types": "6.19.7", - "@sentry/utils": "6.19.7", - "tslib": "^1.9.3" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, - "@sentry/hub": { - "version": "6.19.7", - "resolved": "https://registry.npmjs.org/@sentry/hub/-/hub-6.19.7.tgz", - "integrity": "sha512-y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA==", - "requires": { - "@sentry/types": "6.19.7", - "@sentry/utils": "6.19.7", - "tslib": "^1.9.3" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, - "@sentry/minimal": { - "version": "6.19.7", - "resolved": "https://registry.npmjs.org/@sentry/minimal/-/minimal-6.19.7.tgz", - "integrity": "sha512-wcYmSJOdvk6VAPx8IcmZgN08XTXRwRtB1aOLZm+MVHjIZIhHoBGZJYTVQS/BWjldsamj2cX3YGbGXNunaCfYJQ==", - "requires": { - "@sentry/hub": "6.19.7", - "@sentry/types": "6.19.7", - "tslib": "^1.9.3" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, - "@sentry/react": { - "version": "6.19.7", - "resolved": "https://registry.npmjs.org/@sentry/react/-/react-6.19.7.tgz", - "integrity": "sha512-VzJeBg/v41jfxUYPkH2WYrKjWc4YiMLzDX0f4Zf6WkJ4v3IlDDSkX6DfmWekjTKBho6wiMkSNy2hJ1dHfGZ9jA==", - "requires": { - "@sentry/browser": "6.19.7", - "@sentry/minimal": "6.19.7", - "@sentry/types": "6.19.7", - "@sentry/utils": "6.19.7", - "hoist-non-react-statics": "^3.3.2", - "tslib": "^1.9.3" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, - "@sentry/tracing": { - "version": "6.19.7", - "resolved": "https://registry.npmjs.org/@sentry/tracing/-/tracing-6.19.7.tgz", - "integrity": "sha512-ol4TupNnv9Zd+bZei7B6Ygnr9N3Gp1PUrNI761QSlHtPC25xXC5ssSD3GMhBgyQrcvpuRcCFHVNNM97tN5cZiA==", - "requires": { - "@sentry/hub": "6.19.7", - "@sentry/minimal": "6.19.7", - "@sentry/types": "6.19.7", - "@sentry/utils": "6.19.7", - "tslib": "^1.9.3" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, - "@sentry/types": { - "version": "6.19.7", - "resolved": "https://registry.npmjs.org/@sentry/types/-/types-6.19.7.tgz", - "integrity": "sha512-jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg==" - }, - "@sentry/utils": { - "version": "6.19.7", - "resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-6.19.7.tgz", - "integrity": "sha512-z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA==", - "requires": { - "@sentry/types": "6.19.7", - "tslib": "^1.9.3" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, - "@sheerun/mutationobserver-shim": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@sheerun/mutationobserver-shim/-/mutationobserver-shim-0.3.3.tgz", - "integrity": "sha512-DetpxZw1fzPD5xUBrIAoplLChO2VB8DlL5Gg+I1IR9b2wPqYIca2WSUxL5g1vLeR4MsQq1NeWriXAVffV+U1Fw==" - }, - "@svgr/babel-plugin-add-jsx-attribute": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-4.2.0.tgz", - "integrity": "sha512-j7KnilGyZzYr/jhcrSYS3FGWMZVaqyCG0vzMCwzvei0coIkczuYMcniK07nI0aHJINciujjH11T72ICW5eL5Ig==" - }, - "@svgr/babel-plugin-remove-jsx-attribute": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-4.2.0.tgz", - "integrity": "sha512-3XHLtJ+HbRCH4n28S7y/yZoEQnRpl0tvTZQsHqvaeNXPra+6vE5tbRliH3ox1yZYPCxrlqaJT/Mg+75GpDKlvQ==" - }, - "@svgr/babel-plugin-remove-jsx-empty-expression": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-4.2.0.tgz", - "integrity": "sha512-yTr2iLdf6oEuUE9MsRdvt0NmdpMBAkgK8Bjhl6epb+eQWk6abBaX3d65UZ3E3FWaOwePyUgNyNCMVG61gGCQ7w==" - }, - "@svgr/babel-plugin-replace-jsx-attribute-value": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-4.2.0.tgz", - "integrity": "sha512-U9m870Kqm0ko8beHawRXLGLvSi/ZMrl89gJ5BNcT452fAjtF2p4uRzXkdzvGJJJYBgx7BmqlDjBN/eCp5AAX2w==" - }, - "@svgr/babel-plugin-svg-dynamic-title": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-4.3.3.tgz", - "integrity": "sha512-w3Be6xUNdwgParsvxkkeZb545VhXEwjGMwExMVBIdPQJeyMQHqm9Msnb2a1teHBqUYL66qtwfhNkbj1iarCG7w==" - }, - "@svgr/babel-plugin-svg-em-dimensions": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-4.2.0.tgz", - "integrity": "sha512-C0Uy+BHolCHGOZ8Dnr1zXy/KgpBOkEUYY9kI/HseHVPeMbluaX3CijJr7D4C5uR8zrc1T64nnq/k63ydQuGt4w==" - }, - "@svgr/babel-plugin-transform-react-native-svg": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-4.2.0.tgz", - "integrity": "sha512-7YvynOpZDpCOUoIVlaaOUU87J4Z6RdD6spYN4eUb5tfPoKGSF9OG2NuhgYnq4jSkAxcpMaXWPf1cePkzmqTPNw==" - }, - "@svgr/babel-plugin-transform-svg-component": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-4.2.0.tgz", - "integrity": "sha512-hYfYuZhQPCBVotABsXKSCfel2slf/yvJY8heTVX1PCTaq/IgASq1IyxPPKJ0chWREEKewIU/JMSsIGBtK1KKxw==" - }, - "@svgr/babel-preset": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-4.3.3.tgz", - "integrity": "sha512-6PG80tdz4eAlYUN3g5GZiUjg2FMcp+Wn6rtnz5WJG9ITGEF1pmFdzq02597Hn0OmnQuCVaBYQE1OVFAnwOl+0A==", - "requires": { - "@svgr/babel-plugin-add-jsx-attribute": "^4.2.0", - "@svgr/babel-plugin-remove-jsx-attribute": "^4.2.0", - "@svgr/babel-plugin-remove-jsx-empty-expression": "^4.2.0", - "@svgr/babel-plugin-replace-jsx-attribute-value": "^4.2.0", - "@svgr/babel-plugin-svg-dynamic-title": "^4.3.3", - "@svgr/babel-plugin-svg-em-dimensions": "^4.2.0", - "@svgr/babel-plugin-transform-react-native-svg": "^4.2.0", - "@svgr/babel-plugin-transform-svg-component": "^4.2.0" - } - }, - "@svgr/core": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/@svgr/core/-/core-4.3.3.tgz", - "integrity": "sha512-qNuGF1QON1626UCaZamWt5yedpgOytvLj5BQZe2j1k1B8DUG4OyugZyfEwBeXozCUwhLEpsrgPrE+eCu4fY17w==", - "requires": { - "@svgr/plugin-jsx": "^4.3.3", - "camelcase": "^5.3.1", - "cosmiconfig": "^5.2.1" - } - }, - "@svgr/hast-util-to-babel-ast": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-4.3.2.tgz", - "integrity": "sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg==", - "requires": { - "@babel/types": "^7.4.4" - } - }, - "@svgr/plugin-jsx": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-4.3.3.tgz", - "integrity": "sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w==", - "requires": { - "@babel/core": "^7.4.5", - "@svgr/babel-preset": "^4.3.3", - "@svgr/hast-util-to-babel-ast": "^4.3.2", - "svg-parser": "^2.0.0" - } - }, - "@svgr/plugin-svgo": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-4.3.1.tgz", - "integrity": "sha512-PrMtEDUWjX3Ea65JsVCwTIXuSqa3CG9px+DluF1/eo9mlDrgrtFE7NE/DjdhjJgSM9wenlVBzkzneSIUgfUI/w==", - "requires": { - "cosmiconfig": "^5.2.1", - "merge-deep": "^3.0.2", - "svgo": "^1.2.2" - } - }, - "@svgr/webpack": { - "version": "4.3.3", - "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-4.3.3.tgz", - "integrity": "sha512-bjnWolZ6KVsHhgyCoYRFmbd26p8XVbulCzSG53BDQqAr+JOAderYK7CuYrB3bDjHJuF6LJ7Wrr42+goLRV9qIg==", - "requires": { - "@babel/core": "^7.4.5", - "@babel/plugin-transform-react-constant-elements": "^7.0.0", - "@babel/preset-env": "^7.4.5", - "@babel/preset-react": "^7.0.0", - "@svgr/core": "^4.3.3", - "@svgr/plugin-jsx": "^4.3.3", - "@svgr/plugin-svgo": "^4.3.1", - "loader-utils": "^1.2.3" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - } - } - }, - "@testing-library/dom": { - "version": "6.16.0", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-6.16.0.tgz", - "integrity": "sha512-lBD88ssxqEfz0wFL6MeUyyWZfV/2cjEZZV3YRpb2IoJRej/4f1jB0TzqIOznTpfR1r34CNesrubxwIlAQ8zgPA==", - "requires": { - "@babel/runtime": "^7.8.4", - "@sheerun/mutationobserver-shim": "^0.3.2", - "@types/testing-library__dom": "^6.12.1", - "aria-query": "^4.0.2", - "dom-accessibility-api": "^0.3.0", - "pretty-format": "^25.1.0", - "wait-for-expect": "^3.0.2" - }, - "dependencies": { - "@jest/types": { - "version": "25.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz", - "integrity": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==", - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - } - }, - "@types/yargs": { - "version": "15.0.14", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz", - "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==", - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "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==", - "requires": { - "color-name": "~1.1.4" - } - }, - "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==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "pretty-format": { - "version": "25.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-25.5.0.tgz", - "integrity": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==", - "requires": { - "@jest/types": "^25.5.0", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^16.12.0" - } - }, - "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==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@testing-library/jest-dom": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-4.2.4.tgz", - "integrity": "sha512-j31Bn0rQo12fhCWOUWy9fl7wtqkp7In/YP2p5ZFyRuiiB9Qs3g+hS4gAmDWONbAHcRmVooNJ5eOHQDCOmUFXHg==", - "requires": { - "@babel/runtime": "^7.5.1", - "chalk": "^2.4.1", - "css": "^2.2.3", - "css.escape": "^1.5.1", - "jest-diff": "^24.0.0", - "jest-matcher-utils": "^24.0.0", - "lodash": "^4.17.11", - "pretty-format": "^24.0.0", - "redent": "^3.0.0" - } - }, - "@testing-library/react": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-9.5.0.tgz", - "integrity": "sha512-di1b+D0p+rfeboHO5W7gTVeZDIK5+maEgstrZbWZSSvxDyfDRkkyBE1AJR5Psd6doNldluXlCWqXriUfqu/9Qg==", - "requires": { - "@babel/runtime": "^7.8.4", - "@testing-library/dom": "^6.15.0", - "@types/testing-library__react": "^9.1.2" - } - }, - "@testing-library/user-event": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-7.2.1.tgz", - "integrity": "sha512-oZ0Ib5I4Z2pUEcoo95cT1cr6slco9WY7yiPpG+RGNkj8YcYgJnM7pXmYmorNOReh8MIGcKSqXyeGjxnr8YiZbA==" - }, - "@types/babel__core": { - "version": "7.1.19", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz", - "integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==", - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@types/babel__traverse": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.2.tgz", - "integrity": "sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==", - "requires": { - "@babel/types": "^7.3.0" - } - }, - "@types/dom4": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@types/dom4/-/dom4-2.0.2.tgz", - "integrity": "sha512-Rt4IC1T7xkCWa0OG1oSsPa0iqnxlDeQqKXZAHrQGLb7wFGncWm85MaxKUjAGejOrUynOgWlFi4c6S6IyJwoK4g==" - }, - "@types/eslint-visitor-keys": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", - "integrity": "sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag==" - }, - "@types/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "@types/history": { - "version": "4.7.11", - "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz", - "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==" - }, - "@types/hoist-non-react-statics": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", - "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==", - "requires": { - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0" - } - }, - "@types/http-proxy": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", - "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", - "requires": { - "@types/node": "*" - } - }, - "@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" - }, - "@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", - "requires": { - "@types/istanbul-lib-coverage": "*" - } - }, - "@types/istanbul-reports": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz", - "integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==", - "requires": { - "@types/istanbul-lib-coverage": "*", - "@types/istanbul-lib-report": "*" - } - }, - "@types/jest": { - "version": "26.0.24", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.24.tgz", - "integrity": "sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==", - "requires": { - "jest-diff": "^26.0.0", - "pretty-format": "^26.0.0" - }, - "dependencies": { - "@jest/types": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", - "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^15.0.0", - "chalk": "^4.0.0" - } - }, - "@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", - "requires": { - "@types/istanbul-lib-report": "*" - } - }, - "@types/yargs": { - "version": "15.0.14", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz", - "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==", - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "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==", - "requires": { - "color-name": "~1.1.4" - } - }, - "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==" - }, - "diff-sequences": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", - "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "jest-diff": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", - "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", - "requires": { - "chalk": "^4.0.0", - "diff-sequences": "^26.6.2", - "jest-get-type": "^26.3.0", - "pretty-format": "^26.6.2" - } - }, - "jest-get-type": { - "version": "26.3.0", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", - "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==" - }, - "pretty-format": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", - "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", - "requires": { - "@jest/types": "^26.6.2", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^17.0.1" - } - }, - "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==" - }, - "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==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@types/js-cookie": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/@types/js-cookie/-/js-cookie-2.2.5.tgz", - "integrity": "sha512-cpmwBRcHJmmZx0OGU7aPVwGWGbs4iKwVYchk9iuMtxNCA2zorwdaTz4GkLgs2WGxiRZRFKnV1k6tRUHX7tBMxg==" - }, - "@types/js-money": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/@types/js-money/-/js-money-0.6.1.tgz", - "integrity": "sha512-aKe0BEeMrJe0KIm/h1XbkKc1zrMfHshAEwN7zA7UDWcAGwsbEnGsL3KagrBRisE6yJdDjjBV8bATvU8/4Y6DHg==" - }, - "@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==" - }, - "@types/lodash": { - "version": "4.14.186", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.186.tgz", - "integrity": "sha512-eHcVlLXP0c2FlMPm56ITode2AgLMSa6aJ05JTTbYbI+7EMkCEE5qk2E41d5g2lCVTqRe0GnnRFurmlCsDODrPw==" - }, - "@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" - }, - "@types/node": { - "version": "14.18.31", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.31.tgz", - "integrity": "sha512-vQAnaReSQkEDa8uwAyQby8bYGKu84R/deEc6mg5T8fX6gzCn8QW6rziSgsti1fNvsrswKUKPnVTi7uoB+u62Mw==" - }, - "@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" - }, - "@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" - }, - "@types/q": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", - "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==" - }, - "@types/ramda": { - "version": "0.28.15", - "resolved": "https://registry.npmjs.org/@types/ramda/-/ramda-0.28.15.tgz", - "integrity": "sha512-FCaLNVZry65jW8x/FDnKgjgkCNQxgc5AYMQwdNn6yW5M+62R+0nt2Y36U43dTNora9hcquemfrY5gxhE5pcilQ==", - "requires": { - "ts-toolbelt": "^6.15.1" - } - }, - "@types/react": { - "version": "16.14.32", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.14.32.tgz", - "integrity": "sha512-hvEy4vGVADbtj/U6+CA5SRC5QFIjdxD7JslAie8EuAYZwhYY9bgforpXNyF1VFzhnkEOesDy1278t1wdjN74cw==", - "requires": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "@types/react-body-classname": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/@types/react-body-classname/-/react-body-classname-1.1.7.tgz", - "integrity": "sha512-rfs2A8PUfmTiVVpPWNWe4/uOUHgXWIe0IRxQmxx8DK/Ot2DxVQhILPZFHMWs03B92Fw43vipCx1FdVoBxY4bow==", - "requires": { - "@types/react": "*" - } - }, - "@types/react-dom": { - "version": "16.9.16", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.16.tgz", - "integrity": "sha512-Oqc0RY4fggGA3ltEgyPLc3IV9T73IGoWjkONbsyJ3ZBn+UPPCYpU2ec0i3cEbJuEdZtkqcCF2l1zf2pBdgUGSg==", - "dev": true, - "requires": { - "@types/react": "^16" - } - }, - "@types/react-redux": { - "version": "7.1.24", - "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.24.tgz", - "integrity": "sha512-7FkurKcS1k0FHZEtdbbgN8Oc6b+stGSfZYjQGicofJ0j4U0qIn/jaSvnP2pLwZKiai3/17xqqxkkrxTgN8UNbQ==", - "requires": { - "@types/hoist-non-react-statics": "^3.3.0", - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0", - "redux": "^4.0.0" - } - }, - "@types/react-router": { - "version": "5.1.19", - "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.19.tgz", - "integrity": "sha512-Fv/5kb2STAEMT3wHzdKQK2z8xKq38EDIGVrutYLmQVVLe+4orDFquU52hQrULnEHinMKv9FSA6lf9+uNT1ITtA==", - "requires": { - "@types/history": "^4.7.11", - "@types/react": "*" - } - }, - "@types/react-router-dom": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz", - "integrity": "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==", - "requires": { - "@types/history": "^4.7.11", - "@types/react": "*", - "@types/react-router": "*" - } - }, - "@types/react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==", - "requires": { - "@types/react": "*" - } - }, - "@types/scheduler": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", - "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" - }, - "@types/stack-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", - "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==" - }, - "@types/styled-components": { - "version": "5.1.26", - "resolved": "https://registry.npmjs.org/@types/styled-components/-/styled-components-5.1.26.tgz", - "integrity": "sha512-KuKJ9Z6xb93uJiIyxo/+ksS7yLjS1KzG6iv5i78dhVg/X3u5t1H7juRWqVmodIdz6wGVaIApo1u01kmFRdJHVw==", - "requires": { - "@types/hoist-non-react-statics": "*", - "@types/react": "*", - "csstype": "^3.0.2" - } - }, - "@types/testing-library__dom": { - "version": "6.14.0", - "resolved": "https://registry.npmjs.org/@types/testing-library__dom/-/testing-library__dom-6.14.0.tgz", - "integrity": "sha512-sMl7OSv0AvMOqn1UJ6j1unPMIHRXen0Ita1ujnMX912rrOcawe4f7wu0Zt9GIQhBhJvH2BaibqFgQ3lP+Pj2hA==", - "requires": { - "pretty-format": "^24.3.0" - } - }, - "@types/testing-library__react": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@types/testing-library__react/-/testing-library__react-9.1.3.tgz", - "integrity": "sha512-iCdNPKU3IsYwRK9JieSYAiX0+aYDXOGAmrC/3/M7AqqSDKnWWVv07X+Zk1uFSL7cMTUYzv4lQRfohucEocn5/w==", - "requires": { - "@types/react-dom": "*", - "@types/testing-library__dom": "*", - "pretty-format": "^25.1.0" - }, - "dependencies": { - "@jest/types": { - "version": "25.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz", - "integrity": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==", - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - } - }, - "@types/react-dom": { - "version": "18.0.6", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.6.tgz", - "integrity": "sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==", - "requires": { - "@types/react": "*" - } - }, - "@types/yargs": { - "version": "15.0.14", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz", - "integrity": "sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==", - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "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==", - "requires": { - "color-name": "~1.1.4" - } - }, - "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==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "pretty-format": { - "version": "25.5.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-25.5.0.tgz", - "integrity": "sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ==", - "requires": { - "@jest/types": "^25.5.0", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^16.12.0" - } - }, - "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==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@types/yargs": { - "version": "13.0.12", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.12.tgz", - "integrity": "sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==", - "requires": { - "@types/yargs-parser": "*" - } - }, - "@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" - }, - "@types/yup": { - "version": "0.29.14", - "resolved": "https://registry.npmjs.org/@types/yup/-/yup-0.29.14.tgz", - "integrity": "sha512-Ynb/CjHhE/Xp/4bhHmQC4U1Ox+I2OpfRYF3dnNgQqn1cHa6LK3H1wJMNPT02tSVZA6FYuXE2ITORfbnb6zBCSA==" - }, - "@typescript-eslint/eslint-plugin": { - "version": "2.34.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.34.0.tgz", - "integrity": "sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O/+KMI3fcTAmUUhK/iQcQ==", - "requires": { - "@typescript-eslint/experimental-utils": "2.34.0", - "functional-red-black-tree": "^1.0.1", - "regexpp": "^3.0.0", - "tsutils": "^3.17.1" - } - }, - "@typescript-eslint/experimental-utils": { - "version": "2.34.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz", - "integrity": "sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==", - "requires": { - "@types/json-schema": "^7.0.3", - "@typescript-eslint/typescript-estree": "2.34.0", - "eslint-scope": "^5.0.0", - "eslint-utils": "^2.0.0" - } + "@rushstack/eslint-patch": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz", + "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==", + "dev": true + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true }, "@typescript-eslint/parser": { - "version": "2.34.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-2.34.0.tgz", - "integrity": "sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA==", + "version": "5.50.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.50.0.tgz", + "integrity": "sha512-KCcSyNaogUDftK2G9RXfQyOCt51uB5yqC6pkUYqhYh8Kgt+DwR5M0EwEAxGPy/+DH6hnmKeGsNhiZRQxjH71uQ==", + "dev": true, "requires": { - "@types/eslint-visitor-keys": "^1.0.0", - "@typescript-eslint/experimental-utils": "2.34.0", - "@typescript-eslint/typescript-estree": "2.34.0", - "eslint-visitor-keys": "^1.1.0" + "@typescript-eslint/scope-manager": "5.50.0", + "@typescript-eslint/types": "5.50.0", + "@typescript-eslint/typescript-estree": "5.50.0", + "debug": "^4.3.4" } }, + "@typescript-eslint/scope-manager": { + "version": "5.50.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.50.0.tgz", + "integrity": "sha512-rt03kaX+iZrhssaT974BCmoUikYtZI24Vp/kwTSy841XhiYShlqoshRFDvN1FKKvU2S3gK+kcBW1EA7kNUrogg==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.50.0", + "@typescript-eslint/visitor-keys": "5.50.0" + } + }, + "@typescript-eslint/types": { + "version": "5.50.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.50.0.tgz", + "integrity": "sha512-atruOuJpir4OtyNdKahiHZobPKFvZnBnfDiyEaBf6d9vy9visE7gDjlmhl+y29uxZ2ZDgvXijcungGFjGGex7w==", + "dev": true + }, "@typescript-eslint/typescript-estree": { - "version": "2.34.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz", - "integrity": "sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg==", + "version": "5.50.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.50.0.tgz", + "integrity": "sha512-Gq4zapso+OtIZlv8YNAStFtT6d05zyVCK7Fx3h5inlLBx2hWuc/0465C2mg/EQDDU2LKe52+/jN4f0g9bd+kow==", + "dev": true, "requires": { - "debug": "^4.1.1", - "eslint-visitor-keys": "^1.1.0", - "glob": "^7.1.6", - "is-glob": "^4.0.1", - "lodash": "^4.17.15", - "semver": "^7.3.2", - "tsutils": "^3.17.1" - }, - "dependencies": { - "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "requires": { - "lru-cache": "^6.0.0" - } - } + "@typescript-eslint/types": "5.50.0", + "@typescript-eslint/visitor-keys": "5.50.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" } }, - "@ucast/core": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/@ucast/core/-/core-1.10.1.tgz", - "integrity": "sha512-sXKbvQiagjFh2JCpaHUa64P4UdJbOxYeC5xiZFn8y6iYdb0WkismduE+RmiJrIjw/eLDYmIEXiQeIYYowmkcAw==" - }, - "@ucast/js": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@ucast/js/-/js-3.0.2.tgz", - "integrity": "sha512-zxNkdIPVvqJjHI7D/iK8Aai1+59yqU+N7bpHFodVmiTN7ukeNiGGpNmmSjQgsUw7eNcEBnPrZHNzp5UBxwmaPw==", + "@typescript-eslint/visitor-keys": { + "version": "5.50.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.50.0.tgz", + "integrity": "sha512-cdMeD9HGu6EXIeGOh2yVW6oGf9wq8asBgZx7nsR/D36gTfQ0odE5kcRYe5M81vjEFAcPeugXrHg78Imu55F6gg==", + "dev": true, "requires": { - "@ucast/core": "^1.0.0" - } - }, - "@ucast/mongo": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@ucast/mongo/-/mongo-2.4.2.tgz", - "integrity": "sha512-/zH1TdBJlYGKKD+Wh0oyD+aBvDSWrwHcD8b4tUL9UgHLhzHtkEnMVFuxbw3SRIRsAa01wmy06+LWt+WoZdj1Bw==", - "requires": { - "@ucast/core": "^1.4.1" - } - }, - "@ucast/mongo2js": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@ucast/mongo2js/-/mongo2js-1.3.3.tgz", - "integrity": "sha512-sBPtMUYg+hRnYeVYKL+ATm8FaRPdlU9PijMhGYKgsPGjV9J4Ks41ytIjGayvKUnBOEhiCaKUUnY4qPeifdqATw==", - "requires": { - "@ucast/core": "^1.6.1", - "@ucast/js": "^3.0.0", - "@ucast/mongo": "^2.4.0" - } - }, - "@webassemblyjs/ast": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz", - "integrity": "sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==", - "requires": { - "@webassemblyjs/helper-module-context": "1.8.5", - "@webassemblyjs/helper-wasm-bytecode": "1.8.5", - "@webassemblyjs/wast-parser": "1.8.5" - } - }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz", - "integrity": "sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==" - }, - "@webassemblyjs/helper-api-error": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz", - "integrity": "sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==" - }, - "@webassemblyjs/helper-buffer": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz", - "integrity": "sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==" - }, - "@webassemblyjs/helper-code-frame": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz", - "integrity": "sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==", - "requires": { - "@webassemblyjs/wast-printer": "1.8.5" - } - }, - "@webassemblyjs/helper-fsm": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz", - "integrity": "sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==" - }, - "@webassemblyjs/helper-module-context": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz", - "integrity": "sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "mamacro": "^0.0.3" - } - }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz", - "integrity": "sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==" - }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz", - "integrity": "sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-buffer": "1.8.5", - "@webassemblyjs/helper-wasm-bytecode": "1.8.5", - "@webassemblyjs/wasm-gen": "1.8.5" - } - }, - "@webassemblyjs/ieee754": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz", - "integrity": "sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==", - "requires": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "@webassemblyjs/leb128": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.8.5.tgz", - "integrity": "sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==", - "requires": { - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/utf8": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.8.5.tgz", - "integrity": "sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==" - }, - "@webassemblyjs/wasm-edit": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz", - "integrity": "sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-buffer": "1.8.5", - "@webassemblyjs/helper-wasm-bytecode": "1.8.5", - "@webassemblyjs/helper-wasm-section": "1.8.5", - "@webassemblyjs/wasm-gen": "1.8.5", - "@webassemblyjs/wasm-opt": "1.8.5", - "@webassemblyjs/wasm-parser": "1.8.5", - "@webassemblyjs/wast-printer": "1.8.5" - } - }, - "@webassemblyjs/wasm-gen": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz", - "integrity": "sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-wasm-bytecode": "1.8.5", - "@webassemblyjs/ieee754": "1.8.5", - "@webassemblyjs/leb128": "1.8.5", - "@webassemblyjs/utf8": "1.8.5" - } - }, - "@webassemblyjs/wasm-opt": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz", - "integrity": "sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-buffer": "1.8.5", - "@webassemblyjs/wasm-gen": "1.8.5", - "@webassemblyjs/wasm-parser": "1.8.5" - } - }, - "@webassemblyjs/wasm-parser": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz", - "integrity": "sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-api-error": "1.8.5", - "@webassemblyjs/helper-wasm-bytecode": "1.8.5", - "@webassemblyjs/ieee754": "1.8.5", - "@webassemblyjs/leb128": "1.8.5", - "@webassemblyjs/utf8": "1.8.5" - } - }, - "@webassemblyjs/wast-parser": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz", - "integrity": "sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/floating-point-hex-parser": "1.8.5", - "@webassemblyjs/helper-api-error": "1.8.5", - "@webassemblyjs/helper-code-frame": "1.8.5", - "@webassemblyjs/helper-fsm": "1.8.5", - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/wast-printer": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz", - "integrity": "sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/wast-parser": "1.8.5", - "@xtuc/long": "4.2.2" - } - }, - "@welldone-software/why-did-you-render": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/@welldone-software/why-did-you-render/-/why-did-you-render-6.2.3.tgz", - "integrity": "sha512-FQgi90jvC9uw2aALlonJfqaWOvU5UUBBVvdAnS2iryXwCc4YJkKsPJY5Y/LzaND3OIyk8XGUn1vTRn6hcem28Q==", - "requires": { - "lodash": "^4" - } - }, - "@xobotyi/scrollbar-width": { - "version": "1.9.5", - "resolved": "https://registry.npmjs.org/@xobotyi/scrollbar-width/-/scrollbar-width-1.9.5.tgz", - "integrity": "sha512-N8tkAACJx2ww8vFMneJmaAgmjAG1tnVBZJRLRcx061tmsLRZHSEZSLuGWnwPtunsSLvSqXQ2wfp7Mgqg1I+2dQ==" - }, - "@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" - }, - "@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==" - }, - "abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" - }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" - }, - "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==", - "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - } - }, - "accounting": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/accounting/-/accounting-0.4.1.tgz", - "integrity": "sha512-RU6KY9Y5wllyaCNBo1W11ZOTnTHMMgOZkIwdOOs6W5ibMTp72i4xIbEA48djxVGqMNTUNbvrP/1nWg5Af5m2gQ==" - }, - "acorn": { - "version": "5.7.4", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", - "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==" - }, - "acorn-globals": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz", - "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==", - "requires": { - "acorn": "^6.0.1", - "acorn-walk": "^6.0.1" - }, - "dependencies": { - "acorn": { - "version": "6.4.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", - "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==" - } - } - }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" - }, - "acorn-walk": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", - "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==" - }, - "address": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", - "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" - }, - "adjust-sourcemap-loader": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz", - "integrity": "sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==", - "requires": { - "loader-utils": "^2.0.0", - "regex-parser": "^2.2.11" - } - }, - "aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-errors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", - "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==" - }, - "ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" - }, - "alphanum-sort": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", - "integrity": "sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==" - }, - "amdefine": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", - "integrity": "sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==" - }, - "ansi-colors": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", - "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==" - }, - "ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==" - }, - "ansi-html": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", - "integrity": "sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA==" - }, - "ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==" - }, - "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==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - }, - "dependencies": { - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } - } - }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" - }, - "are-we-there-yet": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz", - "integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==", - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "requires": { - "sprintf-js": "~1.0.2" + "@typescript-eslint/types": "5.50.0", + "eslint-visitor-keys": "^3.3.0" } }, "aria-query": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", - "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "dev": true, "requires": { - "@babel/runtime": "^7.10.2", - "@babel/runtime-corejs3": "^7.10.2" + "deep-equal": "^2.0.5" } }, - "arity-n": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz", - "integrity": "sha512-fExL2kFDC1Q2DUOx3whE/9KoN66IzkY4b4zUHUBFM1ojEYjZZYDcUW3bek/ufGionX9giIKDC5redH2IlGqcQQ==" - }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==" - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==" - }, - "array-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", - "integrity": "sha512-H3LU5RLiSsGXPhN+Nipar0iR0IofH+8r89G2y1tBKxQ/agagKyAjhkAFDRBfodP2caPrNKHpAWNIM/c9yeL7uA==" - }, - "array-find-index": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", - "integrity": "sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==" - }, - "array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" - }, "array-includes": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz", - "integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", - "es-abstract": "^1.19.5", - "get-intrinsic": "^1.1.1", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", "is-string": "^1.0.7" } }, "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==" - }, - "array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==" - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==" + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true }, "array.prototype.flat": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz", - "integrity": "sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "dev": true, "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", "es-shim-unscopables": "^1.0.0" } }, - "array.prototype.reduce": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz", - "integrity": "sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw==", + "array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "dev": true, "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.2", - "es-array-method-boxes-properly": "^1.0.0", - "is-string": "^1.0.7" + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" } }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==" - }, - "asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" - }, - "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==", + "array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "dev": true, "requires": { - "safer-buffer": "~2.1.0" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" } }, - "asn1.js": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", - "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", - "requires": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "assert": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", - "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", - "requires": { - "object-assign": "^4.1.1", - "util": "0.10.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==" - }, - "util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==", - "requires": { - "inherits": "2.0.1" - } - } - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" - }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==" - }, "ast-types-flow": { "version": "0.0.7", "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", + "dev": true }, - "astral-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", - "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==" + "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==", + "dev": true }, - "async": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", - "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", - "requires": { - "lodash": "^4.17.14" - } - }, - "async-each": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" - }, - "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==" - }, - "async-limiter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - }, - "atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" - }, - "attr-accept": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/attr-accept/-/attr-accept-2.2.2.tgz", - "integrity": "sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg==" - }, - "autoprefixer": { - "version": "9.8.8", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.8.tgz", - "integrity": "sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==", - "requires": { - "browserslist": "^4.12.0", - "caniuse-lite": "^1.0.30001109", - "normalize-range": "^0.1.2", - "num2fraction": "^1.2.2", - "picocolors": "^0.2.1", - "postcss": "^7.0.32", - "postcss-value-parser": "^4.1.0" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" - } - } - }, - "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==" - }, - "aws4": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", - "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" - }, - "axios": { - "version": "0.21.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", - "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", - "requires": { - "follow-redirects": "^1.14.0" - } + "axe-core": { + "version": "4.6.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz", + "integrity": "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==", + "dev": true }, "axobject-query": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", - "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" - }, - "babel-code-frame": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", - "integrity": "sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", + "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", + "dev": true, "requires": { - "chalk": "^1.1.3", - "esutils": "^2.0.2", - "js-tokens": "^3.0.2" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==" - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==" - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==" - } + "deep-equal": "^2.0.5" } }, - "babel-eslint": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", - "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.0", - "@babel/traverse": "^7.7.0", - "@babel/types": "^7.7.0", - "eslint-visitor-keys": "^1.0.0", - "resolve": "^1.12.0" - } - }, - "babel-extract-comments": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz", - "integrity": "sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==", - "requires": { - "babylon": "^6.18.0" - } - }, - "babel-jest": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.9.0.tgz", - "integrity": "sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==", - "requires": { - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/babel__core": "^7.1.0", - "babel-plugin-istanbul": "^5.1.0", - "babel-preset-jest": "^24.9.0", - "chalk": "^2.4.2", - "slash": "^2.0.0" - } - }, - "babel-loader": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.1.0.tgz", - "integrity": "sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==", - "requires": { - "find-cache-dir": "^2.1.0", - "loader-utils": "^1.4.0", - "mkdirp": "^0.5.3", - "pify": "^4.0.1", - "schema-utils": "^2.6.5" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - } - } - }, - "babel-plugin-dynamic-import-node": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", - "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", - "requires": { - "object.assign": "^4.1.0" - } - }, - "babel-plugin-istanbul": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz", - "integrity": "sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==", - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "find-up": "^3.0.0", - "istanbul-lib-instrument": "^3.3.0", - "test-exclude": "^5.2.3" - } - }, - "babel-plugin-jest-hoist": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz", - "integrity": "sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw==", - "requires": { - "@types/babel__traverse": "^7.0.6" - } - }, - "babel-plugin-macros": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", - "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", - "requires": { - "@babel/runtime": "^7.7.2", - "cosmiconfig": "^6.0.0", - "resolve": "^1.12.0" - }, - "dependencies": { - "cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", - "requires": { - "@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" - } - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "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==", - "requires": { - "@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" - } - }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - }, - "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==" - } - } - }, - "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==" - }, - "babel-plugin-polyfill-corejs2": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", - "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", - "requires": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.3", - "semver": "^6.1.1" - } - }, - "babel-plugin-polyfill-corejs3": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", - "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", - "requires": { - "@babel/helper-define-polyfill-provider": "^0.3.3", - "core-js-compat": "^3.25.1" - } - }, - "babel-plugin-polyfill-regenerator": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", - "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", - "requires": { - "@babel/helper-define-polyfill-provider": "^0.3.3" - } - }, - "babel-plugin-styled-components": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.7.tgz", - "integrity": "sha512-i7YhvPgVqRKfoQ66toiZ06jPNA3p6ierpfUuEWxNF+fV27Uv5gxBkf8KZLHUCc1nFA9j6+80pYoIpqCeyW3/bA==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.16.0", - "@babel/helper-module-imports": "^7.16.0", - "babel-plugin-syntax-jsx": "^6.18.0", - "lodash": "^4.17.11", - "picomatch": "^2.3.0" - } - }, - "babel-plugin-syntax-jsx": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", - "integrity": "sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==" - }, - "babel-plugin-syntax-object-rest-spread": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", - "integrity": "sha512-C4Aq+GaAj83pRQ0EFgTvw5YO6T3Qz2KGrNRwIj9mSoNHVvdZY4KO2uA6HNtNXCw993iSZnckY1aLW8nOi8i4+w==" - }, - "babel-plugin-transform-object-rest-spread": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz", - "integrity": "sha512-ocgA9VJvyxwt+qJB0ncxV8kb/CjfTcECUY4tQ5VT7nP6Aohzobm8CDFaQ5FHdvZQzLmf0sgDxB8iRXZXxwZcyA==", - "requires": { - "babel-plugin-syntax-object-rest-spread": "^6.8.0", - "babel-runtime": "^6.26.0" - } - }, - "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==" - }, - "babel-preset-jest": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz", - "integrity": "sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==", - "requires": { - "@babel/plugin-syntax-object-rest-spread": "^7.0.0", - "babel-plugin-jest-hoist": "^24.9.0" - } - }, - "babel-preset-react-app": { - "version": "9.1.2", - "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-9.1.2.tgz", - "integrity": "sha512-k58RtQOKH21NyKtzptoAvtAODuAJJs3ZhqBMl456/GnXEQ/0La92pNmwgWoMn5pBTrsvk3YYXdY7zpY4e3UIxA==", - "requires": { - "@babel/core": "7.9.0", - "@babel/plugin-proposal-class-properties": "7.8.3", - "@babel/plugin-proposal-decorators": "7.8.3", - "@babel/plugin-proposal-nullish-coalescing-operator": "7.8.3", - "@babel/plugin-proposal-numeric-separator": "7.8.3", - "@babel/plugin-proposal-optional-chaining": "7.9.0", - "@babel/plugin-transform-flow-strip-types": "7.9.0", - "@babel/plugin-transform-react-display-name": "7.8.3", - "@babel/plugin-transform-runtime": "7.9.0", - "@babel/preset-env": "7.9.0", - "@babel/preset-react": "7.9.1", - "@babel/preset-typescript": "7.9.0", - "@babel/runtime": "7.9.0", - "babel-plugin-macros": "2.8.0", - "babel-plugin-transform-react-remove-prop-types": "0.4.24" - }, - "dependencies": { - "@babel/core": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.9.0.tgz", - "integrity": "sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==", - "requires": { - "@babel/code-frame": "^7.8.3", - "@babel/generator": "^7.9.0", - "@babel/helper-module-transforms": "^7.9.0", - "@babel/helpers": "^7.9.0", - "@babel/parser": "^7.9.0", - "@babel/template": "^7.8.6", - "@babel/traverse": "^7.9.0", - "@babel/types": "^7.9.0", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.1", - "json5": "^2.1.2", - "lodash": "^4.17.13", - "resolve": "^1.3.2", - "semver": "^5.4.1", - "source-map": "^0.5.0" - } - }, - "@babel/plugin-proposal-class-properties": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz", - "integrity": "sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" - } - }, - "@babel/plugin-proposal-numeric-separator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.8.3.tgz", - "integrity": "sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3" - } - }, - "@babel/plugin-proposal-optional-chaining": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz", - "integrity": "sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.0" - } - }, - "@babel/plugin-transform-react-display-name": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz", - "integrity": "sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/preset-env": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.9.0.tgz", - "integrity": "sha512-712DeRXT6dyKAM/FMbQTV/FvRCms2hPCx+3weRjZ8iQVQWZejWWk1wwG6ViWMyqb/ouBbGOl5b6aCk0+j1NmsQ==", - "requires": { - "@babel/compat-data": "^7.9.0", - "@babel/helper-compilation-targets": "^7.8.7", - "@babel/helper-module-imports": "^7.8.3", - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-proposal-async-generator-functions": "^7.8.3", - "@babel/plugin-proposal-dynamic-import": "^7.8.3", - "@babel/plugin-proposal-json-strings": "^7.8.3", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-proposal-numeric-separator": "^7.8.3", - "@babel/plugin-proposal-object-rest-spread": "^7.9.0", - "@babel/plugin-proposal-optional-catch-binding": "^7.8.3", - "@babel/plugin-proposal-optional-chaining": "^7.9.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.8.3", - "@babel/plugin-syntax-async-generators": "^7.8.0", - "@babel/plugin-syntax-dynamic-import": "^7.8.0", - "@babel/plugin-syntax-json-strings": "^7.8.0", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", - "@babel/plugin-syntax-numeric-separator": "^7.8.0", - "@babel/plugin-syntax-object-rest-spread": "^7.8.0", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.0", - "@babel/plugin-syntax-top-level-await": "^7.8.3", - "@babel/plugin-transform-arrow-functions": "^7.8.3", - "@babel/plugin-transform-async-to-generator": "^7.8.3", - "@babel/plugin-transform-block-scoped-functions": "^7.8.3", - "@babel/plugin-transform-block-scoping": "^7.8.3", - "@babel/plugin-transform-classes": "^7.9.0", - "@babel/plugin-transform-computed-properties": "^7.8.3", - "@babel/plugin-transform-destructuring": "^7.8.3", - "@babel/plugin-transform-dotall-regex": "^7.8.3", - "@babel/plugin-transform-duplicate-keys": "^7.8.3", - "@babel/plugin-transform-exponentiation-operator": "^7.8.3", - "@babel/plugin-transform-for-of": "^7.9.0", - "@babel/plugin-transform-function-name": "^7.8.3", - "@babel/plugin-transform-literals": "^7.8.3", - "@babel/plugin-transform-member-expression-literals": "^7.8.3", - "@babel/plugin-transform-modules-amd": "^7.9.0", - "@babel/plugin-transform-modules-commonjs": "^7.9.0", - "@babel/plugin-transform-modules-systemjs": "^7.9.0", - "@babel/plugin-transform-modules-umd": "^7.9.0", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.8.3", - "@babel/plugin-transform-new-target": "^7.8.3", - "@babel/plugin-transform-object-super": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.8.7", - "@babel/plugin-transform-property-literals": "^7.8.3", - "@babel/plugin-transform-regenerator": "^7.8.7", - "@babel/plugin-transform-reserved-words": "^7.8.3", - "@babel/plugin-transform-shorthand-properties": "^7.8.3", - "@babel/plugin-transform-spread": "^7.8.3", - "@babel/plugin-transform-sticky-regex": "^7.8.3", - "@babel/plugin-transform-template-literals": "^7.8.3", - "@babel/plugin-transform-typeof-symbol": "^7.8.4", - "@babel/plugin-transform-unicode-regex": "^7.8.3", - "@babel/preset-modules": "^0.1.3", - "@babel/types": "^7.9.0", - "browserslist": "^4.9.1", - "core-js-compat": "^3.6.2", - "invariant": "^2.2.2", - "levenary": "^1.1.1", - "semver": "^5.5.0" - } - }, - "@babel/preset-react": { - "version": "7.9.1", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.9.1.tgz", - "integrity": "sha512-aJBYF23MPj0RNdp/4bHnAP0NVqqZRr9kl0NAOP4nJCex6OYVio59+dnQzsAWFuogdLyeaKA1hmfUIVZkY5J+TQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-transform-react-display-name": "^7.8.3", - "@babel/plugin-transform-react-jsx": "^7.9.1", - "@babel/plugin-transform-react-jsx-development": "^7.9.0", - "@babel/plugin-transform-react-jsx-self": "^7.9.0", - "@babel/plugin-transform-react-jsx-source": "^7.9.0" - } - }, - "@babel/runtime": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.0.tgz", - "integrity": "sha512-cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA==", - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" - } - } - }, - "babel-runtime": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", - "integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==", - "requires": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.11.0" - }, - "dependencies": { - "core-js": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", - "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" - }, - "regenerator-runtime": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", - "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" - } - } - }, - "babylon": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", - "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" - }, "balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "requires": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - }, - "basscss": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/basscss/-/basscss-8.1.0.tgz", - "integrity": "sha512-SJ48HWDKqX1OnzeZgqwweFPVM98h0lNtvC+megWPCEJ1R6LIbx6dnj3rpCJueElVn9giWipZhoozMEBRAIlnUw==", - "requires": { - "basscss-align": "^1.0.2", - "basscss-border": "^4.0.2", - "basscss-flexbox": "^1.0.2", - "basscss-grid": "^2.0.0", - "basscss-hide": "^1.0.1", - "basscss-layout": "^3.1.0", - "basscss-margin": "^1.0.9", - "basscss-padding": "^1.1.3", - "basscss-position": "^2.0.3", - "basscss-type-scale": "^1.0.6", - "basscss-typography": "^3.0.4" - } - }, - "basscss-align": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/basscss-align/-/basscss-align-1.0.2.tgz", - "integrity": "sha512-T7XvlG6jqjBvQ27xSioO5p069E5jW12QbOy+V+QKnkmfwkU+SDTrcLI2DMSlTPGbPmtDZHeRrG9qwOhjbaMMbg==" - }, - "basscss-border": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/basscss-border/-/basscss-border-4.0.2.tgz", - "integrity": "sha512-qw+AeA7zFVtYWdWR+GQ+CkXbGzJ6QhjyT4eE4SURSkviSoZkZEA+oVbtC/yD/hiy/spWFk9UDLE71vJ8CDEnHw==" - }, - "basscss-flexbox": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/basscss-flexbox/-/basscss-flexbox-1.0.2.tgz", - "integrity": "sha512-AtG6yBmmza2nPo3x9X4/7rbW22gLmiSvYvirFs7Aspt1zp5FHwpRBz3BD2v/a3qPdmVM8OvOLVNWISGM6O50MA==" - }, - "basscss-grid": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/basscss-grid/-/basscss-grid-2.0.0.tgz", - "integrity": "sha512-vUnHyLvNx4Bi7caXWMpooMBOBCP+bib/z+pu/kqySLHe0ap5kNTs9EgTBI/QVD8VrnruIznL5GUP3RuT0KLZ6g==" - }, - "basscss-hide": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/basscss-hide/-/basscss-hide-1.0.1.tgz", - "integrity": "sha512-NYKtjyYIoY4GGiRrE5b3NV/9AmLJOoYTshKl2N6rNI+Bvh+rElT+F7GsOvNlmJvoVhDihcLK16U2UYYNlmb9Bw==" - }, - "basscss-layout": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/basscss-layout/-/basscss-layout-3.1.0.tgz", - "integrity": "sha512-umKiuaeDS4THPPA/3N8UOO3wyubEKf+93Cm971QkAWLjDu2OrX5rOOAQC+tP+Q+OsMaAKvMNdZlA4kij+2y4nQ==" - }, - "basscss-margin": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/basscss-margin/-/basscss-margin-1.0.9.tgz", - "integrity": "sha512-wpF8tXrtzU+iMtLvfSgYJlpkIxChOlay3YumoI+yJ6IiOe5uMmEGUG8FWAIkC8QalkKDAURAqHmQ4nbuyUvyag==" - }, - "basscss-padding": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/basscss-padding/-/basscss-padding-1.1.3.tgz", - "integrity": "sha512-pfqA7LgTpdR9lCh36IxWFNV4kZM53G1lnQlvC/2MzUu62XhvRDXD2uENGXWwJYKgaxRAdqdDoHZ0K23mRlk29g==" - }, - "basscss-position": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/basscss-position/-/basscss-position-2.0.3.tgz", - "integrity": "sha512-g3esHpUHqABF4wieZyAVaLI6JnK7/mPVG65OCfM6VcSRQcw7g4mxHI8nTWlnwlzpwFnqXnI/KBco00ccUJvOLg==" - }, - "basscss-type-scale": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/basscss-type-scale/-/basscss-type-scale-1.0.6.tgz", - "integrity": "sha512-93KOVRr5iX0e38d6+k2pQ8WW1IA5DigQhJextts4rwbSt2+cr+XrokGJ74HB8LevO54HMoc3VJ8M6oOR2puc8A==" - }, - "basscss-typography": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/basscss-typography/-/basscss-typography-3.0.4.tgz", - "integrity": "sha512-PMCxUfYPpAj8gQV8qI09lfNp7eWNrKtQFkCN2fZjLyReSY/wnw8QP8irpvbJ67vSEhlkA6ZP8j7vmTDoxkyu8g==" - }, - "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==" - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "big-integer": { - "version": "1.6.51", - "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", - "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==" - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" - }, - "bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "optional": true, - "requires": { - "file-uri-to-path": "1.0.0" - } - }, - "block-stream": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", - "integrity": "sha512-OorbnJVPII4DuUKbjARAe8u8EfqOmkEEaSFIyoQ7OjTHn6kafxWl0wLgoZ2rXaYd7MyLcDaU4TmhfxtwgcccMQ==", - "requires": { - "inherits": "~2.0.0" - } - }, - "bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - }, - "bn.js": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", - "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" - }, - "body-parser": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", - "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", - "requires": { - "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.10.3", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "dependencies": { - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "qs": { - "version": "6.10.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", - "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", - "requires": { - "side-channel": "^1.0.4" - } - } - } - }, - "bonjour": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", - "integrity": "sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg==", - "requires": { - "array-flatten": "^2.1.0", - "deep-equal": "^1.0.1", - "dns-equal": "^1.0.0", - "dns-txt": "^2.0.2", - "multicast-dns": "^6.0.1", - "multicast-dns-service-types": "^1.1.0" - } - }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -4336,1821 +225,175 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, "requires": { "fill-range": "^7.0.1" } }, - "broadcast-channel": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/broadcast-channel/-/broadcast-channel-3.7.0.tgz", - "integrity": "sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg==", - "requires": { - "@babel/runtime": "^7.7.2", - "detect-node": "^2.1.0", - "js-sha3": "0.8.0", - "microseconds": "0.2.0", - "nano-time": "1.0.0", - "oblivious-set": "1.0.0", - "rimraf": "3.0.2", - "unload": "2.2.0" - }, - "dependencies": { - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "requires": { - "glob": "^7.1.3" - } - } - } - }, - "brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==" - }, - "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==" - }, - "browser-resolve": { - "version": "1.11.3", - "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", - "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", - "requires": { - "resolve": "1.1.7" - }, - "dependencies": { - "resolve": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", - "integrity": "sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==" - } - } - }, - "browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "requires": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "requires": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "requires": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "browserify-rsa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", - "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", - "requires": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" - } - }, - "browserify-sign": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", - "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", - "requires": { - "bn.js": "^5.1.1", - "browserify-rsa": "^4.0.1", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.3", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.5", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "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==" - } - } - }, - "browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", - "requires": { - "pako": "~1.0.5" - } - }, - "browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", - "requires": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" - } - }, - "bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "requires": { - "node-int64": "^0.4.0" - } - }, - "buffer": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", - "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", - "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - } - }, - "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==" - }, - "buffer-indexof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", - "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" - }, - "buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==" - }, - "builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==" - }, - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - }, - "cacache": { - "version": "13.0.1", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-13.0.1.tgz", - "integrity": "sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w==", - "requires": { - "chownr": "^1.1.2", - "figgy-pudding": "^3.5.1", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.2", - "infer-owner": "^1.0.4", - "lru-cache": "^5.1.1", - "minipass": "^3.0.0", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "p-map": "^3.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^2.7.1", - "ssri": "^7.0.0", - "unique-filename": "^1.1.1" - }, - "dependencies": { - "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==", - "requires": { - "yallist": "^3.0.2" - } - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - } - }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "requires": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - } - }, "call-bind": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, "requires": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" } }, - "call-me-maybe": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz", - "integrity": "sha512-wCyFsDQkKPwwF8BDwOiWNx/9K45L/hvggQiDbve+viMNMQnWhrlYIuBk09offfwCRtCO9P6XwUttufzU11WCVw==" - }, - "caller-callsite": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", - "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", - "requires": { - "callsites": "^2.0.0" - }, - "dependencies": { - "callsites": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==" - } - } - }, - "caller-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", - "integrity": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==", - "requires": { - "caller-callsite": "^2.0.0" - } - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - }, - "camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", - "requires": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - } - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - }, - "camelcase-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", - "integrity": "sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==", - "requires": { - "camelcase": "^2.0.0", - "map-obj": "^1.0.0" - }, - "dependencies": { - "camelcase": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", - "integrity": "sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==" - } - } - }, - "camelize": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz", - "integrity": "sha512-W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg==" - }, - "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==", - "requires": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" - } - }, - "caniuse-lite": { - "version": "1.0.30001414", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001414.tgz", - "integrity": "sha512-t55jfSaWjCdocnFdKQoO+d2ct9C59UZg4dY3OnUlSZ447r8pUtIKdp0hpAzrGFultmTC+Us+KpKi4GZl/LXlFg==" - }, - "capture-exit": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", - "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", - "requires": { - "rsvp": "^4.8.4" - } - }, - "case-sensitive-paths-webpack-plugin": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz", - "integrity": "sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==" - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" - }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.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" - }, - "dependencies": { - "anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "optional": true - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - } - } - }, - "chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" - }, - "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==" - }, - "ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" - }, - "cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "requires": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "classnames": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.2.tgz", - "integrity": "sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==" - }, - "clean-css": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", - "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", - "requires": { - "source-map": "~0.6.0" - } - }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" - }, - "cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "requires": { - "restore-cursor": "^3.1.0" - } - }, - "cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==" - }, - "cliui": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", - "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", - "requires": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" - } - }, - "clone-deep": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-0.2.4.tgz", - "integrity": "sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==", - "requires": { - "for-own": "^0.1.3", - "is-plain-object": "^2.0.1", - "kind-of": "^3.0.2", - "lazy-cache": "^1.0.3", - "shallow-clone": "^0.1.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "clsx": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", - "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==" - }, - "cnbuilder": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cnbuilder/-/cnbuilder-3.1.0.tgz", - "integrity": "sha512-9sxWwwprkPNTVQnx92WYPEWCmyZRqbf9VWUYABU4rl0mLL17VAV2MvvOApkMA6bQVXRLJ8jN//8Yp6drElpLWA==" - }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" - }, - "coa": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", - "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", - "requires": { - "@types/q": "^1.5.1", - "chalk": "^2.4.1", - "q": "^1.1.2" - } - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==" - }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", - "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - } - }, - "color": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", - "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", - "requires": { - "color-convert": "^1.9.3", - "color-string": "^1.6.0" - } - }, - "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==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "color-string": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", - "requires": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "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==" - }, - "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==" - }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" - }, - "component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" - }, - "compose-function": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/compose-function/-/compose-function-3.0.3.tgz", - "integrity": "sha512-xzhzTJ5eC+gmIzvZq+C3kCJHsp9os6tJkrigDRZclyGtOKINbZtE8n1Tzmeh32jW+BUDPbvZpibwvJHBLGMVwg==", - "requires": { - "arity-n": "^1.0.4" - } - }, - "compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", - "requires": { - "mime-db": ">= 1.43.0 < 2" - } - }, - "compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "requires": { - "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" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - }, - "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "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==" - }, - "connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" - }, - "console-browserify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" - }, - "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==" - }, - "constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==" - }, - "contains-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz", - "integrity": "sha512-OKZnPGeMQy2RPaUIBPFFd71iNf4791H12MCRuVQDnzGRwCYNYmTDy5pdafo2SLAcEMKzTOQnLWG4QdcjeJUMEg==" - }, - "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==", - "requires": { - "safe-buffer": "5.2.1" - }, - "dependencies": { - "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==" - } - } - }, - "content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" - }, - "convert-source-map": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", - "requires": { - "safe-buffer": "~5.1.1" - } - }, - "cookie": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", - "integrity": "sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw==" - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - }, - "copy-concurrently": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", - "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", - "requires": { - "aproba": "^1.1.1", - "fs-write-stream-atomic": "^1.0.8", - "iferr": "^0.1.5", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.0" - } - }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==" - }, - "copy-to-clipboard": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.2.tgz", - "integrity": "sha512-Vme1Z6RUDzrb6xAI7EZlVZ5uvOk2F//GaxKUxajDqm9LhOVM1inxNAD2vy+UZDYsd0uyA9s7b3/FVZPSxqrCfg==", - "requires": { - "toggle-selection": "^1.0.6" - } - }, - "core-js": { - "version": "3.25.3", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.25.3.tgz", - "integrity": "sha512-y1hvKXmPHvm5B7w4ln1S4uc9eV/O5+iFExSRUimnvIph11uaizFR8LFMdONN8hG3P2pipUfX4Y/fR8rAEtcHcQ==" - }, - "core-js-compat": { - "version": "3.25.3", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.25.3.tgz", - "integrity": "sha512-xVtYpJQ5grszDHEUU9O7XbjjcZ0ccX3LgQsyqSvTnjX97ZqEgn9F5srmrwwwMtbKzDllyFPL+O+2OFMl1lU4TQ==", - "requires": { - "browserslist": "^4.21.4" - } - }, - "core-js-pure": { - "version": "3.25.3", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.25.3.tgz", - "integrity": "sha512-T/7qvgv70MEvRkZ8p6BasLZmOVYKzOaWNBEHAU8FmveCJkl4nko2quqPQOmy6AJIp5MBanhz9no3A94NoRb0XA==" - }, - "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==" - }, - "cosmiconfig": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", - "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", - "requires": { - "import-fresh": "^2.0.0", - "is-directory": "^0.3.1", - "js-yaml": "^3.13.1", - "parse-json": "^4.0.0" - } - }, - "create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", - "requires": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "requires": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "requires": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "cross-env": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", - "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", - "requires": { - "cross-spawn": "^7.0.1" - } - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", - "requires": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - } - }, - "css": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz", - "integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==", - "requires": { - "inherits": "^2.0.3", - "source-map": "^0.6.1", - "source-map-resolve": "^0.5.2", - "urix": "^0.1.0" - } - }, - "css-blank-pseudo": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz", - "integrity": "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==", - "requires": { - "postcss": "^7.0.5" - } - }, - "css-color-keywords": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", - "integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==" - }, - "css-color-names": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", - "integrity": "sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==" - }, - "css-declaration-sorter": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", - "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", - "requires": { - "postcss": "^7.0.1", - "timsort": "^0.3.0" - } - }, - "css-has-pseudo": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz", - "integrity": "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==", - "requires": { - "postcss": "^7.0.6", - "postcss-selector-parser": "^5.0.0-rc.4" - }, - "dependencies": { - "cssesc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", - "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" - }, - "postcss-selector-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", - "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", - "requires": { - "cssesc": "^2.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } - } - }, - "css-in-js-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/css-in-js-utils/-/css-in-js-utils-2.0.1.tgz", - "integrity": "sha512-PJF0SpJT+WdbVVt0AOYp9C8GnuruRlL/UFW7932nLWmFLQTaWEzTBQEx7/hn4BuV+WON75iAViSUJLiU3PKbpA==", - "requires": { - "hyphenate-style-name": "^1.0.2", - "isobject": "^3.0.1" - } - }, - "css-loader": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.4.2.tgz", - "integrity": "sha512-jYq4zdZT0oS0Iykt+fqnzVLRIeiPWhka+7BqPn+oSIpWJAHak5tmB/WZrJ2a21JhCeFyNnnlroSl8c+MtVndzA==", - "requires": { - "camelcase": "^5.3.1", - "cssesc": "^3.0.0", - "icss-utils": "^4.1.1", - "loader-utils": "^1.2.3", - "normalize-path": "^3.0.0", - "postcss": "^7.0.23", - "postcss-modules-extract-imports": "^2.0.0", - "postcss-modules-local-by-default": "^3.0.2", - "postcss-modules-scope": "^2.1.1", - "postcss-modules-values": "^3.0.0", - "postcss-value-parser": "^4.0.2", - "schema-utils": "^2.6.0" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - } - } - }, - "css-prefers-color-scheme": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz", - "integrity": "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==", - "requires": { - "postcss": "^7.0.5" - } - }, - "css-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", - "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", - "requires": { - "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" - } - }, - "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==" - }, - "css-to-react-native": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.0.0.tgz", - "integrity": "sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==", - "requires": { - "camelize": "^1.0.0", - "css-color-keywords": "^1.0.0", - "postcss-value-parser": "^4.0.2" - } - }, - "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==", - "requires": { - "mdn-data": "2.0.4", - "source-map": "^0.6.1" - } - }, - "css-what": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", - "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==" - }, - "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==" - }, - "cssdb": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz", - "integrity": "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==" - }, - "cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" - }, - "cssnano": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.11.tgz", - "integrity": "sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g==", - "requires": { - "cosmiconfig": "^5.0.0", - "cssnano-preset-default": "^4.0.8", - "is-resolvable": "^1.0.0", - "postcss": "^7.0.0" - } - }, - "cssnano-preset-default": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz", - "integrity": "sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==", - "requires": { - "css-declaration-sorter": "^4.0.1", - "cssnano-util-raw-cache": "^4.0.1", - "postcss": "^7.0.0", - "postcss-calc": "^7.0.1", - "postcss-colormin": "^4.0.3", - "postcss-convert-values": "^4.0.1", - "postcss-discard-comments": "^4.0.2", - "postcss-discard-duplicates": "^4.0.2", - "postcss-discard-empty": "^4.0.1", - "postcss-discard-overridden": "^4.0.1", - "postcss-merge-longhand": "^4.0.11", - "postcss-merge-rules": "^4.0.3", - "postcss-minify-font-values": "^4.0.2", - "postcss-minify-gradients": "^4.0.2", - "postcss-minify-params": "^4.0.2", - "postcss-minify-selectors": "^4.0.2", - "postcss-normalize-charset": "^4.0.1", - "postcss-normalize-display-values": "^4.0.2", - "postcss-normalize-positions": "^4.0.2", - "postcss-normalize-repeat-style": "^4.0.2", - "postcss-normalize-string": "^4.0.2", - "postcss-normalize-timing-functions": "^4.0.2", - "postcss-normalize-unicode": "^4.0.1", - "postcss-normalize-url": "^4.0.1", - "postcss-normalize-whitespace": "^4.0.2", - "postcss-ordered-values": "^4.1.2", - "postcss-reduce-initial": "^4.0.3", - "postcss-reduce-transforms": "^4.0.2", - "postcss-svgo": "^4.0.3", - "postcss-unique-selectors": "^4.0.1" - } - }, - "cssnano-util-get-arguments": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", - "integrity": "sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw==" - }, - "cssnano-util-get-match": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", - "integrity": "sha512-JPMZ1TSMRUPVIqEalIBNoBtAYbi8okvcFns4O0YIhcdGebeYZK7dMyHJiQ6GqNBA9kE0Hym4Aqym5rPdsV/4Cw==" - }, - "cssnano-util-raw-cache": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", - "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", - "requires": { - "postcss": "^7.0.0" - } - }, - "cssnano-util-same-parent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", - "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==" - }, - "csso": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", - "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", - "requires": { - "css-tree": "^1.1.2" - }, - "dependencies": { - "css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", - "requires": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" - } - }, - "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==" - } - } - }, - "cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" - }, - "cssstyle": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz", - "integrity": "sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==", - "requires": { - "cssom": "0.3.x" - } - }, - "csstype": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", - "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==" - }, - "currently-unhandled": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", - "integrity": "sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==", - "requires": { - "array-find-index": "^1.0.1" - } - }, - "cyclist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", - "integrity": "sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A==" - }, - "d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", - "requires": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" - } + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true }, "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==" - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "data-urls": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz", - "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", - "requires": { - "abab": "^2.0.0", - "whatwg-mimetype": "^2.2.0", - "whatwg-url": "^7.0.0" - }, - "dependencies": { - "whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - } - } + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true }, "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, "requires": { "ms": "2.1.2" } }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==" - }, - "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==" - }, "deep-equal": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", - "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", + "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", + "dev": true, "requires": { - "is-arguments": "^1.0.4", - "is-date-object": "^1.0.1", - "is-regex": "^1.0.4", - "object-is": "^1.0.1", + "call-bind": "^1.0.2", + "es-get-iterator": "^1.1.2", + "get-intrinsic": "^1.1.3", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.1", + "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", - "regexp.prototype.flags": "^1.2.0" - } - }, - "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==" - }, - "deep-map-keys": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/deep-map-keys/-/deep-map-keys-2.0.1.tgz", - "integrity": "sha512-hvsUEzDow++fTMwM2f2S7ttG39Y20mprBGwsydPpgmHwPQGwG10KJW44JgYVImJtXlDY983jIiqU9W2+DS2yzg==", - "requires": { - "es6-weak-map": "^2.0.1", - "lodash": "^4.13.1" - } - }, - "deepdash": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/deepdash/-/deepdash-5.3.9.tgz", - "integrity": "sha512-GRzJ0q9PDj2T+J2fX+b+TlUa2NlZ11l6vJ8LHNKVGeZ8CfxCuJaCychTq07iDRTvlfO8435jlvVS1QXBrW9kMg==", - "requires": { - "lodash": "^4.17.21", - "lodash-es": "^4.17.21" - } - }, - "deepmerge": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-2.2.1.tgz", - "integrity": "sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA==" - }, - "default-gateway": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", - "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", - "requires": { - "execa": "^1.0.0", - "ip-regex": "^2.1.0" + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" } }, "define-properties": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "dev": true, "requires": { "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" } }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "dependencies": { - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, - "del": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", - "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", - "requires": { - "@types/glob": "^7.1.1", - "globby": "^6.1.0", - "is-path-cwd": "^2.0.0", - "is-path-in-cwd": "^2.0.0", - "p-map": "^2.0.0", - "pify": "^4.0.1", - "rimraf": "^2.6.3" - }, - "dependencies": { - "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==", - "requires": { - "array-uniq": "^1.0.1" - } - }, - "globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", - "requires": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" - } - } - }, - "p-map": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", - "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - } - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - }, - "dependency-graph": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", - "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==" - }, - "des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", - "requires": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" - }, - "detect-newline": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", - "integrity": "sha512-CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg==" - }, - "detect-node": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", - "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" - }, - "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==", - "requires": { - "address": "^1.0.1", - "debug": "^2.6.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "diff-sequences": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.9.0.tgz", - "integrity": "sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew==" - }, - "diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "requires": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, "dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, "requires": { "path-type": "^4.0.0" - }, - "dependencies": { - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - } - } - }, - "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==" - }, - "dns-packet": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", - "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", - "requires": { - "ip": "^1.1.0", - "safe-buffer": "^5.0.1" - } - }, - "dns-txt": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", - "integrity": "sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ==", - "requires": { - "buffer-indexof": "^1.0.0" } }, "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, "requires": { "esutils": "^2.0.2" } }, - "dom-accessibility-api": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.3.0.tgz", - "integrity": "sha512-PzwHEmsRP3IGY4gv/Ug+rMeaTIyTJvadCb+ujYXYeIylbHJezIyNToe8KfEgHTCEYyC+/bUghYOGg8yMGlZ6vA==" - }, - "dom-converter": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", - "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", - "requires": { - "utila": "~0.4" - } - }, - "dom-helpers": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz", - "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==", - "requires": { - "@babel/runtime": "^7.1.2" - } - }, - "dom-serializer": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", - "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", - "requires": { - "domelementtype": "^2.0.1", - "entities": "^2.0.0" - }, - "dependencies": { - "domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - } - } - }, - "dom4": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/dom4/-/dom4-2.1.6.tgz", - "integrity": "sha512-JkCVGnN4ofKGbjf5Uvc8mmxaATIErKQKSgACdBXpsQ3fY6DlIpAyWfiBSrGkttATssbDCp3psiAKWXk5gmjycA==" - }, - "domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" - }, - "domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" - }, - "domexception": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz", - "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", - "requires": { - "webidl-conversions": "^4.0.2" - } - }, - "domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", - "requires": { - "domelementtype": "^2.2.0" - }, - "dependencies": { - "domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - } - } - }, - "domutils": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", - "requires": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "dot-prop": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", - "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", - "requires": { - "is-obj": "^2.0.0" - } - }, - "dotenv": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", - "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==" - }, - "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==" - }, - "duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" - }, - "duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "requires": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - } - }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "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==" - }, - "electron-to-chromium": { - "version": "1.4.269", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.269.tgz", - "integrity": "sha512-7mHFONwp7MNvdyto1v70fCwk28NJMFgsK79op+iYHzz1BLE8T66a1B2qW5alb8XgE0yi3FL3ZQjSYZpJpF6snw==" - }, - "elliptic": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", - "requires": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" - }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "requires": { - "once": "^1.4.0" - } - }, - "enhanced-resolve": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", - "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", - "requires": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.5.0", - "tapable": "^1.0.0" - }, - "dependencies": { - "memory-fs": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", - "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - } - } - } - }, - "entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" - }, - "errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", - "requires": { - "prr": "~1.0.1" - } - }, - "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==", - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "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==", - "requires": { - "stackframe": "^1.3.4" - } + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true }, "es-abstract": { - "version": "1.20.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.3.tgz", - "integrity": "sha512-AyrnaKVpMzljIdwjzrj+LxGmj8ik2LckwXacHqrJJ/jxz6dDDBcZ7I7nlHM0FvEW8MfbWJwOd+yT2XzYW49Frw==", + "version": "1.21.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz", + "integrity": "sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==", + "dev": true, "requires": { + "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", "function.prototype.name": "^1.1.5", "get-intrinsic": "^1.1.3", "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", "has": "^1.0.3", "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.6", + "internal-slot": "^1.0.4", + "is-array-buffer": "^3.0.1", + "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.10", "is-weakref": "^1.0.2", "object-inspect": "^1.12.2", "object-keys": "^1.1.1", "object.assign": "^4.1.4", "regexp.prototype.flags": "^1.4.3", "safe-regex-test": "^1.0.0", - "string.prototype.trimend": "^1.0.5", - "string.prototype.trimstart": "^1.0.5", - "unbox-primitive": "^1.0.2" + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" } }, - "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==" + "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==", + "dev": true, + "requires": { + "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" + } + }, + "es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + } }, "es-shim-unscopables": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dev": true, "requires": { "has": "^1.0.3" } @@ -6159,270 +402,136 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, "requires": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", "is-symbol": "^1.0.2" } }, - "es5-ext": { - "version": "0.10.62", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", - "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", + "eslint-config-custom": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-custom/-/eslint-config-custom-0.0.0.tgz", + "integrity": "sha512-kwCw78yisbgKdJBJ5qooPmpBYDphDfM2oxSROmtfOwBXBwXuRiSV3suO01W3mVLEFpmQZxMWd/qajKpJhkKSug==", + "dev": true, "requires": { - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.3", - "next-tick": "^1.1.0" + "eslint-config-next": "^12.0.8", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-react": "7.28.0" } }, - "es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "eslint-config-next": { + "version": "12.3.4", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-12.3.4.tgz", + "integrity": "sha512-WuT3gvgi7Bwz00AOmKGhOeqnyA5P29Cdyr0iVjLyfDbk+FANQKcOjFUTZIdyYfe5Tq1x4TGcmoe4CwctGvFjHQ==", + "dev": true, "requires": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" - } - }, - "es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", - "requires": { - "d": "^1.0.1", - "ext": "^1.1.2" - } - }, - "es6-weak-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", - "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", - "requires": { - "d": "1", - "es5-ext": "^0.10.46", - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.1" - } - }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" - }, - "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==" - }, - "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==" - }, - "escodegen": { - "version": "1.14.3", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", - "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", - "requires": { - "esprima": "^4.0.1", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1", - "source-map": "~0.6.1" - } - }, - "eslint": { - "version": "6.8.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz", - "integrity": "sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==", - "requires": { - "@babel/code-frame": "^7.0.0", - "ajv": "^6.10.0", - "chalk": "^2.1.0", - "cross-spawn": "^6.0.5", - "debug": "^4.0.1", - "doctrine": "^3.0.0", - "eslint-scope": "^5.0.0", - "eslint-utils": "^1.4.3", - "eslint-visitor-keys": "^1.1.0", - "espree": "^6.1.2", - "esquery": "^1.0.1", - "esutils": "^2.0.2", - "file-entry-cache": "^5.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^5.0.0", - "globals": "^12.1.0", - "ignore": "^4.0.6", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "inquirer": "^7.0.0", - "is-glob": "^4.0.0", - "js-yaml": "^3.13.1", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.3.0", - "lodash": "^4.17.14", - "minimatch": "^3.0.4", - "mkdirp": "^0.5.1", - "natural-compare": "^1.4.0", - "optionator": "^0.8.3", - "progress": "^2.0.0", - "regexpp": "^2.0.1", - "semver": "^6.1.2", - "strip-ansi": "^5.2.0", - "strip-json-comments": "^3.0.1", - "table": "^5.2.3", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" + "@next/eslint-plugin-next": "12.3.4", + "@rushstack/eslint-patch": "^1.1.3", + "@typescript-eslint/parser": "^5.21.0", + "eslint-import-resolver-node": "^0.3.6", + "eslint-import-resolver-typescript": "^2.7.1", + "eslint-plugin-import": "^2.26.0", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.31.7", + "eslint-plugin-react-hooks": "^4.5.0" }, "dependencies": { - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "eslint-plugin-react": { + "version": "7.32.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", + "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", + "dev": true, "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "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.0", + "string.prototype.matchall": "^4.0.8" } }, - "eslint-utils": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz", - "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==", + "resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "dev": true, "requires": { - "eslint-visitor-keys": "^1.1.0" + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" } }, - "globals": { - "version": "12.4.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", - "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", - "requires": { - "type-fest": "^0.8.1" - } - }, - "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" - }, - "regexpp": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", - "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==" - }, - "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==" - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" - }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { - "isexe": "^2.0.0" - } + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true } } }, - "eslint-config-react-app": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-5.2.1.tgz", - "integrity": "sha512-pGIZ8t0mFLcV+6ZirRgYK6RVqUIKRIi9MmgzUEmrIknsn3AdO0I32asO86dJgloHq+9ZPl8UIg8mYrvgP5u2wQ==", - "requires": { - "confusing-browser-globals": "^1.0.9" - } + "eslint-config-prettier": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.6.0.tgz", + "integrity": "sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==", + "dev": true }, "eslint-import-resolver-node": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", - "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "dev": true, "requires": { "debug": "^3.2.7", - "resolve": "^1.20.0" + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" }, "dependencies": { "debug": { "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, "requires": { "ms": "^2.1.1" } } } }, - "eslint-loader": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-3.0.3.tgz", - "integrity": "sha512-+YRqB95PnNvxNp1HEjQmvf9KNvCin5HXYYseOXVC2U0KEcw4IkQ2IQEBG46j7+gW39bMzeu0GsUhVbBY3Votpw==", + "eslint-import-resolver-typescript": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz", + "integrity": "sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==", + "dev": true, "requires": { - "fs-extra": "^8.1.0", - "loader-fs-cache": "^1.0.2", - "loader-utils": "^1.2.3", - "object-hash": "^2.0.1", - "schema-utils": "^2.6.1" + "debug": "^4.3.4", + "glob": "^7.2.0", + "is-glob": "^4.0.3", + "resolve": "^1.22.0", + "tsconfig-paths": "^3.14.1" }, "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" + "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" } } } @@ -6431,6 +540,7 @@ "version": "2.7.4", "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", + "dev": true, "requires": { "debug": "^3.2.7" }, @@ -6439,656 +549,155 @@ "version": "3.2.7", "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, "requires": { "ms": "^2.1.1" } } } }, - "eslint-plugin-flowtype": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-4.6.0.tgz", - "integrity": "sha512-W5hLjpFfZyZsXfo5anlu7HM970JBDqbEshAJUkeczP6BFCIfJXuiIBQXyberLRtOStT0OGPF8efeTbxlHk4LpQ==", - "requires": { - "lodash": "^4.17.15" - } - }, "eslint-plugin-import": { - "version": "2.20.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.20.1.tgz", - "integrity": "sha512-qQHgFOTjguR+LnYRoToeZWT62XM55MBVXObHM6SKFd1VzDcX/vqT1kAz8ssqigh5eMj8qXcRoXXGZpPP6RfdCw==", + "version": "2.27.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", + "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "dev": true, "requires": { - "array-includes": "^3.0.3", - "array.prototype.flat": "^1.2.1", - "contains-path": "^0.1.0", - "debug": "^2.6.9", - "doctrine": "1.5.0", - "eslint-import-resolver-node": "^0.3.2", - "eslint-module-utils": "^2.4.1", + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.7.4", "has": "^1.0.3", - "minimatch": "^3.0.4", - "object.values": "^1.1.0", - "read-pkg-up": "^2.0.0", - "resolve": "^1.12.0" + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.6", + "resolve": "^1.22.1", + "semver": "^6.3.0", + "tsconfig-paths": "^3.14.1" }, "dependencies": { "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, "requires": { - "ms": "2.0.0" + "ms": "^2.1.1" } }, - "doctrine": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", - "integrity": "sha512-lsGyRuYr4/PIB0txi+Fy2xOMI2dGaTguCaotzFGkVZuKR5usKfcRWIFKNM3QNrU7hh/+w2bwTW+ZeXPK5l8uVg==", - "requires": { - "esutils": "^2.0.2", - "isarray": "^1.0.0" - } - }, - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", - "requires": { - "locate-path": "^2.0.0" - } - }, - "load-json-file": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", - "integrity": "sha512-3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ==", - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "strip-bom": "^3.0.0" - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", - "requires": { - "p-limit": "^1.1.0" - } - }, - "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==" - }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", - "requires": { - "error-ex": "^1.2.0" - } - }, - "path-type": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", - "integrity": "sha512-dUnb5dXUf+kzhC/W/F4e5/SkluXIFf5VUHolW1Eg1irn1hGWjPGdsRcvYJ1nD6lhk8Ir7VM0bHJKsYTx8Jx9OQ==", - "requires": { - "pify": "^2.0.0" - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" - }, - "read-pkg": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", - "integrity": "sha512-eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA==", - "requires": { - "load-json-file": "^2.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^2.0.0" - } - }, - "read-pkg-up": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", - "integrity": "sha512-1orxQfbWGUiTn9XsPlChs6rLie/AV9jwZTGmu2NZw/CUDJQchXJFYE0Fq5j7+n558T1JhDWLdhyd1Zj+wLY//w==", - "requires": { - "find-up": "^2.0.0", - "read-pkg": "^2.0.0" - } + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true } } }, "eslint-plugin-jsx-a11y": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.3.tgz", - "integrity": "sha512-CawzfGt9w83tyuVekn0GDPU9ytYtxyxyFZ3aSWROmnRRFQFT2BiPJd7jvRdzNDi6oLWaS2asMeYSNMjWTV4eNg==", + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", + "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", + "dev": true, "requires": { - "@babel/runtime": "^7.4.5", - "aria-query": "^3.0.0", - "array-includes": "^3.0.3", + "@babel/runtime": "^7.20.7", + "aria-query": "^5.1.3", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", "ast-types-flow": "^0.0.7", - "axobject-query": "^2.0.2", - "damerau-levenshtein": "^1.0.4", - "emoji-regex": "^7.0.2", + "axe-core": "^4.6.2", + "axobject-query": "^3.1.1", + "damerau-levenshtein": "^1.0.8", + "emoji-regex": "^9.2.2", "has": "^1.0.3", - "jsx-ast-utils": "^2.2.1" + "jsx-ast-utils": "^3.3.3", + "language-tags": "=1.0.5", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "semver": "^6.3.0" }, "dependencies": { - "aria-query": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-3.0.0.tgz", - "integrity": "sha512-majUxHgLehQTeSA+hClx+DY09OVUqG3GtezWkF1krgLGNdlDu9l9V8DaqNMWbq4Eddc8wsyDA0hpDUtnYxQEXw==", - "requires": { - "ast-types-flow": "0.0.7", - "commander": "^2.11.0" - } + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true } } }, "eslint-plugin-react": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.19.0.tgz", - "integrity": "sha512-SPT8j72CGuAP+JFbT0sJHOB80TX/pu44gQ4vXH/cq+hQTiY2PuZ6IHkqXJV6x1b28GDdo1lbInjKUrrdUf0LOQ==", + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.28.0.tgz", + "integrity": "sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw==", + "dev": true, "requires": { - "array-includes": "^3.1.1", + "array-includes": "^3.1.4", + "array.prototype.flatmap": "^1.2.5", "doctrine": "^2.1.0", - "has": "^1.0.3", - "jsx-ast-utils": "^2.2.3", - "object.entries": "^1.1.1", - "object.fromentries": "^2.0.2", - "object.values": "^1.1.1", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.0.4", + "object.entries": "^1.1.5", + "object.fromentries": "^2.0.5", + "object.hasown": "^1.1.0", + "object.values": "^1.1.5", "prop-types": "^15.7.2", - "resolve": "^1.15.1", + "resolve": "^2.0.0-next.3", "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.2", - "xregexp": "^4.3.0" + "string.prototype.matchall": "^4.0.6" }, "dependencies": { - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "dev": true, "requires": { - "esutils": "^2.0.2" + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true } } }, "eslint-plugin-react-hooks": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.7.0.tgz", - "integrity": "sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA==" - }, - "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==", - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - } - }, - "eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", - "requires": { - "eslint-visitor-keys": "^1.1.0" - } + "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==", + "dev": true }, "eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" - }, - "espree": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", - "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", - "requires": { - "acorn": "^7.1.1", - "acorn-jsx": "^5.2.0", - "eslint-visitor-keys": "^1.1.0" - }, - "dependencies": { - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" - } - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - }, - "esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", - "requires": { - "estraverse": "^5.1.0" - }, - "dependencies": { - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - } - } - }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "requires": { - "estraverse": "^5.2.0" - }, - "dependencies": { - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - } - } + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", + "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "dev": true }, "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true }, "esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" - }, - "eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - }, - "events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" - }, - "eventsource": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.1.2.tgz", - "integrity": "sha512-xAH3zWhgO2/3KIniEKYPr8plNSzlGINOUqYj0m0u7AB81iRw8b/3E73W6AuU+6klLbaSFmZnaETQ2lXPfAydrA==" - }, - "evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "requires": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "exec-sh": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz", - "integrity": "sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==" - }, - "execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "dependencies": { - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "expect": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-24.9.0.tgz", - "integrity": "sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q==", - "requires": { - "@jest/types": "^24.9.0", - "ansi-styles": "^3.2.0", - "jest-get-type": "^24.9.0", - "jest-matcher-utils": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-regex-util": "^24.9.0" - } - }, - "express": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", - "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", - "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.0", - "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.10.3", - "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" - }, - "dependencies": { - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - }, - "cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "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==" - }, - "qs": { - "version": "6.10.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", - "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", - "requires": { - "side-channel": "^1.0.4" - } - }, - "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==" - } - } - }, - "ext": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", - "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", - "requires": { - "type": "^2.7.2" - }, - "dependencies": { - "type": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", - "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" - } - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==" - }, - "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==" + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true }, "fast-glob": { "version": "3.2.12", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "dev": true, "requires": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", @@ -7097,497 +706,50 @@ "micromatch": "^4.0.4" } }, - "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==" - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" - }, - "fast-shallow-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fast-shallow-equal/-/fast-shallow-equal-1.0.0.tgz", - "integrity": "sha512-HPtaa38cPgWvaCFmRNhlc6NG7pv6NUHqjPgVAkWGoB9mQMwYB27/K0CvOM5Czy+qpT3e8XJ6Q4aPAnzpNpzNaw==" - }, - "fastest-stable-stringify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fastest-stable-stringify/-/fastest-stable-stringify-2.0.2.tgz", - "integrity": "sha512-bijHueCGd0LqqNK9b5oCMHc0MluJAx0cwqASgbWMvkO01lCYgIhacVRLcaDz3QnyYIRNJRDwMb41VuT6pHJ91Q==" - }, "fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, "requires": { "reusify": "^1.0.4" } }, - "faye-websocket": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", - "integrity": "sha512-Xhj93RXbMSq8urNCUq4p9l0P6hnySJ/7YNRhYNug0bLOuii7pKO7xQFb5mx9xZXWCar88pLPb805PvUkwrLZpQ==", - "requires": { - "websocket-driver": ">=0.5.1" - } - }, - "fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", - "requires": { - "bser": "2.1.1" - } - }, - "figgy-pudding": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", - "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" - }, - "figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "file-entry-cache": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", - "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", - "requires": { - "flat-cache": "^2.0.1" - } - }, - "file-loader": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-4.3.0.tgz", - "integrity": "sha512-aKrYPYjF1yG3oX0kWRrqrSMfgftm7oJW5M+m4owoldH5C51C0RkIwB++JbRvEW3IU6/ZG5n8UvEcdgwOt2UOWA==", - "requires": { - "loader-utils": "^1.2.3", - "schema-utils": "^2.5.0" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - } - } - }, - "file-selector": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/file-selector/-/file-selector-0.4.0.tgz", - "integrity": "sha512-iACCiXeMYOvZqlF1kTiYINzgepRBymz1wwjiuup9u9nayhb6g4fSwiyJ/6adli+EPwrWtpgQAh2PoS7HukEGEg==", - "requires": { - "tslib": "^2.0.3" - } - }, - "file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "optional": true - }, - "filesize": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz", - "integrity": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==" - }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, "requires": { "to-regex-range": "^5.0.1" } }, - "filter-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz", - "integrity": "sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==" - }, - "finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "requires": { - "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" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", - "requires": { - "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" - } - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "requires": { - "locate-path": "^3.0.0" - } - }, - "flat-cache": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", - "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", - "requires": { - "flatted": "^2.0.0", - "rimraf": "2.6.3", - "write": "1.0.3" - }, - "dependencies": { - "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "requires": { - "glob": "^7.1.3" - } - } - } - }, - "flatted": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", - "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==" - }, - "flatten": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz", - "integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==" - }, - "flush-write-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", - "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", - "requires": { - "inherits": "^2.0.3", - "readable-stream": "^2.3.6" - } - }, - "fn-name": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/fn-name/-/fn-name-3.0.0.tgz", - "integrity": "sha512-eNMNr5exLoavuAMhIUVsOKF79SWd/zG104ef6sxBTSw+cZc6BXdQXDvYcGvp0VbxVVSp1XDUNoz7mg1xMtSznA==" - }, - "follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" - }, "for-each": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, "requires": { "is-callable": "^1.1.3" } }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==" - }, - "for-own": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", - "integrity": "sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==", - "requires": { - "for-in": "^1.0.1" - } - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==" - }, - "fork-ts-checker-webpack-plugin": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz", - "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==", - "requires": { - "@babel/code-frame": "^7.5.5", - "chalk": "^2.4.1", - "micromatch": "^3.1.10", - "minimatch": "^3.0.4", - "semver": "^5.6.0", - "tapable": "^1.0.0", - "worker-rpc": "^0.1.0" - }, - "dependencies": { - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } - } - }, - "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==", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "formik": { - "version": "2.2.9", - "resolved": "https://registry.npmjs.org/formik/-/formik-2.2.9.tgz", - "integrity": "sha512-LQLcISMmf1r5at4/gyJigGn0gOwFbeEAlji+N9InZF6LIMXnFNkO42sCI8Jt84YZggpD4cPWObAZaxpEFtSzNA==", - "requires": { - "deepmerge": "^2.1.1", - "hoist-non-react-statics": "^3.3.0", - "lodash": "^4.17.21", - "lodash-es": "^4.17.21", - "react-fast-compare": "^2.0.1", - "tiny-warning": "^1.0.2", - "tslib": "^1.10.0" - }, - "dependencies": { - "react-fast-compare": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-2.0.4.tgz", - "integrity": "sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==" - }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, - "forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" - }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", - "requires": { - "map-cache": "^0.2.2" - } - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" - }, - "from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" - } - }, - "fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "requires": { - "minipass": "^3.0.0" - } - }, - "fs-write-stream-atomic": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", - "integrity": "sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==", - "requires": { - "graceful-fs": "^4.1.2", - "iferr": "^0.1.5", - "imurmurhash": "^0.1.4", - "readable-stream": "1 || 2" - } - }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "optional": true, - "requires": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - } - }, - "fstream": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", - "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", - "requires": { - "graceful-fs": "^4.1.2", - "inherits": "~2.0.0", - "mkdirp": ">=0.5 0", - "rimraf": "2" - } + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true }, "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true }, "function.prototype.name": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", @@ -7595,141 +757,43 @@ "functions-have-names": "^1.2.2" } }, - "functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==" - }, "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==" - }, - "gauge": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", - "integrity": "sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==", - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==" - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "requires": { - "ansi-regex": "^2.0.0" - } - } - } - }, - "gaze": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", - "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", - "requires": { - "globule": "^1.0.0" - } - }, - "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==" - }, - "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==" + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true }, "get-intrinsic": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", - "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", + "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", + "dev": true, "requires": { "function-bind": "^1.1.1", "has": "^1.0.3", "has-symbols": "^1.0.3" } }, - "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==" - }, - "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==" - }, - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "requires": { - "pump": "^3.0.0" - } - }, "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==", + "dev": true, "requires": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.1" } }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==" - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", - "requires": { - "assert-plus": "^1.0.0" - } - }, "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dev": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^3.1.1", + "minimatch": "^3.0.4", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } @@ -7738,655 +802,99 @@ "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, "requires": { "is-glob": "^4.0.1" } }, - "glob-to-regexp": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", - "integrity": "sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==" - }, - "global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, "requires": { - "global-prefix": "^3.0.0" + "define-properties": "^1.1.3" } }, - "global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "requires": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - }, - "dependencies": { - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - }, "globby": { - "version": "11.0.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", - "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, "requires": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", - "fast-glob": "^3.1.1", - "ignore": "^5.1.4", - "merge2": "^1.3.0", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", "slash": "^3.0.0" - }, - "dependencies": { - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - } } }, - "globule": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.4.tgz", - "integrity": "sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg==", + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, "requires": { - "glob": "~7.1.1", - "lodash": "^4.17.21", - "minimatch": "~3.0.2" - }, - "dependencies": { - "glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "requires": { - "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" - } - }, - "minimatch": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", - "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", - "requires": { - "brace-expansion": "^1.1.7" - } - } + "get-intrinsic": "^1.1.3" } }, - "graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" - }, - "growly": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", - "integrity": "sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==" - }, - "gud": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/gud/-/gud-1.0.0.tgz", - "integrity": "sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==" - }, - "gzip-size": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", - "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", - "requires": { - "duplexer": "^0.1.1", - "pify": "^4.0.1" - }, - "dependencies": { - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - } - } - }, - "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==" - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==" - }, - "har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "requires": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - } - }, - "harmony-reflect": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", - "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" - }, "has": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, "requires": { "function-bind": "^1.1.1" } }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", - "requires": { - "ansi-regex": "^2.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==" - } - } - }, "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==" - }, - "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==" + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true }, "has-property-descriptors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, "requires": { "get-intrinsic": "^1.1.1" } }, + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true + }, "has-symbols": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true }, "has-tostringtag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, "requires": { "has-symbols": "^1.0.2" } }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" - }, - "has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", - "requires": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - } - }, - "has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", - "requires": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "dependencies": { - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", - "requires": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "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==" - } - } - }, - "hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "requires": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" - }, - "hex-color-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", - "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==" - }, - "history": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", - "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", - "requires": { - "@babel/runtime": "^7.1.2", - "loose-envify": "^1.2.0", - "resolve-pathname": "^3.0.0", - "tiny-invariant": "^1.0.2", - "tiny-warning": "^1.0.0", - "value-equal": "^1.0.1" - } - }, - "hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", - "requires": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "requires": { - "react-is": "^16.7.0" - } - }, - "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==" - }, - "hotkeys-js": { - "version": "3.9.4", - "resolved": "https://registry.npmjs.org/hotkeys-js/-/hotkeys-js-3.9.4.tgz", - "integrity": "sha512-2zuLt85Ta+gIyvs4N88pCYskNrxf1TFv3LR9t5mdAZIX8BcgQQ48F2opUptvHa6m8zsy5v/a0i9mWzTrlNWU0Q==" - }, - "hpack.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", - "requires": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" - } - }, - "hsl-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", - "integrity": "sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==" - }, - "hsla-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", - "integrity": "sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==" - }, - "html-encoding-sniffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", - "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", - "requires": { - "whatwg-encoding": "^1.0.1" - } - }, - "html-entities": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", - "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==" - }, - "html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" - }, - "html-minifier-terser": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", - "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", - "requires": { - "camel-case": "^4.1.1", - "clean-css": "^4.2.3", - "commander": "^4.1.1", - "he": "^1.2.0", - "param-case": "^3.0.3", - "relateurl": "^0.2.7", - "terser": "^4.6.3" - }, - "dependencies": { - "commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" - } - } - }, - "html-webpack-plugin": { - "version": "4.0.0-beta.11", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.0.0-beta.11.tgz", - "integrity": "sha512-4Xzepf0qWxf8CGg7/WQM5qBB2Lc/NFI7MhU59eUDTkuQp3skZczH4UA1d6oQyDEIoMDgERVhRyTdtUPZ5s5HBg==", - "requires": { - "html-minifier-terser": "^5.0.1", - "loader-utils": "^1.2.3", - "lodash": "^4.17.15", - "pretty-error": "^2.1.1", - "tapable": "^1.1.3", - "util.promisify": "1.0.0" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "util.promisify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", - "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", - "requires": { - "define-properties": "^1.1.2", - "object.getownpropertydescriptors": "^2.0.3" - } - } - } - }, - "htmlparser2": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", - "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", - "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.0.0", - "domutils": "^2.5.2", - "entities": "^2.0.0" - }, - "dependencies": { - "dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - } - }, - "domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - }, - "domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "requires": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - } - } - } - }, - "http-deceiver": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" - }, - "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==", - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - } - }, - "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==", - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - } - }, - "http-proxy-middleware": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz", - "integrity": "sha512-13eVVDYS4z79w7f1+NPllJtOQFx/FdUW4btIvVRMaRlUY9VGstAbo5MOhLEuUgZFRHn3x50ufn25zkj/boZnEg==", - "requires": { - "@types/http-proxy": "^1.17.5", - "http-proxy": "^1.18.1", - "is-glob": "^4.0.1", - "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.2" - } - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==" - }, - "hyphenate-style-name": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", - "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "icss-utils": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", - "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", - "requires": { - "postcss": "^7.0.14" - } - }, - "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==", - "requires": { - "harmony-reflect": "^1.4.6" - } - }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - }, - "iferr": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", - "integrity": "sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==" - }, "ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==" - }, - "immer": { - "version": "9.0.15", - "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.15.tgz", - "integrity": "sha512-2eB/sswms9AEUSkOm4SbV5Y7Vmt/bKRwByd52jfLkW4OLYeaTP3EEiJ9agqU0O/tq6Dk62Zfj+TJSqfm1rLVGQ==" - }, - "import-cwd": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", - "integrity": "sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==", - "requires": { - "import-from": "^2.1.0" - } - }, - "import-fresh": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", - "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", - "requires": { - "caller-path": "^2.0.0", - "resolve-from": "^3.0.0" - } - }, - "import-from": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", - "integrity": "sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w==", - "requires": { - "resolve-from": "^3.0.0" - } - }, - "import-local": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", - "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", - "requires": { - "pkg-dir": "^3.0.0", - "resolve-cwd": "^2.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" - }, - "in-publish": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.1.tgz", - "integrity": "sha512-oDM0kUSNFC31ShNxHKUyfZKy8ZeXZBWMjMdZHKLOk13uvT27VTL/QzRGfRUcevJhpkZAvlhPYuXkF7eNWrtyxQ==" - }, - "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==" - }, - "indexes-of": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", - "integrity": "sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==" - }, - "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==" + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true }, "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, "requires": { "once": "^1.3.0", "wrappy": "1" @@ -8395,481 +903,156 @@ "inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - }, - "inline-style-prefixer": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/inline-style-prefixer/-/inline-style-prefixer-6.0.1.tgz", - "integrity": "sha512-AsqazZ8KcRzJ9YPN1wMH2aNM7lkWQ8tSPrW5uDk1ziYwiAPWSZnUsC7lfZq+BDqLqz0B4Pho5wscWcJzVvRzDQ==", - "requires": { - "css-in-js-utils": "^2.0.0" - } - }, - "inquirer": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", - "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.19", - "mute-stream": "0.0.8", - "run-async": "^2.4.0", - "rxjs": "^6.6.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6" - }, - "dependencies": { - "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==", - "requires": { - "type-fest": "^0.21.3" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "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==", - "requires": { - "color-name": "~1.1.4" - } - }, - "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==" - }, - "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==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "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==" - }, - "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==", - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - }, - "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==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "internal-ip": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", - "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", - "requires": { - "default-gateway": "^4.2.0", - "ipaddr.js": "^1.9.0" - } + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true }, "internal-slot": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", - "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.4.tgz", + "integrity": "sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==", + "dev": true, "requires": { - "get-intrinsic": "^1.1.0", + "get-intrinsic": "^1.1.3", "has": "^1.0.3", "side-channel": "^1.0.4" } }, - "intl": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/intl/-/intl-1.2.5.tgz", - "integrity": "sha512-rK0KcPHeBFBcqsErKSpvZnrOmWOj+EmDkyJ57e90YWaQNqbcivcqmKDlHEeNprDWOsKzPsh1BfSpPQdDvclHVw==" - }, - "intl-format-cache": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/intl-format-cache/-/intl-format-cache-4.3.1.tgz", - "integrity": "sha512-OEUYNA7D06agqPOYhbTkl0T8HA3QKSuwWh1HiClEnpd9vw7N+3XsQt5iZ0GUEchp5CW1fQk/tary+NsbF3yQ1Q==" - }, - "intl-messageformat": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-7.8.4.tgz", - "integrity": "sha512-yS0cLESCKCYjseCOGXuV4pxJm/buTfyCJ1nzQjryHmSehlptbZbn9fnlk1I9peLopZGGbjj46yHHiTAEZ1qOTA==", - "requires": { - "intl-format-cache": "^4.2.21", - "intl-messageformat-parser": "^3.6.4" - } - }, - "intl-messageformat-parser": { - "version": "3.6.4", - "resolved": "https://registry.npmjs.org/intl-messageformat-parser/-/intl-messageformat-parser-3.6.4.tgz", - "integrity": "sha512-RgPGwue0mJtoX2Ax8EmMzJzttxjnva7gx0Q7mKJ4oALrTZvtmCeAw5Msz2PcjW4dtCh/h7vN/8GJCxZO1uv+OA==", - "requires": { - "@formatjs/intl-unified-numberformat": "^3.2.0" - } - }, - "invariant": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", - "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", - "requires": { - "loose-envify": "^1.0.0" - } - }, - "ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" - }, - "ip-regex": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", - "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==" - }, - "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==" - }, - "is-absolute-url": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", - "integrity": "sha512-vOx7VprsKyllwjSkLV79NIhpyLfr3jAp7VaTCMXOJHu4m0Ew1CZ2fcjASwmV1jI3BWuWHB013M48eyeldk9gYg==" - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, "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==", + "dev": true, "requires": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" } }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + "is-array-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz", + "integrity": "sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-typed-array": "^1.1.10" + } }, "is-bigint": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, "requires": { "has-bigints": "^1.0.1" } }, - "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==", - "requires": { - "binary-extensions": "^2.0.0" - } - }, "is-boolean-object": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, "requires": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" } }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - }, "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==" - }, - "is-ci": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", - "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", - "requires": { - "ci-info": "^2.0.0" - } - }, - "is-color-stop": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", - "integrity": "sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==", - "requires": { - "css-color-names": "^0.0.4", - "hex-color-regex": "^1.1.0", - "hsl-regex": "^1.0.0", - "hsla-regex": "^1.0.0", - "rgb-regex": "^1.0.1", - "rgba-regex": "^1.0.0" - } + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true }, "is-core-module": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", - "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "dev": true, "requires": { "has": "^1.0.3" } }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, "is-date-object": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, "requires": { "has-tostringtag": "^1.0.0" } }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" - } - } - }, - "is-directory": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==" - }, - "is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==" - }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" - }, - "is-finite": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", - "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==" - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==" - }, - "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==" + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true }, "is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, "requires": { "is-extglob": "^2.1.1" } }, + "is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "dev": true + }, "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==" + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true }, "is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true }, "is-number-object": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, "requires": { "has-tostringtag": "^1.0.0" } }, - "is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" - }, - "is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" - }, - "is-path-in-cwd": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", - "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", - "requires": { - "is-path-inside": "^2.1.0" - } - }, - "is-path-inside": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", - "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", - "requires": { - "path-is-inside": "^1.0.2" - } - }, - "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==" - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "requires": { - "isobject": "^3.0.1" - } - }, "is-regex": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, "requires": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" } }, - "is-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", - "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==" - }, - "is-resolvable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", - "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==" - }, - "is-root": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", - "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" + "is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "dev": true }, "is-shared-array-buffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, "requires": { "call-bind": "^1.0.2" } }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==" - }, "is-string": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, "requires": { "has-tostringtag": "^1.0.0" } @@ -8878,2328 +1061,167 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, "requires": { "has-symbols": "^1.0.2" } }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + "is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "dev": true, + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + } }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==" + "is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "dev": true }, "is-weakref": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, "requires": { "call-bind": "^1.0.2" } }, - "is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" - }, - "is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==" + "is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + } }, "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" - }, - "istanbul-lib-coverage": { "version": "2.0.5", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", - "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==" - }, - "istanbul-lib-instrument": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz", - "integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==", - "requires": { - "@babel/generator": "^7.4.0", - "@babel/parser": "^7.4.3", - "@babel/template": "^7.4.0", - "@babel/traverse": "^7.4.3", - "@babel/types": "^7.4.0", - "istanbul-lib-coverage": "^2.0.5", - "semver": "^6.0.0" - } - }, - "istanbul-lib-report": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz", - "integrity": "sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==", - "requires": { - "istanbul-lib-coverage": "^2.0.5", - "make-dir": "^2.1.0", - "supports-color": "^6.1.0" - }, - "dependencies": { - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "istanbul-lib-source-maps": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz", - "integrity": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==", - "requires": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^2.0.5", - "make-dir": "^2.1.0", - "rimraf": "^2.6.3", - "source-map": "^0.6.1" - } - }, - "istanbul-reports": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.2.7.tgz", - "integrity": "sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg==", - "requires": { - "html-escaper": "^2.0.0" - } - }, - "jest": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-24.9.0.tgz", - "integrity": "sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw==", - "requires": { - "import-local": "^2.0.0", - "jest-cli": "^24.9.0" - }, - "dependencies": { - "jest-cli": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.9.0.tgz", - "integrity": "sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg==", - "requires": { - "@jest/core": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "import-local": "^2.0.0", - "is-ci": "^2.0.0", - "jest-config": "^24.9.0", - "jest-util": "^24.9.0", - "jest-validate": "^24.9.0", - "prompts": "^2.0.1", - "realpath-native": "^1.1.0", - "yargs": "^13.3.0" - } - } - } - }, - "jest-changed-files": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.9.0.tgz", - "integrity": "sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg==", - "requires": { - "@jest/types": "^24.9.0", - "execa": "^1.0.0", - "throat": "^4.0.0" - } - }, - "jest-config": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-24.9.0.tgz", - "integrity": "sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==", - "requires": { - "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^24.9.0", - "@jest/types": "^24.9.0", - "babel-jest": "^24.9.0", - "chalk": "^2.0.1", - "glob": "^7.1.1", - "jest-environment-jsdom": "^24.9.0", - "jest-environment-node": "^24.9.0", - "jest-get-type": "^24.9.0", - "jest-jasmine2": "^24.9.0", - "jest-regex-util": "^24.3.0", - "jest-resolve": "^24.9.0", - "jest-util": "^24.9.0", - "jest-validate": "^24.9.0", - "micromatch": "^3.1.10", - "pretty-format": "^24.9.0", - "realpath-native": "^1.1.0" - }, - "dependencies": { - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } - } - }, - "jest-diff": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-24.9.0.tgz", - "integrity": "sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ==", - "requires": { - "chalk": "^2.0.1", - "diff-sequences": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - } - }, - "jest-docblock": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.9.0.tgz", - "integrity": "sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA==", - "requires": { - "detect-newline": "^2.1.0" - } - }, - "jest-each": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-24.9.0.tgz", - "integrity": "sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog==", - "requires": { - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "jest-get-type": "^24.9.0", - "jest-util": "^24.9.0", - "pretty-format": "^24.9.0" - } - }, - "jest-environment-jsdom": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz", - "integrity": "sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA==", - "requires": { - "@jest/environment": "^24.9.0", - "@jest/fake-timers": "^24.9.0", - "@jest/types": "^24.9.0", - "jest-mock": "^24.9.0", - "jest-util": "^24.9.0", - "jsdom": "^11.5.1" - } - }, - "jest-environment-jsdom-fourteen": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom-fourteen/-/jest-environment-jsdom-fourteen-1.0.1.tgz", - "integrity": "sha512-DojMX1sY+at5Ep+O9yME34CdidZnO3/zfPh8UW+918C5fIZET5vCjfkegixmsi7AtdYfkr4bPlIzmWnlvQkP7Q==", - "requires": { - "@jest/environment": "^24.3.0", - "@jest/fake-timers": "^24.3.0", - "@jest/types": "^24.3.0", - "jest-mock": "^24.0.0", - "jest-util": "^24.0.0", - "jsdom": "^14.1.0" - }, - "dependencies": { - "acorn": { - "version": "6.4.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", - "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==" - }, - "jsdom": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-14.1.0.tgz", - "integrity": "sha512-O901mfJSuTdwU2w3Sn+74T+RnDVP+FuV5fH8tcPWyqrseRAb0s5xOtPgCFiPOtLcyK7CLIJwPyD83ZqQWvA5ng==", - "requires": { - "abab": "^2.0.0", - "acorn": "^6.0.4", - "acorn-globals": "^4.3.0", - "array-equal": "^1.0.0", - "cssom": "^0.3.4", - "cssstyle": "^1.1.1", - "data-urls": "^1.1.0", - "domexception": "^1.0.1", - "escodegen": "^1.11.0", - "html-encoding-sniffer": "^1.0.2", - "nwsapi": "^2.1.3", - "parse5": "5.1.0", - "pn": "^1.1.0", - "request": "^2.88.0", - "request-promise-native": "^1.0.5", - "saxes": "^3.1.9", - "symbol-tree": "^3.2.2", - "tough-cookie": "^2.5.0", - "w3c-hr-time": "^1.0.1", - "w3c-xmlserializer": "^1.1.2", - "webidl-conversions": "^4.0.2", - "whatwg-encoding": "^1.0.5", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^7.0.0", - "ws": "^6.1.2", - "xml-name-validator": "^3.0.0" - } - }, - "parse5": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.0.tgz", - "integrity": "sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==" - }, - "whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - }, - "ws": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", - "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", - "requires": { - "async-limiter": "~1.0.0" - } - } - } - }, - "jest-environment-node": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.9.0.tgz", - "integrity": "sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA==", - "requires": { - "@jest/environment": "^24.9.0", - "@jest/fake-timers": "^24.9.0", - "@jest/types": "^24.9.0", - "jest-mock": "^24.9.0", - "jest-util": "^24.9.0" - } - }, - "jest-get-type": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.9.0.tgz", - "integrity": "sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q==" - }, - "jest-haste-map": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz", - "integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==", - "requires": { - "@jest/types": "^24.9.0", - "anymatch": "^2.0.0", - "fb-watchman": "^2.0.0", - "fsevents": "^1.2.7", - "graceful-fs": "^4.1.15", - "invariant": "^2.2.4", - "jest-serializer": "^24.9.0", - "jest-util": "^24.9.0", - "jest-worker": "^24.9.0", - "micromatch": "^3.1.10", - "sane": "^4.0.3", - "walker": "^1.0.7" - }, - "dependencies": { - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } - } - }, - "jest-jasmine2": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz", - "integrity": "sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==", - "requires": { - "@babel/traverse": "^7.1.0", - "@jest/environment": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "co": "^4.6.0", - "expect": "^24.9.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^24.9.0", - "jest-matcher-utils": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-runtime": "^24.9.0", - "jest-snapshot": "^24.9.0", - "jest-util": "^24.9.0", - "pretty-format": "^24.9.0", - "throat": "^4.0.0" - } - }, - "jest-leak-detector": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz", - "integrity": "sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA==", - "requires": { - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - } - }, - "jest-matcher-utils": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz", - "integrity": "sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==", - "requires": { - "chalk": "^2.0.1", - "jest-diff": "^24.9.0", - "jest-get-type": "^24.9.0", - "pretty-format": "^24.9.0" - } - }, - "jest-message-util": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.9.0.tgz", - "integrity": "sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==", - "requires": { - "@babel/code-frame": "^7.0.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/stack-utils": "^1.0.1", - "chalk": "^2.0.1", - "micromatch": "^3.1.10", - "slash": "^2.0.0", - "stack-utils": "^1.0.1" - }, - "dependencies": { - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } - } - }, - "jest-mock": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.9.0.tgz", - "integrity": "sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==", - "requires": { - "@jest/types": "^24.9.0" - } - }, - "jest-pnp-resolver": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", - "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==" - }, - "jest-regex-util": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.9.0.tgz", - "integrity": "sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==" - }, - "jest-resolve": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.9.0.tgz", - "integrity": "sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ==", - "requires": { - "@jest/types": "^24.9.0", - "browser-resolve": "^1.11.3", - "chalk": "^2.0.1", - "jest-pnp-resolver": "^1.2.1", - "realpath-native": "^1.1.0" - } - }, - "jest-resolve-dependencies": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz", - "integrity": "sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g==", - "requires": { - "@jest/types": "^24.9.0", - "jest-regex-util": "^24.3.0", - "jest-snapshot": "^24.9.0" - } - }, - "jest-runner": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-24.9.0.tgz", - "integrity": "sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg==", - "requires": { - "@jest/console": "^24.7.1", - "@jest/environment": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "chalk": "^2.4.2", - "exit": "^0.1.2", - "graceful-fs": "^4.1.15", - "jest-config": "^24.9.0", - "jest-docblock": "^24.3.0", - "jest-haste-map": "^24.9.0", - "jest-jasmine2": "^24.9.0", - "jest-leak-detector": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-resolve": "^24.9.0", - "jest-runtime": "^24.9.0", - "jest-util": "^24.9.0", - "jest-worker": "^24.6.0", - "source-map-support": "^0.5.6", - "throat": "^4.0.0" - } - }, - "jest-runtime": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.9.0.tgz", - "integrity": "sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw==", - "requires": { - "@jest/console": "^24.7.1", - "@jest/environment": "^24.9.0", - "@jest/source-map": "^24.3.0", - "@jest/transform": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/yargs": "^13.0.0", - "chalk": "^2.0.1", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.1.15", - "jest-config": "^24.9.0", - "jest-haste-map": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-mock": "^24.9.0", - "jest-regex-util": "^24.3.0", - "jest-resolve": "^24.9.0", - "jest-snapshot": "^24.9.0", - "jest-util": "^24.9.0", - "jest-validate": "^24.9.0", - "realpath-native": "^1.1.0", - "slash": "^2.0.0", - "strip-bom": "^3.0.0", - "yargs": "^13.3.0" - } - }, - "jest-serializer": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz", - "integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==" - }, - "jest-snapshot": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.9.0.tgz", - "integrity": "sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==", - "requires": { - "@babel/types": "^7.0.0", - "@jest/types": "^24.9.0", - "chalk": "^2.0.1", - "expect": "^24.9.0", - "jest-diff": "^24.9.0", - "jest-get-type": "^24.9.0", - "jest-matcher-utils": "^24.9.0", - "jest-message-util": "^24.9.0", - "jest-resolve": "^24.9.0", - "mkdirp": "^0.5.1", - "natural-compare": "^1.4.0", - "pretty-format": "^24.9.0", - "semver": "^6.2.0" - } - }, - "jest-util": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz", - "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", - "requires": { - "@jest/console": "^24.9.0", - "@jest/fake-timers": "^24.9.0", - "@jest/source-map": "^24.9.0", - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "callsites": "^3.0.0", - "chalk": "^2.0.1", - "graceful-fs": "^4.1.15", - "is-ci": "^2.0.0", - "mkdirp": "^0.5.1", - "slash": "^2.0.0", - "source-map": "^0.6.0" - } - }, - "jest-validate": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-24.9.0.tgz", - "integrity": "sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ==", - "requires": { - "@jest/types": "^24.9.0", - "camelcase": "^5.3.1", - "chalk": "^2.0.1", - "jest-get-type": "^24.9.0", - "leven": "^3.1.0", - "pretty-format": "^24.9.0" - } - }, - "jest-watch-typeahead": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-0.4.2.tgz", - "integrity": "sha512-f7VpLebTdaXs81rg/oj4Vg/ObZy2QtGzAmGLNsqUS5G5KtSN68tFcIsbvNODfNyQxU78g7D8x77o3bgfBTR+2Q==", - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^2.4.1", - "jest-regex-util": "^24.9.0", - "jest-watcher": "^24.3.0", - "slash": "^3.0.0", - "string-length": "^3.1.0", - "strip-ansi": "^5.0.0" - }, - "dependencies": { - "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==", - "requires": { - "type-fest": "^0.21.3" - } - }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - }, - "string-length": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-3.1.0.tgz", - "integrity": "sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA==", - "requires": { - "astral-regex": "^1.0.0", - "strip-ansi": "^5.2.0" - } - } - } - }, - "jest-watcher": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.9.0.tgz", - "integrity": "sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw==", - "requires": { - "@jest/test-result": "^24.9.0", - "@jest/types": "^24.9.0", - "@types/yargs": "^13.0.0", - "ansi-escapes": "^3.0.0", - "chalk": "^2.0.1", - "jest-util": "^24.9.0", - "string-length": "^2.0.0" - } - }, - "jest-worker": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", - "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", - "requires": { - "merge-stream": "^2.0.0", - "supports-color": "^6.1.0" - }, - "dependencies": { - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "js-base64": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", - "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==" - }, - "js-cookie": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-2.2.1.tgz", - "integrity": "sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==" - }, - "js-money": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/js-money/-/js-money-0.6.3.tgz", - "integrity": "sha512-B+1RjjusKUribtW1Bs9uoNN32SgXBxLPQ+pF7ldg8V6+QR8cOOhRx3HIChK4v0fQegnijigBetNozjjc5B4+iw==", - "requires": { - "lodash": "4.x.x" - } - }, - "js-sha3": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", - "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==" + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true }, "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "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==", - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" - }, - "jsdom": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-11.12.0.tgz", - "integrity": "sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==", - "requires": { - "abab": "^2.0.0", - "acorn": "^5.5.3", - "acorn-globals": "^4.1.0", - "array-equal": "^1.0.0", - "cssom": ">= 0.3.2 < 0.4.0", - "cssstyle": "^1.0.0", - "data-urls": "^1.0.0", - "domexception": "^1.0.1", - "escodegen": "^1.9.1", - "html-encoding-sniffer": "^1.0.2", - "left-pad": "^1.3.0", - "nwsapi": "^2.0.7", - "parse5": "4.0.0", - "pn": "^1.1.0", - "request": "^2.87.0", - "request-promise-native": "^1.0.5", - "sax": "^1.2.4", - "symbol-tree": "^3.2.2", - "tough-cookie": "^2.3.4", - "w3c-hr-time": "^1.0.1", - "webidl-conversions": "^4.0.2", - "whatwg-encoding": "^1.0.3", - "whatwg-mimetype": "^2.1.0", - "whatwg-url": "^6.4.1", - "ws": "^5.2.0", - "xml-name-validator": "^3.0.0" - } - }, - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" - }, - "json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" - }, - "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==" - }, - "json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "json-stable-stringify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", - "integrity": "sha512-i/J297TW6xyj7sDFa7AmBPkQvLIxWr2kKPWI26tXydnZrzVAocNqn5DMNT1Mzk0vit1V5UkRM7C1KdVNp7Lmcg==", - "requires": { - "jsonify": "~0.0.0" - } - }, - "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==" - }, - "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==" - }, - "json3": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", - "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==" + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true }, "json5": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", - "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==" - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, "requires": { - "graceful-fs": "^4.1.6" - } - }, - "jsonify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", - "integrity": "sha512-trvBk1ki43VZptdBI5rIlG4YOzyeH/WefQt5rj1grasPn4iiZWKet8nkgc4GlsAylaztn0qZfUYOiTsASJFdNA==" - }, - "jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" + "minimist": "^1.2.0" } }, "jsx-ast-utils": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz", - "integrity": "sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", + "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", + "dev": true, "requires": { - "array-includes": "^3.1.1", - "object.assign": "^4.1.0" + "array-includes": "^3.1.5", + "object.assign": "^4.1.3" } }, - "killable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", - "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==" + "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==", + "dev": true }, - "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==" - }, - "kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" - }, - "last-call-webpack-plugin": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", - "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", + "language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "dev": true, "requires": { - "lodash": "^4.17.5", - "webpack-sources": "^1.1.0" + "language-subtag-registry": "~0.3.2" } }, - "lazy-cache": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", - "integrity": "sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==" - }, - "left-pad": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", - "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==" - }, - "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==" - }, - "levenary": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/levenary/-/levenary-1.1.1.tgz", - "integrity": "sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ==", - "requires": { - "leven": "^3.1.0" - } - }, - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } - }, - "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==" - }, - "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - } - }, - "loader-fs-cache": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/loader-fs-cache/-/loader-fs-cache-1.0.3.tgz", - "integrity": "sha512-ldcgZpjNJj71n+2Mf6yetz+c9bM4xpKtNds4LbqXzU/PTdeAX0g3ytnU1AJMEcTk2Lex4Smpe3Q/eCTsvUBxbA==", - "requires": { - "find-cache-dir": "^0.1.1", - "mkdirp": "^0.5.1" - }, - "dependencies": { - "find-cache-dir": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz", - "integrity": "sha512-Z9XSBoNE7xQiV6MSgPuCfyMokH2K7JdpRkOYE1+mu3d4BFJtx3GW+f6Bo4q8IX6rlf5MYbLBKW0pjl2cWdkm2A==", - "requires": { - "commondir": "^1.0.1", - "mkdirp": "^0.5.1", - "pkg-dir": "^1.0.0" - } - }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", - "requires": { - "pinkie-promise": "^2.0.0" - } - }, - "pkg-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", - "integrity": "sha512-c6pv3OE78mcZ92ckebVDqg0aWSoKhOTbwCV6qbCWMk546mAL9pZln0+QsN/yQ7fkucd4+yJPLrCBXNt8Ruk+Eg==", - "requires": { - "find-up": "^1.0.0" - } - } - } - }, - "loader-runner": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", - "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==" - }, - "loader-utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", - "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" - }, - "lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==" - }, - "lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - }, - "lodash.get": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", - "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==" - }, - "lodash.keyby": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.keyby/-/lodash.keyby-4.6.0.tgz", - "integrity": "sha512-PRe4Cn20oJM2Sn6ljcZMeKgyhTHpzvzFmdsp9rK+6K0eJs6Tws0MqgGFpfX/o2HjcoQcBny1Eik9W7BnVTzjIQ==" - }, - "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==" - }, - "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==" - }, - "lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" - }, - "lodash.template": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", - "requires": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" - } - }, - "lodash.templatesettings": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", - "requires": { - "lodash._reinterpolate": "^3.0.0" - } - }, - "lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" - }, - "loglevel": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", - "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==" - }, "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==", + "dev": true, "requires": { "js-tokens": "^3.0.0 || ^4.0.0" } }, - "loud-rejection": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", - "integrity": "sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==", - "requires": { - "currently-unhandled": "^0.4.1", - "signal-exit": "^3.0.0" - } - }, - "lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "requires": { - "tslib": "^2.0.3" - } - }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, "requires": { "yallist": "^4.0.0" } }, - "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "dependencies": { - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, - "makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", - "requires": { - "tmpl": "1.0.5" - } - }, - "mamacro": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz", - "integrity": "sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==" - }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==" - }, - "map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==" - }, - "map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", - "requires": { - "object-visit": "^1.0.0" - } - }, - "match-sorter": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/match-sorter/-/match-sorter-6.3.1.tgz", - "integrity": "sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==", - "requires": { - "@babel/runtime": "^7.12.5", - "remove-accents": "0.4.2" - } - }, - "md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "mdn-data": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", - "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" - }, - "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==" - }, - "memory-fs": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - } - }, - "meow": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", - "integrity": "sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==", - "requires": { - "camelcase-keys": "^2.0.0", - "decamelize": "^1.1.2", - "loud-rejection": "^1.0.0", - "map-obj": "^1.0.1", - "minimist": "^1.1.3", - "normalize-package-data": "^2.3.4", - "object-assign": "^4.0.1", - "read-pkg-up": "^1.0.1", - "redent": "^1.0.0", - "trim-newlines": "^1.0.0" - }, - "dependencies": { - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "indent-string": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", - "integrity": "sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==", - "requires": { - "repeating": "^2.0.0" - } - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" - } - }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", - "requires": { - "error-ex": "^1.2.0" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", - "requires": { - "pinkie-promise": "^2.0.0" - } - }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", - "requires": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", - "requires": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" - } - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", - "requires": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" - } - }, - "redent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", - "integrity": "sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==", - "requires": { - "indent-string": "^2.1.0", - "strip-indent": "^1.0.1" - } - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", - "requires": { - "is-utf8": "^0.2.0" - } - }, - "strip-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", - "integrity": "sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==", - "requires": { - "get-stdin": "^4.0.1" - } - } - } - }, - "merge-deep": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/merge-deep/-/merge-deep-3.0.3.tgz", - "integrity": "sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==", - "requires": { - "arr-union": "^3.1.0", - "clone-deep": "^0.2.4", - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" - }, - "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==" - }, "merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" - }, - "microevent.ts": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz", - "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true }, "micromatch": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, "requires": { "braces": "^3.0.2", "picomatch": "^2.3.1" } }, - "microseconds": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/microseconds/-/microseconds-0.2.0.tgz", - "integrity": "sha512-n7DHHMjR1avBbSpsTBj6fmMGh2AGrifVV4e+WYc3Q9lO+xnSZ3NyhcBND3vzzatt05LFhoKFRxrIyklmLlUtyA==" - }, - "miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "requires": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" - }, - "mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" - }, - "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==", - "requires": { - "mime-db": "1.52.0" - } - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" - }, - "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==" - }, - "mini-create-react-context": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz", - "integrity": "sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==", - "requires": { - "@babel/runtime": "^7.12.1", - "tiny-warning": "^1.0.3" - } - }, - "mini-css-extract-plugin": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz", - "integrity": "sha512-lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A==", - "requires": { - "loader-utils": "^1.1.0", - "normalize-url": "1.9.1", - "schema-utils": "^1.0.0", - "webpack-sources": "^1.1.0" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - } - } - }, - "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==" - }, - "minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" - }, "minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" - }, - "minipass": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz", - "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==", - "requires": { - "yallist": "^4.0.0" - } - }, - "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==", - "requires": { - "minipass": "^3.0.0" - } - }, - "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==", - "requires": { - "minipass": "^3.0.0" - } - }, - "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==", - "requires": { - "minipass": "^3.0.0" - } - }, - "mississippi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", - "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", - "requires": { - "concat-stream": "^1.5.0", - "duplexify": "^3.4.2", - "end-of-stream": "^1.1.0", - "flush-write-stream": "^1.0.0", - "from2": "^2.1.0", - "parallel-transform": "^1.1.0", - "pump": "^3.0.0", - "pumpify": "^1.3.3", - "stream-each": "^1.1.0", - "through2": "^2.0.0" - } - }, - "mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "mixin-object": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz", - "integrity": "sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==", - "requires": { - "for-in": "^0.1.3", - "is-extendable": "^0.1.1" - }, - "dependencies": { - "for-in": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz", - "integrity": "sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==" - } - } - }, - "mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "requires": { - "minimist": "^1.2.6" - } - }, - "moment": { - "version": "2.29.4", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", - "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" - }, - "moment-timezone": { - "version": "0.5.37", - "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.37.tgz", - "integrity": "sha512-uEDzDNFhfaywRl+vwXxffjjq1q0Vzr+fcQpQ1bU0kbzorfS7zVtZnCnGc8mhWmF39d4g4YriF6kwA75mJKE/Zg==", - "requires": { - "moment": ">= 2.9.0" - } - }, - "move-concurrently": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", - "integrity": "sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==", - "requires": { - "aproba": "^1.1.1", - "copy-concurrently": "^1.0.0", - "fs-write-stream-atomic": "^1.0.8", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.3" - } + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", + "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", + "dev": true }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "multicast-dns": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", - "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", - "requires": { - "dns-packet": "^1.3.1", - "thunky": "^1.0.2" - } - }, - "multicast-dns-service-types": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", - "integrity": "sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ==" - }, - "mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" - }, - "nan": { - "version": "2.16.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", - "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==" - }, - "nano-css": { - "version": "5.3.5", - "resolved": "https://registry.npmjs.org/nano-css/-/nano-css-5.3.5.tgz", - "integrity": "sha512-vSB9X12bbNu4ALBu7nigJgRViZ6ja3OU7CeuiV1zMIbXOdmkLahgtPmh3GBOlDxbKY0CitqlPdOReGlBLSp+yg==", - "requires": { - "css-tree": "^1.1.2", - "csstype": "^3.0.6", - "fastest-stable-stringify": "^2.0.2", - "inline-style-prefixer": "^6.0.0", - "rtl-css-js": "^1.14.0", - "sourcemap-codec": "^1.4.8", - "stacktrace-js": "^2.0.2", - "stylis": "^4.0.6" - }, - "dependencies": { - "css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", - "requires": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" - } - }, - "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==" - } - } - }, - "nano-time": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/nano-time/-/nano-time-1.0.0.tgz", - "integrity": "sha512-flnngywOoQ0lLQOTRNexn2gGSNuM9bKj9RZAWSzhQ+UJYaAFG9bac4DW9VHjUAzrOaIcajHybCTHe/bkvozQqA==", - "requires": { - "big-integer": "^1.6.16" - } - }, - "nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - } - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" - }, - "negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" - }, - "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==" - }, - "next-tick": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" - }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - }, - "no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "requires": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node-forge": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", - "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==" - }, - "node-gyp": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz", - "integrity": "sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==", - "requires": { - "fstream": "^1.0.0", - "glob": "^7.0.3", - "graceful-fs": "^4.1.2", - "mkdirp": "^0.5.0", - "nopt": "2 || 3", - "npmlog": "0 || 1 || 2 || 3 || 4", - "osenv": "0", - "request": "^2.87.0", - "rimraf": "2", - "semver": "~5.3.0", - "tar": "^2.0.0", - "which": "1" - }, - "dependencies": { - "semver": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", - "integrity": "sha512-mfmm3/H9+67MCVix1h+IXTpDwL6710LyHuk7+cWC9T1mE0qz4iHhh6r4hU2wrIT9iTsAAC2XQRvfblL028cpLw==" - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" - }, - "node-libs-browser": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", - "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", - "requires": { - "assert": "^1.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^3.0.0", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "0.0.1", - "process": "^0.11.10", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.3.3", - "stream-browserify": "^2.0.1", - "stream-http": "^2.7.2", - "string_decoder": "^1.0.0", - "timers-browserify": "^2.0.4", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.11.0", - "vm-browserify": "^1.0.1" - }, - "dependencies": { - "path-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", - "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" - } - } - }, - "node-notifier": { - "version": "5.4.5", - "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.5.tgz", - "integrity": "sha512-tVbHs7DyTLtzOiN78izLA85zRqB9NvEXkAf014Vx3jtSvn/xBl6bR8ZYifj+dFcFrKI21huSQgJZ6ZtL3B4HfQ==", - "requires": { - "growly": "^1.3.0", - "is-wsl": "^1.1.0", - "semver": "^5.5.0", - "shellwords": "^0.1.1", - "which": "^1.3.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" - }, - "node-sass": { - "version": "4.14.1", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.14.1.tgz", - "integrity": "sha512-sjCuOlvGyCJS40R8BscF5vhVlQjNN069NtQ1gSxyK1u9iqvn6tf7O1R4GNowVZfiZUCRt5MmMs1xd+4V/7Yr0g==", - "requires": { - "async-foreach": "^0.1.3", - "chalk": "^1.1.1", - "cross-spawn": "^3.0.0", - "gaze": "^1.0.0", - "get-stdin": "^4.0.1", - "glob": "^7.0.3", - "in-publish": "^2.0.0", - "lodash": "^4.17.15", - "meow": "^3.7.0", - "mkdirp": "^0.5.1", - "nan": "^2.13.2", - "node-gyp": "^3.8.0", - "npmlog": "^4.0.0", - "request": "^2.88.0", - "sass-graph": "2.2.5", - "stdout-stream": "^1.4.0", - "true-case-path": "^1.0.2" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==" - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "cross-spawn": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz", - "integrity": "sha512-eZ+m1WNhSZutOa/uRblAc9Ut5MQfukFrFMtPSm3bZCA888NmMd5AWXWdgRZ80zd+pTk1P2JrGjg9pUPTvl2PWQ==", - "requires": { - "lru-cache": "^4.0.1", - "which": "^1.2.9" - } - }, - "lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==" - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { - "isexe": "^2.0.0" - } - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" - } - } - }, - "nopt": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", - "integrity": "sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==", - "requires": { - "abbrev": "1" - } - }, - "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==", - "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", - "requires": { - "remove-trailing-separator": "^1.0.1" - } - }, - "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==" - }, - "normalize-url": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", - "integrity": "sha512-A48My/mtCklowHBlI8Fq2jFWK4tX4lJ5E6ytFsSOq1fzpvT0SQSgKhSg7lN5c2uYFOrUAOQp6zhhJnpp1eMloQ==", - "requires": { - "object-assign": "^4.0.1", - "prepend-http": "^1.0.0", - "query-string": "^4.1.0", - "sort-keys": "^1.0.0" - }, - "dependencies": { - "query-string": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", - "integrity": "sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==", - "requires": { - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" - } - }, - "strict-uri-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==" - } - } - }, - "normalize.css": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz", - "integrity": "sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg==" - }, - "npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==", - "requires": { - "path-key": "^2.0.0" - }, - "dependencies": { - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" - } - } - }, - "npmlog": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "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==", - "requires": { - "boolbase": "~1.0.0" - } - }, - "num2fraction": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", - "integrity": "sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==" - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==" - }, - "nwsapi": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.2.tgz", - "integrity": "sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==" - }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true }, "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==" - }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", - "requires": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "object-hash": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz", - "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==" + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true }, "object-inspect": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", - "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "dev": true }, "object-is": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" @@ -11208,20 +1230,14 @@ "object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - }, - "object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", - "requires": { - "isobject": "^3.0.0" - } + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true }, "object.assign": { "version": "4.1.4", "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -11230,5027 +1246,357 @@ } }, "object.entries": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", - "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "dev": true, "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" } }, "object.fromentries": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", - "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "dev": true, "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" - } - }, - "object.getownpropertydescriptors": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz", - "integrity": "sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ==", - "requires": { - "array.prototype.reduce": "^1.0.4", "call-bind": "^1.0.2", "define-properties": "^1.1.4", - "es-abstract": "^1.20.1" + "es-abstract": "^1.20.4" } }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "object.hasown": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "dev": true, "requires": { - "isobject": "^3.0.1" + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" } }, "object.values": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", - "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "dev": true, "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" } }, - "oblivious-set": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/oblivious-set/-/oblivious-set-1.0.0.tgz", - "integrity": "sha512-z+pI07qxo4c2CulUHCDf9lcqDlMSo72N/4rLUpRXf6fu+q8vjt8y0xS+Tlf8NTJDdTXHbdeO1n3MlbctwEoXZw==" - }, - "obuf": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" - }, - "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==", - "requires": { - "ee-first": "1.1.1" - } - }, - "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==" - }, "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, "requires": { "wrappy": "1" } }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "requires": { - "mimic-fn": "^2.1.0" - } - }, - "open": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", - "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", - "requires": { - "is-docker": "^2.0.0", - "is-wsl": "^2.1.1" - }, - "dependencies": { - "is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "requires": { - "is-docker": "^2.0.0" - } - } - } - }, - "opn": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", - "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", - "requires": { - "is-wsl": "^1.1.0" - } - }, - "optimize-css-assets-webpack-plugin": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.3.tgz", - "integrity": "sha512-q9fbvCRS6EYtUKKSwI87qm2IxlyJK5b4dygW1rKUBT6mMDhdG5e5bZT63v6tnJR9F9FB/H5a0HTmtw+laUBxKA==", - "requires": { - "cssnano": "^4.1.10", - "last-call-webpack-plugin": "^3.0.0" - } - }, - "optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "requires": { - "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" - } - }, - "os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==" - }, - "os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==" - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" - }, - "osenv": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", - "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" - } - }, - "p-each-series": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-1.0.0.tgz", - "integrity": "sha512-J/e9xiZZQNrt+958FFzJ+auItsBGq+UrQ7nE89AUP7UOTtjHnkISANXLdayhVzh538UnLMCSlf13lFfRIAKQOA==", - "requires": { - "p-reduce": "^1.0.0" - } - }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "requires": { - "p-try": "^2.0.0" - } - }, - "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==", - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-map": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", - "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", - "requires": { - "aggregate-error": "^3.0.0" - } - }, - "p-reduce": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", - "integrity": "sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==" - }, - "p-retry": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", - "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", - "requires": { - "retry": "^0.12.0" - } - }, - "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==" - }, - "pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - }, - "parallel-transform": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", - "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", - "requires": { - "cyclist": "^1.0.1", - "inherits": "^2.0.3", - "readable-stream": "^2.1.5" - } - }, - "param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", - "requires": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "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==", - "requires": { - "callsites": "^3.0.0" - } - }, - "parse-asn1": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", - "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", - "requires": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" - } - }, - "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", - "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - } - }, - "parse5": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", - "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==" - }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - }, - "pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==" - }, - "path-browserify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==" - }, - "path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==" - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" - }, "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==" - }, - "path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==" - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true }, "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==" - }, - "path-to-regexp": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", - "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", - "requires": { - "isarray": "0.0.1" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" - } - } + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true }, "path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "requires": { - "pify": "^3.0.0" - } - }, - "pbkdf2": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", - "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", - "requires": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" - }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true }, "picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==" - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", - "requires": { - "pinkie": "^2.0.0" - } - }, - "pirates": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==" - }, - "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "requires": { - "find-up": "^3.0.0" - } - }, - "pkg-up": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", - "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", - "requires": { - "find-up": "^3.0.0" - } - }, - "pn": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", - "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==" - }, - "pnp-webpack-plugin": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", - "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", - "requires": { - "ts-pnp": "^1.1.6" - } - }, - "popper.js": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", - "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==" - }, - "portfinder": { - "version": "1.0.32", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.32.tgz", - "integrity": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==", - "requires": { - "async": "^2.6.4", - "debug": "^3.2.7", - "mkdirp": "^0.5.6" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==" - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" - } - } - }, - "postcss-attribute-case-insensitive": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz", - "integrity": "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==", - "requires": { - "postcss": "^7.0.2", - "postcss-selector-parser": "^6.0.2" - } - }, - "postcss-browser-comments": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-3.0.0.tgz", - "integrity": "sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==", - "requires": { - "postcss": "^7" - } - }, - "postcss-calc": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", - "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", - "requires": { - "postcss": "^7.0.27", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.0.2" - } - }, - "postcss-color-functional-notation": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz", - "integrity": "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==", - "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-color-gray": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz", - "integrity": "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==", - "requires": { - "@csstools/convert-colors": "^1.4.0", - "postcss": "^7.0.5", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-color-hex-alpha": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz", - "integrity": "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==", - "requires": { - "postcss": "^7.0.14", - "postcss-values-parser": "^2.0.1" - } - }, - "postcss-color-mod-function": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz", - "integrity": "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==", - "requires": { - "@csstools/convert-colors": "^1.4.0", - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-color-rebeccapurple": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz", - "integrity": "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==", - "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-colormin": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", - "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", - "requires": { - "browserslist": "^4.0.0", - "color": "^3.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-convert-values": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", - "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", - "requires": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-custom-media": { - "version": "7.0.8", - "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz", - "integrity": "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==", - "requires": { - "postcss": "^7.0.14" - } - }, - "postcss-custom-properties": { - "version": "8.0.11", - "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz", - "integrity": "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==", - "requires": { - "postcss": "^7.0.17", - "postcss-values-parser": "^2.0.1" - } - }, - "postcss-custom-selectors": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz", - "integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==", - "requires": { - "postcss": "^7.0.2", - "postcss-selector-parser": "^5.0.0-rc.3" - }, - "dependencies": { - "cssesc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", - "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" - }, - "postcss-selector-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", - "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", - "requires": { - "cssesc": "^2.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } - } - }, - "postcss-dir-pseudo-class": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz", - "integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==", - "requires": { - "postcss": "^7.0.2", - "postcss-selector-parser": "^5.0.0-rc.3" - }, - "dependencies": { - "cssesc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", - "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" - }, - "postcss-selector-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", - "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", - "requires": { - "cssesc": "^2.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } - } - }, - "postcss-discard-comments": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", - "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-discard-duplicates": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", - "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-discard-empty": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", - "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-discard-overridden": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", - "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-double-position-gradients": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz", - "integrity": "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==", - "requires": { - "postcss": "^7.0.5", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-env-function": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz", - "integrity": "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==", - "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-flexbugs-fixes": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.1.0.tgz", - "integrity": "sha512-jr1LHxQvStNNAHlgco6PzY308zvLklh7SJVYuWUwyUQncofaAlD2l+P/gxKHOdqWKe7xJSkVLFF/2Tp+JqMSZA==", - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-focus-visible": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz", - "integrity": "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-focus-within": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz", - "integrity": "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-font-variant": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz", - "integrity": "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-gap-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz", - "integrity": "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-image-set-function": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz", - "integrity": "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==", - "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-initial": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.4.tgz", - "integrity": "sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-lab-function": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz", - "integrity": "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==", - "requires": { - "@csstools/convert-colors": "^1.4.0", - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-load-config": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", - "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", - "requires": { - "cosmiconfig": "^5.0.0", - "import-cwd": "^2.0.0" - } - }, - "postcss-loader": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", - "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", - "requires": { - "loader-utils": "^1.1.0", - "postcss": "^7.0.0", - "postcss-load-config": "^2.0.0", - "schema-utils": "^1.0.0" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - } - } - }, - "postcss-logical": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz", - "integrity": "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-media-minmax": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz", - "integrity": "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-merge-longhand": { - "version": "4.0.11", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", - "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", - "requires": { - "css-color-names": "0.0.4", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "stylehacks": "^4.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-merge-rules": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", - "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", - "requires": { - "browserslist": "^4.0.0", - "caniuse-api": "^3.0.0", - "cssnano-util-same-parent": "^4.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0", - "vendors": "^1.0.0" - }, - "dependencies": { - "postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", - "requires": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } - } - }, - "postcss-minify-font-values": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", - "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", - "requires": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-minify-gradients": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", - "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", - "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "is-color-stop": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-minify-params": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", - "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", - "requires": { - "alphanum-sort": "^1.0.0", - "browserslist": "^4.0.0", - "cssnano-util-get-arguments": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "uniqs": "^2.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-minify-selectors": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", - "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", - "requires": { - "alphanum-sort": "^1.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0" - }, - "dependencies": { - "postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", - "requires": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } - } - }, - "postcss-modules-extract-imports": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", - "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", - "requires": { - "postcss": "^7.0.5" - } - }, - "postcss-modules-local-by-default": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", - "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", - "requires": { - "icss-utils": "^4.1.1", - "postcss": "^7.0.32", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" - } - }, - "postcss-modules-scope": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", - "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", - "requires": { - "postcss": "^7.0.6", - "postcss-selector-parser": "^6.0.0" - } - }, - "postcss-modules-values": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", - "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", - "requires": { - "icss-utils": "^4.0.0", - "postcss": "^7.0.6" - } - }, - "postcss-nesting": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz", - "integrity": "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-normalize": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-8.0.1.tgz", - "integrity": "sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==", - "requires": { - "@csstools/normalize.css": "^10.1.0", - "browserslist": "^4.6.2", - "postcss": "^7.0.17", - "postcss-browser-comments": "^3.0.0", - "sanitize.css": "^10.0.0" - } - }, - "postcss-normalize-charset": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", - "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-normalize-display-values": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", - "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", - "requires": { - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-normalize-positions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", - "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", - "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-normalize-repeat-style": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", - "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", - "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-normalize-string": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", - "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", - "requires": { - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-normalize-timing-functions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", - "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", - "requires": { - "cssnano-util-get-match": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-normalize-unicode": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", - "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", - "requires": { - "browserslist": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-normalize-url": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", - "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", - "requires": { - "is-absolute-url": "^2.0.0", - "normalize-url": "^3.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "normalize-url": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", - "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==" - }, - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-normalize-whitespace": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", - "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", - "requires": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-ordered-values": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", - "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", - "requires": { - "cssnano-util-get-arguments": "^4.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-overflow-shorthand": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz", - "integrity": "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-page-break": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz", - "integrity": "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-place": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz", - "integrity": "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==", - "requires": { - "postcss": "^7.0.2", - "postcss-values-parser": "^2.0.0" - } - }, - "postcss-preset-env": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz", - "integrity": "sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==", - "requires": { - "autoprefixer": "^9.6.1", - "browserslist": "^4.6.4", - "caniuse-lite": "^1.0.30000981", - "css-blank-pseudo": "^0.1.4", - "css-has-pseudo": "^0.10.0", - "css-prefers-color-scheme": "^3.1.1", - "cssdb": "^4.4.0", - "postcss": "^7.0.17", - "postcss-attribute-case-insensitive": "^4.0.1", - "postcss-color-functional-notation": "^2.0.1", - "postcss-color-gray": "^5.0.0", - "postcss-color-hex-alpha": "^5.0.3", - "postcss-color-mod-function": "^3.0.3", - "postcss-color-rebeccapurple": "^4.0.1", - "postcss-custom-media": "^7.0.8", - "postcss-custom-properties": "^8.0.11", - "postcss-custom-selectors": "^5.1.2", - "postcss-dir-pseudo-class": "^5.0.0", - "postcss-double-position-gradients": "^1.0.0", - "postcss-env-function": "^2.0.2", - "postcss-focus-visible": "^4.0.0", - "postcss-focus-within": "^3.0.0", - "postcss-font-variant": "^4.0.0", - "postcss-gap-properties": "^2.0.0", - "postcss-image-set-function": "^3.0.1", - "postcss-initial": "^3.0.0", - "postcss-lab-function": "^2.0.1", - "postcss-logical": "^3.0.0", - "postcss-media-minmax": "^4.0.0", - "postcss-nesting": "^7.0.0", - "postcss-overflow-shorthand": "^2.0.0", - "postcss-page-break": "^2.0.0", - "postcss-place": "^4.0.1", - "postcss-pseudo-class-any-link": "^6.0.0", - "postcss-replace-overflow-wrap": "^3.0.0", - "postcss-selector-matches": "^4.0.0", - "postcss-selector-not": "^4.0.0" - } - }, - "postcss-pseudo-class-any-link": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz", - "integrity": "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==", - "requires": { - "postcss": "^7.0.2", - "postcss-selector-parser": "^5.0.0-rc.3" - }, - "dependencies": { - "cssesc": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", - "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" - }, - "postcss-selector-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", - "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", - "requires": { - "cssesc": "^2.0.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } - } - }, - "postcss-reduce-initial": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", - "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", - "requires": { - "browserslist": "^4.0.0", - "caniuse-api": "^3.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0" - } - }, - "postcss-reduce-transforms": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", - "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", - "requires": { - "cssnano-util-get-match": "^4.0.0", - "has": "^1.0.0", - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-replace-overflow-wrap": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz", - "integrity": "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==", - "requires": { - "postcss": "^7.0.2" - } - }, - "postcss-safe-parser": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-4.0.1.tgz", - "integrity": "sha512-xZsFA3uX8MO3yAda03QrG3/Eg1LN3EPfjjf07vke/46HERLZyHrTsQ9E1r1w1W//fWEhtYNndo2hQplN2cVpCQ==", - "requires": { - "postcss": "^7.0.0" - } - }, - "postcss-selector-matches": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz", - "integrity": "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==", - "requires": { - "balanced-match": "^1.0.0", - "postcss": "^7.0.2" - } - }, - "postcss-selector-not": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz", - "integrity": "sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==", - "requires": { - "balanced-match": "^1.0.0", - "postcss": "^7.0.2" - } - }, - "postcss-selector-parser": { - "version": "6.0.10", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", - "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", - "requires": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - } - }, - "postcss-svgo": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.3.tgz", - "integrity": "sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==", - "requires": { - "postcss": "^7.0.0", - "postcss-value-parser": "^3.0.0", - "svgo": "^1.0.0" - }, - "dependencies": { - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" - } - } - }, - "postcss-unique-selectors": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", - "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", - "requires": { - "alphanum-sort": "^1.0.0", - "postcss": "^7.0.0", - "uniqs": "^2.0.0" - } - }, - "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==" - }, - "postcss-values-parser": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz", - "integrity": "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==", - "requires": { - "flatten": "^1.0.2", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==" - }, - "prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==" - }, - "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==" - }, - "pretty-error": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", - "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", - "requires": { - "lodash": "^4.17.20", - "renderkid": "^2.0.4" - } - }, - "pretty-format": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", - "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", - "requires": { - "@jest/types": "^24.9.0", - "ansi-regex": "^4.0.0", - "ansi-styles": "^3.2.0", - "react-is": "^16.8.4" - } - }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==" - }, - "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==" - }, - "progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" - }, - "promise": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/promise/-/promise-8.2.0.tgz", - "integrity": "sha512-+CMAlLHqwRYwBMXKCP+o8ns7DN+xHDUiI+0nArsiJ9y+kJVPLFxEaSw6Ha9s9H0tftxg2Yzl25wqj9G7m5wLZg==", - "requires": { - "asap": "~2.0.6" - } - }, - "promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==" - }, - "prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", - "requires": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - } + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "prettier": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.3.tgz", + "integrity": "sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==", + "dev": true }, "prop-types": { "version": "15.8.1", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, "requires": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", "react-is": "^16.13.1" } }, - "property-expr": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.5.tgz", - "integrity": "sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA==" - }, - "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==", - "requires": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - } - }, - "prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==" - }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" - }, - "psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" - }, - "public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "requires": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "requires": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - }, - "dependencies": { - "pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - } - } - }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" - }, - "q": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==" - }, - "qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==" - }, - "query-string": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-7.1.1.tgz", - "integrity": "sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w==", - "requires": { - "decode-uri-component": "^0.2.0", - "filter-obj": "^1.1.0", - "split-on-first": "^1.0.0", - "strict-uri-encode": "^2.0.0" - } - }, - "querystring": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz", - "integrity": "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==" - }, - "querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==" - }, - "querystringify": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", - "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" - }, "queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" - }, - "raf": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", - "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", - "requires": { - "performance-now": "^2.1.0" - } - }, - "ramda": { - "version": "0.27.2", - "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.27.2.tgz", - "integrity": "sha512-SbiLPU40JuJniHexQSAgad32hfwd+DRUdwF2PlVuI5RZD0/vahUco7R8vD86J/tcEKKF9vZrUVwgtmGCqlCKyA==" - }, - "randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "requires": { - "safe-buffer": "^5.1.0" - } - }, - "randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "requires": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, - "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==" - }, - "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==", - "requires": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "dependencies": { - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - } - } - }, - "react": { - "version": "16.14.0", - "resolved": "https://registry.npmjs.org/react/-/react-16.14.0.tgz", - "integrity": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2" - } - }, - "react-app-polyfill": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-1.0.6.tgz", - "integrity": "sha512-OfBnObtnGgLGfweORmdZbyEz+3dgVePQBb3zipiaDsMHV1NpWm0rDFYIVXFV/AK+x4VIIfWHhrdMIeoTLyRr2g==", - "requires": { - "core-js": "^3.5.0", - "object-assign": "^4.1.1", - "promise": "^8.0.3", - "raf": "^3.4.1", - "regenerator-runtime": "^0.13.3", - "whatwg-fetch": "^3.0.0" - } - }, - "react-body-classname": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/react-body-classname/-/react-body-classname-1.3.1.tgz", - "integrity": "sha512-PxskbhmoV8kzIyspjiIc/smQkyyBOQHeUsrh1oj9CC5O1Kg/4gvHWPKsYGWEIq0X51TtCT941u/ulM1dTZ/bOw==", - "requires": { - "prop-types": "^15.5.6", - "react-side-effect": "^1.1.0 || ^2.1.0" - } - }, - "react-content-loader": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/react-content-loader/-/react-content-loader-6.2.0.tgz", - "integrity": "sha512-r1dI6S+uHNLW68qraLE2njJYOuy6976PpCExuCZUcABWbfnF3FMcmuESRI8L4Bj45wnZ7n8g71hkPLzbma7/Cw==" - }, - "react-day-picker": { - "version": "7.4.9", - "resolved": "https://registry.npmjs.org/react-day-picker/-/react-day-picker-7.4.9.tgz", - "integrity": "sha512-CcXf0p7p6gTYnG0+n/4wNGljZuQDXl4HhgcxsXB0nX+8D4LnRho9EclPA/aLz4WlvvVpfY+AEgj2ylgPj4nm/g==", - "requires": { - "prop-types": "^15.6.2" - } - }, - "react-dev-utils": { - "version": "11.0.4", - "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-11.0.4.tgz", - "integrity": "sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==", - "requires": { - "@babel/code-frame": "7.10.4", - "address": "1.1.2", - "browserslist": "4.14.2", - "chalk": "2.4.2", - "cross-spawn": "7.0.3", - "detect-port-alt": "1.1.6", - "escape-string-regexp": "2.0.0", - "filesize": "6.1.0", - "find-up": "4.1.0", - "fork-ts-checker-webpack-plugin": "4.1.6", - "global-modules": "2.0.0", - "globby": "11.0.1", - "gzip-size": "5.1.1", - "immer": "8.0.1", - "is-root": "2.1.0", - "loader-utils": "2.0.0", - "open": "^7.0.2", - "pkg-up": "3.1.0", - "prompts": "2.4.0", - "react-error-overlay": "^6.0.9", - "recursive-readdir": "2.2.2", - "shell-quote": "1.7.2", - "strip-ansi": "6.0.0", - "text-table": "0.2.0" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - }, - "browserslist": { - "version": "4.14.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz", - "integrity": "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==", - "requires": { - "caniuse-lite": "^1.0.30001125", - "electron-to-chromium": "^1.3.564", - "escalade": "^3.0.2", - "node-releases": "^1.1.61" - } - }, - "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==" - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "immer": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz", - "integrity": "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==" - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "requires": { - "p-locate": "^4.1.0" - } - }, - "node-releases": { - "version": "1.1.77", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.77.tgz", - "integrity": "sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==" - }, - "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==", - "requires": { - "p-limit": "^2.2.0" - } - }, - "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==" - }, - "prompts": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz", - "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", - "requires": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - } - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "requires": { - "ansi-regex": "^5.0.0" - } - } - } - }, - "react-dom": { - "version": "16.14.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.14.0.tgz", - "integrity": "sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2", - "scheduler": "^0.19.1" - } - }, - "react-draggable": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/react-draggable/-/react-draggable-4.4.5.tgz", - "integrity": "sha512-OMHzJdyJbYTZo4uQE393fHcqqPYsEtkjfMgvCHr6rejT+Ezn4OZbNyGH50vv+SunC1RMvwOTSWkEODQLzw1M9g==", - "requires": { - "clsx": "^1.1.1", - "prop-types": "^15.8.1" - } - }, - "react-dropzone": { - "version": "11.7.1", - "resolved": "https://registry.npmjs.org/react-dropzone/-/react-dropzone-11.7.1.tgz", - "integrity": "sha512-zxCMwhfPy1olUEbw3FLNPLhAm/HnaYH5aELIEglRbqabizKAdHs0h+WuyOpmA+v1JXn0++fpQDdNfUagWt5hJQ==", - "requires": { - "attr-accept": "^2.2.2", - "file-selector": "^0.4.0", - "prop-types": "^15.8.1" - } - }, - "react-error-boundary": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/react-error-boundary/-/react-error-boundary-3.1.4.tgz", - "integrity": "sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==", - "requires": { - "@babel/runtime": "^7.12.5" - } - }, - "react-error-overlay": { - "version": "6.0.9", - "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.9.tgz", - "integrity": "sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==" - }, - "react-fast-compare": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.0.tgz", - "integrity": "sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==" - }, - "react-hotkeys-hook": { - "version": "3.4.7", - "resolved": "https://registry.npmjs.org/react-hotkeys-hook/-/react-hotkeys-hook-3.4.7.tgz", - "integrity": "sha512-+bbPmhPAl6ns9VkXkNNyxlmCAIyDAcWbB76O4I0ntr3uWCRuIQf/aRLartUahe9chVMPj+OEzzfk3CQSjclUEQ==", - "requires": { - "hotkeys-js": "3.9.4" - } - }, - "react-intl-universal": { - "version": "2.6.6", - "resolved": "https://registry.npmjs.org/react-intl-universal/-/react-intl-universal-2.6.6.tgz", - "integrity": "sha512-ed0DJuAMi4EgJQVwpGLN5M7YcB83OkDLdw6H7FUUKpFi6RJE9f9KpKONp4UvLljYZF65cb+l/p2ndX/R6s2JhQ==", - "requires": { - "cookie": "^0.3.1", - "escape-html": "^1.0.3", - "intl": "^1.2.5", - "intl-messageformat": "^7.8.4", - "invariant": "^2.2.2", - "lodash.merge": "^4.6.2", - "object-keys": "^1.0.11", - "querystring": "^0.2.0" - } + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true }, "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==" - }, - "react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - }, - "react-loadable": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/react-loadable/-/react-loadable-5.5.0.tgz", - "integrity": "sha512-C8Aui0ZpMd4KokxRdVAm2bQtI03k2RMRNzOB+IipV3yxFTSVICv7WoUr5L9ALB5BmKO1iHgZtWM8EvYG83otdg==", - "requires": { - "prop-types": "^15.5.0" - } - }, - "react-popper": { - "version": "1.3.11", - "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-1.3.11.tgz", - "integrity": "sha512-VSA/bS+pSndSF2fiasHK/PTEEAyOpX60+H5EPAjoArr8JGm+oihu4UbrqcEBpQibJxBVCpYyjAX7abJ+7DoYVg==", - "requires": { - "@babel/runtime": "^7.1.2", - "@hypnosphi/create-react-context": "^0.3.1", - "deep-equal": "^1.1.1", - "popper.js": "^1.14.4", - "prop-types": "^15.6.1", - "typed-styles": "^0.0.7", - "warning": "^4.0.2" - } - }, - "react-query": { - "version": "3.39.2", - "resolved": "https://registry.npmjs.org/react-query/-/react-query-3.39.2.tgz", - "integrity": "sha512-F6hYDKyNgDQfQOuR1Rsp3VRzJnWHx6aRnnIZHMNGGgbL3SBgpZTDg8MQwmxOgpCAoqZJA+JSNCydF1xGJqKOCA==", - "requires": { - "@babel/runtime": "^7.5.5", - "broadcast-channel": "^3.4.1", - "match-sorter": "^6.0.2" - } - }, - "react-query-devtools": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/react-query-devtools/-/react-query-devtools-2.6.3.tgz", - "integrity": "sha512-pSvWq5Q8zgIP7QbF0+4BerCHLaLn5HPzce7sIXYqz4XEizcYJHkJtcrAwn6bUkCu5JmAt1Y7fViQtZwOIG2SYA==", - "requires": { - "match-sorter": "^4.1.0" - }, - "dependencies": { - "match-sorter": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/match-sorter/-/match-sorter-4.2.1.tgz", - "integrity": "sha512-s+3h9TiZU9U1pWhIERHf8/f4LmBN6IXaRgo2CI17+XGByGS1GvG5VvXK9pcGyCjGe3WM3mSYRC3ipGrd5UEVgw==", - "requires": { - "@babel/runtime": "^7.10.5", - "remove-accents": "0.4.2" - } - } - } - }, - "react-redux": { - "version": "7.2.9", - "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.9.tgz", - "integrity": "sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==", - "requires": { - "@babel/runtime": "^7.15.4", - "@types/react-redux": "^7.1.20", - "hoist-non-react-statics": "^3.3.2", - "loose-envify": "^1.4.0", - "prop-types": "^15.7.2", - "react-is": "^17.0.2" - }, - "dependencies": { - "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==" - } - } - }, - "react-router": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.3.3.tgz", - "integrity": "sha512-mzQGUvS3bM84TnbtMYR8ZjKnuPJ71IjSzR+DE6UkUqvN4czWIqEs17yLL8xkAycv4ev0AiN+IGrWu88vJs/p2w==", - "requires": { - "@babel/runtime": "^7.12.13", - "history": "^4.9.0", - "hoist-non-react-statics": "^3.1.0", - "loose-envify": "^1.3.1", - "mini-create-react-context": "^0.4.0", - "path-to-regexp": "^1.7.0", - "prop-types": "^15.6.2", - "react-is": "^16.6.0", - "tiny-invariant": "^1.0.2", - "tiny-warning": "^1.0.0" - } - }, - "react-router-breadcrumbs-hoc": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/react-router-breadcrumbs-hoc/-/react-router-breadcrumbs-hoc-3.4.0.tgz", - "integrity": "sha512-Ai8WUcYy83NnNB6OA9YiYRw4PxIAALKIQrNQUtK28jWxI//I0/bNPyPTDbWF21TTJ/n4W9DoOzS1MEqMuKZqoA==" - }, - "react-router-dom": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.3.3.tgz", - "integrity": "sha512-Ov0tGPMBgqmbu5CDmN++tv2HQ9HlWDuWIIqn4b88gjlAN5IHI+4ZUZRcpz9Hl0azFIwihbLDYw1OiHGRo7ZIng==", - "requires": { - "@babel/runtime": "^7.12.13", - "history": "^4.9.0", - "loose-envify": "^1.3.1", - "prop-types": "^15.6.2", - "react-router": "5.3.3", - "tiny-invariant": "^1.0.2", - "tiny-warning": "^1.0.0" - } - }, - "react-scripts": { - "version": "3.4.4", - "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-3.4.4.tgz", - "integrity": "sha512-7J7GZyF/QvZkKAZLneiOIhHozvOMHey7hO9cdO9u68jjhGZlI8hDdOm6UyuHofn6Ajc9Uji5I6Psm/nKNuWdyw==", - "requires": { - "@babel/core": "7.9.0", - "@svgr/webpack": "4.3.3", - "@typescript-eslint/eslint-plugin": "^2.10.0", - "@typescript-eslint/parser": "^2.10.0", - "babel-eslint": "10.1.0", - "babel-jest": "^24.9.0", - "babel-loader": "8.1.0", - "babel-plugin-named-asset-import": "^0.3.6", - "babel-preset-react-app": "^9.1.2", - "camelcase": "^5.3.1", - "case-sensitive-paths-webpack-plugin": "2.3.0", - "css-loader": "3.4.2", - "dotenv": "8.2.0", - "dotenv-expand": "5.1.0", - "eslint": "^6.6.0", - "eslint-config-react-app": "^5.2.1", - "eslint-loader": "3.0.3", - "eslint-plugin-flowtype": "4.6.0", - "eslint-plugin-import": "2.20.1", - "eslint-plugin-jsx-a11y": "6.2.3", - "eslint-plugin-react": "7.19.0", - "eslint-plugin-react-hooks": "^1.6.1", - "file-loader": "4.3.0", - "fs-extra": "^8.1.0", - "fsevents": "2.1.2", - "html-webpack-plugin": "4.0.0-beta.11", - "identity-obj-proxy": "3.0.0", - "jest": "24.9.0", - "jest-environment-jsdom-fourteen": "1.0.1", - "jest-resolve": "24.9.0", - "jest-watch-typeahead": "0.4.2", - "mini-css-extract-plugin": "0.9.0", - "optimize-css-assets-webpack-plugin": "5.0.3", - "pnp-webpack-plugin": "1.6.4", - "postcss-flexbugs-fixes": "4.1.0", - "postcss-loader": "3.0.0", - "postcss-normalize": "8.0.1", - "postcss-preset-env": "6.7.0", - "postcss-safe-parser": "4.0.1", - "react-app-polyfill": "^1.0.6", - "react-dev-utils": "^10.2.1", - "resolve": "1.15.0", - "resolve-url-loader": "3.1.2", - "sass-loader": "8.0.2", - "semver": "6.3.0", - "style-loader": "0.23.1", - "terser-webpack-plugin": "2.3.8", - "ts-pnp": "1.1.6", - "url-loader": "2.3.0", - "webpack": "4.42.0", - "webpack-dev-server": "3.11.0", - "webpack-manifest-plugin": "2.2.0", - "workbox-webpack-plugin": "4.3.1" - }, - "dependencies": { - "@babel/core": { - "version": "7.9.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.9.0.tgz", - "integrity": "sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==", - "requires": { - "@babel/code-frame": "^7.8.3", - "@babel/generator": "^7.9.0", - "@babel/helper-module-transforms": "^7.9.0", - "@babel/helpers": "^7.9.0", - "@babel/parser": "^7.9.0", - "@babel/template": "^7.8.6", - "@babel/traverse": "^7.9.0", - "@babel/types": "^7.9.0", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.1", - "json5": "^2.1.2", - "lodash": "^4.17.13", - "resolve": "^1.3.2", - "semver": "^5.4.1", - "source-map": "^0.5.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, - "@nodelib/fs.stat": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", - "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==" - }, - "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==", - "requires": { - "type-fest": "^0.21.3" - } - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - }, - "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==", - "requires": { - "array-uniq": "^1.0.1" - } - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "browserslist": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.10.0.tgz", - "integrity": "sha512-TpfK0TDgv71dzuTsEAlQiHeWQ/tiPqgNZVdv046fvNtBZrjbv2O3TsWCDU0AWGJJKCF/KsjNdLzR9hXOsh/CfA==", - "requires": { - "caniuse-lite": "^1.0.30001035", - "electron-to-chromium": "^1.3.378", - "node-releases": "^1.1.52", - "pkg-up": "^3.1.0" - } - }, - "cli-width": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz", - "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==" - }, - "cross-spawn": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.1.tgz", - "integrity": "sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg==", - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "dir-glob": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz", - "integrity": "sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==", - "requires": { - "arrify": "^1.0.1", - "path-type": "^3.0.0" - } - }, - "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==" - }, - "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng==" - }, - "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==" - }, - "fast-glob": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz", - "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", - "requires": { - "@mrmlnc/readdir-enhanced": "^2.2.1", - "@nodelib/fs.stat": "^1.1.2", - "glob-parent": "^3.1.0", - "is-glob": "^4.0.0", - "merge2": "^1.2.3", - "micromatch": "^3.1.10" - } - }, - "filesize": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.0.1.tgz", - "integrity": "sha512-u4AYWPgbI5GBhs6id1KdImZWn5yfyFrrQ8OWZdN7ZMfA8Bf4HcO0BGo9bmUIEV8yrp8I1xVfJ/dn90GtFNNJcg==" - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "fork-ts-checker-webpack-plugin": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-3.1.1.tgz", - "integrity": "sha512-DuVkPNrM12jR41KM2e+N+styka0EgLkTnXmNcXdgOM37vtGeY+oCBK/Jx0hzSeEU6memFCtWb4htrHPMDfwwUQ==", - "requires": { - "babel-code-frame": "^6.22.0", - "chalk": "^2.4.1", - "chokidar": "^3.3.0", - "micromatch": "^3.1.10", - "minimatch": "^3.0.4", - "semver": "^5.6.0", - "tapable": "^1.0.0", - "worker-rpc": "^0.1.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } - } - }, - "fsevents": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.2.tgz", - "integrity": "sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==", - "optional": true - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "globby": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz", - "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", - "requires": { - "array-union": "^1.0.1", - "dir-glob": "2.0.0", - "fast-glob": "^2.0.2", - "glob": "^7.1.2", - "ignore": "^3.3.5", - "pify": "^3.0.0", - "slash": "^1.0.0" - } - }, - "ignore": { - "version": "3.3.10", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", - "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==" - }, - "immer": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/immer/-/immer-1.10.0.tgz", - "integrity": "sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg==" - }, - "inquirer": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.0.4.tgz", - "integrity": "sha512-Bu5Td5+j11sCkqfqmUTiwv+tWisMtP0L7Q8WrqA2C/BbBhy1YTdFrvjjlrKq8oagA/tLQBski2Gcx/Sqyi2qSQ==", - "requires": { - "ansi-escapes": "^4.2.1", - "chalk": "^2.4.2", - "cli-cursor": "^3.1.0", - "cli-width": "^2.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.15", - "mute-stream": "0.0.8", - "run-async": "^2.2.0", - "rxjs": "^6.5.3", - "string-width": "^4.1.0", - "strip-ansi": "^5.1.0", - "through": "^2.3.6" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", - "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==" - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "requires": { - "ansi-regex": "^4.1.0" - } - } - } - }, - "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==" - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - } - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "requires": { - "p-locate": "^4.1.0" - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "node-releases": { - "version": "1.1.77", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.77.tgz", - "integrity": "sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==" - }, - "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==", - "requires": { - "p-limit": "^2.2.0" - } - }, - "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==" - }, - "react-dev-utils": { - "version": "10.2.1", - "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-10.2.1.tgz", - "integrity": "sha512-XxTbgJnYZmxuPtY3y/UV0D8/65NKkmaia4rXzViknVnZeVlklSh8u6TnaEYPfAi/Gh1TP4mEOXHI6jQOPbeakQ==", - "requires": { - "@babel/code-frame": "7.8.3", - "address": "1.1.2", - "browserslist": "4.10.0", - "chalk": "2.4.2", - "cross-spawn": "7.0.1", - "detect-port-alt": "1.1.6", - "escape-string-regexp": "2.0.0", - "filesize": "6.0.1", - "find-up": "4.1.0", - "fork-ts-checker-webpack-plugin": "3.1.1", - "global-modules": "2.0.0", - "globby": "8.0.2", - "gzip-size": "5.1.1", - "immer": "1.10.0", - "inquirer": "7.0.4", - "is-root": "2.1.0", - "loader-utils": "1.2.3", - "open": "^7.0.2", - "pkg-up": "3.1.0", - "react-error-overlay": "^6.0.7", - "recursive-readdir": "2.2.2", - "shell-quote": "1.7.2", - "strip-ansi": "6.0.0", - "text-table": "0.2.0" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", - "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", - "requires": { - "@babel/highlight": "^7.8.3" - } - } - } - }, - "resolve": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.0.tgz", - "integrity": "sha512-+hTmAldEGE80U2wJJDC1lebb5jWqvTYAfm3YZ1ckk1gBr0MnCqUKlwK1e+anaFljIl+F5tR5IoZcm4ZDA1zMQw==", - "requires": { - "path-parse": "^1.0.6" - } - }, - "slash": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", - "integrity": "sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==" - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" - }, - "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==", - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "dependencies": { - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - } - } - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "requires": { - "ansi-regex": "^5.0.0" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } - } - }, - "react-scroll-sync": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/react-scroll-sync/-/react-scroll-sync-0.7.1.tgz", - "integrity": "sha512-8NH4yvcbEkmdwOk5BxmKxBHIUO89wGpqIS+2xMmxJ+XiFTbnBcrG+qU4lcRyS3wVnD3XwbuMo8zjN4FGp8xW0Q==" - }, - "react-scrollbars-custom": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/react-scrollbars-custom/-/react-scrollbars-custom-4.1.1.tgz", - "integrity": "sha512-FOI1EMrdN5qziwvFAuH4saOo0+ggxeTuKLPpy6nezNdLUnDW1vCHGq0VSSfTSRstDgfXgwff5TMP9NeJ8NiFOQ==", - "requires": { - "cnbuilder": "^3.1.0", - "react-draggable": "^4.4.5", - "zoom-level": "^2.5.0" - } - }, - "react-side-effect": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/react-side-effect/-/react-side-effect-2.1.2.tgz", - "integrity": "sha512-PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw==" - }, - "react-sortablejs": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/react-sortablejs/-/react-sortablejs-2.1.0.tgz", - "integrity": "sha512-VFE7R/Np8yvHxhA31XTIdh86QzwFbUmwCoEBkn4KilISmeZ2Kq2NsNstOuPZEs8ULKqLahE+r2VlMTDVcj7s3Q==", - "requires": { - "classnames": "^2.2.6", - "tiny-invariant": "^1.1.0" - } - }, - "react-split-pane": { - "version": "0.1.92", - "resolved": "https://registry.npmjs.org/react-split-pane/-/react-split-pane-0.1.92.tgz", - "integrity": "sha512-GfXP1xSzLMcLJI5BM36Vh7GgZBpy+U/X0no+VM3fxayv+p1Jly5HpMofZJraeaMl73b3hvlr+N9zJKvLB/uz9w==", - "requires": { - "prop-types": "^15.7.2", - "react-lifecycles-compat": "^3.0.4", - "react-style-proptype": "^3.2.2" - } - }, - "react-style-proptype": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/react-style-proptype/-/react-style-proptype-3.2.2.tgz", - "integrity": "sha512-ywYLSjNkxKHiZOqNlso9PZByNEY+FTyh3C+7uuziK0xFXu9xzdyfHwg4S9iyiRRoPCR4k2LqaBBsWVmSBwCWYQ==", - "requires": { - "prop-types": "^15.5.4" - } - }, - "react-table": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/react-table/-/react-table-7.8.0.tgz", - "integrity": "sha512-hNaz4ygkZO4bESeFfnfOft73iBUj8K5oKi1EcSHPAibEydfsX2MyU6Z8KCr3mv3C9Kqqh71U+DhZkFvibbnPbA==" - }, - "react-table-sticky": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/react-table-sticky/-/react-table-sticky-1.1.3.tgz", - "integrity": "sha512-9hyjbveY1aDyo9wkyMOsmKIpQdFUaw2yG6/f8c5SPE4pOTuKm7L2zLnDa+AxpG+3315USulViaO4XSOkX1KdVA==" - }, - "react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", - "requires": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - }, - "dependencies": { - "dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "requires": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - } - } - } - }, - "react-use": { - "version": "13.27.1", - "resolved": "https://registry.npmjs.org/react-use/-/react-use-13.27.1.tgz", - "integrity": "sha512-bAwdqDMXs5lovEanXnL1izledfrPEUUv1afoTVB59eUiYcDyKul+M/dT/2WcgHjoY/R6QlrTcZoW4R7ifwvBfw==", - "requires": { - "@types/js-cookie": "2.2.5", - "@xobotyi/scrollbar-width": "1.9.5", - "copy-to-clipboard": "^3.2.0", - "fast-deep-equal": "^3.1.1", - "fast-shallow-equal": "^1.0.0", - "js-cookie": "^2.2.1", - "nano-css": "^5.2.1", - "resize-observer-polyfill": "^1.5.1", - "screenfull": "^5.0.0", - "set-harmonic-interval": "^1.0.1", - "throttle-debounce": "^2.1.0", - "ts-easing": "^0.2.0", - "tslib": "^1.10.0" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, - "react-use-context-menu": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/react-use-context-menu/-/react-use-context-menu-0.1.4.tgz", - "integrity": "sha512-3/IC2CTUErMrtcv1IU1Nt9NL2J4YHBiiSBV66wGdPsZzeFK4qhUwQmLg8hUk58Pi5oa8ts3+M3kVKl10HW4o4w==" - }, - "react-virtualized": { - "version": "9.22.3", - "resolved": "https://registry.npmjs.org/react-virtualized/-/react-virtualized-9.22.3.tgz", - "integrity": "sha512-MKovKMxWTcwPSxE1kK1HcheQTWfuCxAuBoSTf2gwyMM21NdX/PXUhnoP8Uc5dRKd+nKm8v41R36OellhdCpkrw==", - "requires": { - "@babel/runtime": "^7.7.2", - "clsx": "^1.0.4", - "dom-helpers": "^5.1.3", - "loose-envify": "^1.4.0", - "prop-types": "^15.7.2", - "react-lifecycles-compat": "^3.0.4" - }, - "dependencies": { - "dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "requires": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - } - } - } - }, - "read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", - "requires": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - } - }, - "read-pkg-up": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", - "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", - "requires": { - "find-up": "^3.0.0", - "read-pkg": "^3.0.0" - } - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "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" - } - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "requires": { - "picomatch": "^2.2.1" - } - }, - "realpath-native": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz", - "integrity": "sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==", - "requires": { - "util.promisify": "^1.0.0" - } - }, - "recursive-readdir": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", - "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", - "requires": { - "minimatch": "3.0.4" - }, - "dependencies": { - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "redent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", - "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", - "requires": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" - } - }, - "redux": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.0.tgz", - "integrity": "sha512-oSBmcKKIuIR4ME29/AeNUnl5L+hvBq7OaJWzaptTQJAntaPvxIJqfnjbaEiCzzaIz+XmVILfqAM3Ob0aXLPfjA==", - "requires": { - "@babel/runtime": "^7.9.2" - } - }, - "redux-devtools": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/redux-devtools/-/redux-devtools-3.7.0.tgz", - "integrity": "sha512-Lnx3UX7mnJij2Xs+RicPK1GyKkbuodrCKtfYmJsN603wC0mc99W//xCAskGVNmRhIXg4e57m2k1CyX0kVzCsBg==", - "requires": { - "@types/prop-types": "^15.7.3", - "lodash": "^4.17.19", - "prop-types": "^15.7.2", - "redux-devtools-instrument": "^1.10.0" - } - }, - "redux-devtools-instrument": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/redux-devtools-instrument/-/redux-devtools-instrument-1.10.0.tgz", - "integrity": "sha512-X8JRBCzX2ADSMp+iiV7YQ8uoTNyEm0VPFPd4T854coz6lvRiBrFSqAr9YAS2n8Kzxx8CJQotR0QF9wsMM+3DvA==", - "requires": { - "lodash": "^4.17.19", - "symbol-observable": "^1.2.0" - } - }, - "redux-persist": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/redux-persist/-/redux-persist-6.0.0.tgz", - "integrity": "sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ==" - }, - "redux-thunk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.1.tgz", - "integrity": "sha512-OOYGNY5Jy2TWvTL1KgAlVy6dcx3siPJ1wTq741EPyUKfn6W6nChdICjZwCd0p8AZBs5kWpZlbkXW2nE/zjUa+Q==" - }, - "regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" - }, - "regenerate-unicode-properties": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", - "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", - "requires": { - "regenerate": "^1.4.2" - } + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true }, "regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" - }, - "regenerator-transform": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz", - "integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==", - "requires": { - "@babel/runtime": "^7.8.4" - } - }, - "regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "requires": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - } - }, - "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==" + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==", + "dev": true }, "regexp.prototype.flags": { "version": "1.4.3", "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", "functions-have-names": "^1.2.2" } }, - "regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" - }, - "regexpu-core": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.2.1.tgz", - "integrity": "sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==", - "requires": { - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsgen": "^0.7.1", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.0.0" - } - }, - "regjsgen": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.7.1.tgz", - "integrity": "sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==" - }, - "regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", - "requires": { - "jsesc": "~0.5.0" - }, - "dependencies": { - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" - } - } - }, - "relateurl": { - "version": "0.2.7", - "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", - "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==" - }, - "remove-accents": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/remove-accents/-/remove-accents-0.4.2.tgz", - "integrity": "sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==" - }, - "remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==" - }, - "renderkid": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz", - "integrity": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==", - "requires": { - "css-select": "^4.1.3", - "dom-converter": "^0.2.0", - "htmlparser2": "^6.1.0", - "lodash": "^4.17.21", - "strip-ansi": "^3.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==" - }, - "css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "requires": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - } - }, - "css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" - }, - "dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - } - }, - "domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - }, - "domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "requires": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - } - }, - "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==", - "requires": { - "boolbase": "^1.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "requires": { - "ansi-regex": "^2.0.0" - } - } - } - }, - "repeat-element": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", - "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==" - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==" - }, - "repeating": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "integrity": "sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==", - "requires": { - "is-finite": "^1.0.0" - } - }, - "request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "requires": { - "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" - } - }, - "request-promise-core": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", - "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", - "requires": { - "lodash": "^4.17.19" - } - }, - "request-promise-native": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", - "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", - "requires": { - "request-promise-core": "1.1.4", - "stealthy-require": "^1.1.1", - "tough-cookie": "^2.3.3" - } - }, - "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==" - }, - "require-main-filename": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" - }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - }, - "reselect": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.1.6.tgz", - "integrity": "sha512-ZovIuXqto7elwnxyXbBtCPo9YFEr3uJqj2rRbcOOog1bmu2Ag85M4hixSwFWyaBMKXNgvPaJ9OSu9SkBPIeJHQ==" - }, - "resize-observer-polyfill": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", - "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" - }, "resolve": { "version": "1.22.1", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "dev": true, "requires": { "is-core-module": "^2.9.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" } }, - "resolve-cwd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", - "integrity": "sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg==", - "requires": { - "resolve-from": "^3.0.0" - } - }, - "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==" - }, - "resolve-pathname": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", - "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" - }, - "resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==" - }, - "resolve-url-loader": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-3.1.2.tgz", - "integrity": "sha512-QEb4A76c8Mi7I3xNKXlRKQSlLBwjUV/ULFMP+G7n3/7tJZ8MG5wsZ3ucxP1Jz8Vevn6fnJsxDx9cIls+utGzPQ==", - "requires": { - "adjust-sourcemap-loader": "3.0.0", - "camelcase": "5.3.1", - "compose-function": "3.0.3", - "convert-source-map": "1.7.0", - "es6-iterator": "2.0.3", - "loader-utils": "1.2.3", - "postcss": "7.0.21", - "rework": "1.0.1", - "rework-visit": "1.0.0", - "source-map": "0.6.1" - }, - "dependencies": { - "convert-source-map": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", - "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", - "requires": { - "safe-buffer": "~5.1.1" - } - }, - "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng==" - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - } - }, - "postcss": { - "version": "7.0.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.21.tgz", - "integrity": "sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ==", - "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - } - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "requires": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - } - }, - "ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" - }, - "retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==" - }, "reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" - }, - "rework": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz", - "integrity": "sha512-eEjL8FdkdsxApd0yWVZgBGzfCQiT8yqSc2H1p4jpZpQdtz7ohETiDMoje5PlM8I9WgkqkreVxFUKYOiJdVWDXw==", - "requires": { - "convert-source-map": "^0.3.3", - "css": "^2.0.0" - }, - "dependencies": { - "convert-source-map": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz", - "integrity": "sha512-+4nRk0k3oEpwUB7/CalD7xE2z4VmtEnnq0GO2IPTkrooTrAhEsWvuLF5iWP1dXrwluki/azwXV1ve7gtYuPldg==" - } - } - }, - "rework-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz", - "integrity": "sha512-W6V2fix7nCLUYX1v6eGPrBOZlc03/faqzP4sUxMAJMBMOPYhfV/RyLegTufn5gJKaOITyi+gvf0LXDZ9NzkHnQ==" - }, - "rgb-regex": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", - "integrity": "sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==" - }, - "rgba-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", - "integrity": "sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==" - }, - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "requires": { - "glob": "^7.1.3" - } - }, - "ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "rsvp": { - "version": "4.8.5", - "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", - "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==" - }, - "rtl-css-js": { - "version": "1.16.0", - "resolved": "https://registry.npmjs.org/rtl-css-js/-/rtl-css-js-1.16.0.tgz", - "integrity": "sha512-Oc7PnzwIEU4M0K1J4h/7qUUaljXhQ0kCObRsZjxs2HjkpKsnoTMvSmvJ4sqgJZd0zBoEfAyTdnK/jMIYvrjySQ==", - "requires": { - "@babel/runtime": "^7.1.2" - } - }, - "rtl-detect": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/rtl-detect/-/rtl-detect-1.0.4.tgz", - "integrity": "sha512-EBR4I2VDSSYr7PkBmFy04uhycIpDKp+21p/jARYXlCSjQksTBQcJ0HFUPOO79EPPH5JS6VAhiIQbycf0O3JAxQ==" - }, - "rtlcss": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-2.6.2.tgz", - "integrity": "sha512-06LFAr+GAPo+BvaynsXRfoYTJvSaWRyOhURCQ7aeI1MKph9meM222F+Zkt3bDamyHHJuGi3VPtiRkpyswmQbGA==", - "requires": { - "@choojs/findup": "^0.2.1", - "chalk": "^2.4.2", - "mkdirp": "^0.5.1", - "postcss": "^6.0.23", - "strip-json-comments": "^2.0.0" - }, - "dependencies": { - "postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", - "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==" - } - } - }, - "run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true }, "run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, "requires": { "queue-microtask": "^1.2.2" } }, - "run-queue": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", - "integrity": "sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==", - "requires": { - "aproba": "^1.1.1" - } - }, - "rxjs": { - "version": "6.6.7", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", - "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", - "requires": { - "tslib": "^1.9.0" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, - "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==" - }, - "safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", - "requires": { - "ret": "~0.1.10" - } - }, "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==", + "dev": true, "requires": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.3", "is-regex": "^1.1.4" } }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "sane": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", - "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", - "requires": { - "@cnakazawa/watch": "^1.0.3", - "anymatch": "^2.0.0", - "capture-exit": "^2.0.0", - "exec-sh": "^0.3.2", - "execa": "^1.0.0", - "fb-watchman": "^2.0.0", - "micromatch": "^3.1.4", - "minimist": "^1.1.1", - "walker": "~1.0.5" - }, - "dependencies": { - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } - } - }, - "sanitize.css": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-10.0.0.tgz", - "integrity": "sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==" - }, - "sass-graph": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.5.tgz", - "integrity": "sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag==", - "requires": { - "glob": "^7.0.0", - "lodash": "^4.0.0", - "scss-tokenizer": "^0.2.3", - "yargs": "^13.3.2" - } - }, - "sass-loader": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-8.0.2.tgz", - "integrity": "sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ==", - "requires": { - "clone-deep": "^4.0.1", - "loader-utils": "^1.2.3", - "neo-async": "^2.6.1", - "schema-utils": "^2.6.1", - "semver": "^6.3.0" - }, - "dependencies": { - "clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", - "requires": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - } - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", - "requires": { - "kind-of": "^6.0.2" - } - } - } - }, - "sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" - }, - "saxes": { - "version": "3.1.11", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-3.1.11.tgz", - "integrity": "sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==", - "requires": { - "xmlchars": "^2.1.1" - } - }, - "scheduler": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz", - "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==", - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - } - }, - "schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", - "requires": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" - } - }, - "screenfull": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/screenfull/-/screenfull-5.2.0.tgz", - "integrity": "sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==" - }, - "scss-tokenizer": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", - "integrity": "sha512-dYE8LhncfBUar6POCxMTm0Ln+erjeczqEvCJib5/7XNkdw1FkUGgwMPY360FY0FgPWQxHWCx29Jl3oejyGLM9Q==", - "requires": { - "js-base64": "^2.1.8", - "source-map": "^0.4.2" - }, - "dependencies": { - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha512-Y8nIfcb1s/7DcobUz1yOO1GSp7gyL+D9zLHDehT7iRESqGSxjJ448Sg7rvfgsRJCnKLdSl11uGf0s9X80cH0/A==", - "requires": { - "amdefine": ">=0.0.4" - } - } - } - }, - "select-hose": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" - }, - "selfsigned": { - "version": "1.10.14", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz", - "integrity": "sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA==", - "requires": { - "node-forge": "^0.10.0" - } - }, "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - }, - "send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, "requires": { - "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" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - }, - "dependencies": { - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } + "lru-cache": "^6.0.0" } }, - "serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", - "requires": { - "randombytes": "^2.1.0" - } - }, - "serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", - "requires": { - "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" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" - }, - "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" - } - } - }, - "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==", - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - } - }, - "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==" - }, - "set-harmonic-interval": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/set-harmonic-interval/-/set-harmonic-interval-1.0.1.tgz", - "integrity": "sha512-AhICkFV84tBP1aWqPwLZqFvAwqEoVA9kxNMniGEUvzOlm4vLmOFLiTT3UZ6bziJTy4bOVpzWGTfSCbmaayGx8g==" - }, - "set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" - }, - "setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - }, - "sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "shallow-clone": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-0.1.2.tgz", - "integrity": "sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==", - "requires": { - "is-extendable": "^0.1.1", - "kind-of": "^2.0.1", - "lazy-cache": "^0.2.3", - "mixin-object": "^2.0.1" - }, - "dependencies": { - "kind-of": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz", - "integrity": "sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==", - "requires": { - "is-buffer": "^1.0.2" - } - }, - "lazy-cache": { - "version": "0.2.7", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz", - "integrity": "sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==" - } - } - }, - "shallowequal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", - "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" - }, - "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==", - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - }, - "shell-quote": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", - "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" - }, - "shellwords": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", - "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==" - }, "side-channel": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, "requires": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", "object-inspect": "^1.9.0" } }, - "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==" - }, - "simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", - "requires": { - "is-arrayish": "^0.3.1" - }, - "dependencies": { - "is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - } - } - }, - "sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" - }, "slash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", - "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==" - }, - "slice-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", - "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", - "requires": { - "ansi-styles": "^3.2.0", - "astral-regex": "^1.0.0", - "is-fullwidth-code-point": "^2.0.0" - } - }, - "snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "requires": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" - } - } - }, - "snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "requires": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - } - } - }, - "snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "requires": { - "kind-of": "^3.2.0" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "sockjs": { - "version": "0.3.20", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.20.tgz", - "integrity": "sha512-SpmVOVpdq0DJc0qArhF3E5xsxvaiqGNb73XfgBpK1y3UD5gs8DSo8aCTsuT5pX8rssdc2NDIzANwP9eCAiSdTA==", - "requires": { - "faye-websocket": "^0.10.0", - "uuid": "^3.4.0", - "websocket-driver": "0.6.5" - } - }, - "sockjs-client": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.4.0.tgz", - "integrity": "sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g==", - "requires": { - "debug": "^3.2.5", - "eventsource": "^1.0.7", - "faye-websocket": "~0.11.1", - "inherits": "^2.0.3", - "json3": "^3.3.2", - "url-parse": "^1.4.3" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "requires": { - "ms": "^2.1.1" - } - }, - "faye-websocket": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", - "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", - "requires": { - "websocket-driver": ">=0.5.1" - } - } - } - }, - "sort-keys": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", - "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", - "requires": { - "is-plain-obj": "^1.0.0" - }, - "dependencies": { - "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==" - } - } - }, - "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==" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "source-map-resolve": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", - "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", - "requires": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "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==", - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "source-map-url": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", - "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==" - }, - "sourcemap-codec": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", - "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" - }, - "spdx-correct": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", - "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", - "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "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==" - }, - "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==", - "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-license-ids": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz", - "integrity": "sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==" - }, - "spdy": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", - "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", - "requires": { - "debug": "^4.1.0", - "handle-thing": "^2.0.0", - "http-deceiver": "^1.2.7", - "select-hose": "^2.0.0", - "spdy-transport": "^3.0.0" - } - }, - "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==", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "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==", + "dev": true, "requires": { - "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" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "split-on-first": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz", - "integrity": "sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==" - }, - "split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "requires": { - "extend-shallow": "^3.0.0" - } - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - }, - "sshpk": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", - "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", - "requires": { - "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" - } - }, - "ssri": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-7.1.1.tgz", - "integrity": "sha512-w+daCzXN89PseTL99MkA+fxJEcU3wfaE/ah0i0lnOlpG1CYLJ2ZjzEry68YBKfLs4JfoTShrTEsJkAZuNZ/stw==", - "requires": { - "figgy-pudding": "^3.5.1", - "minipass": "^3.1.1" - } - }, - "stable": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" - }, - "stack-generator": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/stack-generator/-/stack-generator-2.0.10.tgz", - "integrity": "sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==", - "requires": { - "stackframe": "^1.3.4" - } - }, - "stack-utils": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.5.tgz", - "integrity": "sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ==", - "requires": { - "escape-string-regexp": "^2.0.0" - }, - "dependencies": { - "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==" - } - } - }, - "stackframe": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", - "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" - }, - "stacktrace-gps": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/stacktrace-gps/-/stacktrace-gps-3.1.2.tgz", - "integrity": "sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==", - "requires": { - "source-map": "0.5.6", - "stackframe": "^1.3.4" - }, - "dependencies": { - "source-map": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", - "integrity": "sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==" - } - } - }, - "stacktrace-js": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stacktrace-js/-/stacktrace-js-2.0.2.tgz", - "integrity": "sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==", - "requires": { - "error-stack-parser": "^2.0.6", - "stack-generator": "^2.0.5", - "stacktrace-gps": "^3.0.4" - } - }, - "static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", - "requires": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" - }, - "stdout-stream": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz", - "integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==", - "requires": { - "readable-stream": "^2.0.1" - } - }, - "stealthy-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", - "integrity": "sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==" - }, - "stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", - "requires": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - } - }, - "stream-each": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", - "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", - "requires": { - "end-of-stream": "^1.1.0", - "stream-shift": "^1.0.0" - } - }, - "stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", - "requires": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.3.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" - } - }, - "stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" - }, - "strict-uri-encode": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz", - "integrity": "sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==" - }, - "string-length": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz", - "integrity": "sha512-Qka42GGrS8Mm3SZ+7cH8UXiIWI867/b/Z/feQSpQx/rbfB8UGknGEZVaUQMOUVj+soY6NpWAxily63HI1OckVQ==", - "requires": { - "astral-regex": "^1.0.0", - "strip-ansi": "^4.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", - "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==" - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", - "requires": { - "ansi-regex": "^3.0.0" - } - } - } - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" + "internal-slot": "^1.0.4" } }, "string.prototype.matchall": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz", - "integrity": "sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", + "dev": true, "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1", - "get-intrinsic": "^1.1.1", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", "has-symbols": "^1.0.3", "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.1", + "regexp.prototype.flags": "^1.4.3", "side-channel": "^1.0.4" } }, "string.prototype.trimend": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz", - "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" + "es-abstract": "^1.20.4" } }, "string.prototype.trimstart": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz", - "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" - } - }, - "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==", - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "stringify-object": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", - "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", - "requires": { - "get-own-enumerable-property-symbols": "^3.0.0", - "is-obj": "^1.0.1", - "is-regexp": "^1.0.0" - }, - "dependencies": { - "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==" - } - } - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "requires": { - "ansi-regex": "^4.1.0" + "es-abstract": "^1.20.4" } }, "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==" - }, - "strip-comments": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz", - "integrity": "sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==", - "requires": { - "babel-extract-comments": "^1.0.0", - "babel-plugin-transform-object-rest-spread": "^6.26.0" - } - }, - "strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==" - }, - "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==", - "requires": { - "min-indent": "^1.0.0" - } - }, - "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==" - }, - "style-loader": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.23.1.tgz", - "integrity": "sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg==", - "requires": { - "loader-utils": "^1.1.0", - "schema-utils": "^1.0.0" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - } - } - }, - "styled-components": { - "version": "5.3.6", - "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-5.3.6.tgz", - "integrity": "sha512-hGTZquGAaTqhGWldX7hhfzjnIYBZ0IXQXkCYdvF1Sq3DsUaLx6+NTHC5Jj1ooM2F68sBiVz3lvhfwQs/S3l6qg==", - "requires": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/traverse": "^7.4.5", - "@emotion/is-prop-valid": "^1.1.0", - "@emotion/stylis": "^0.8.4", - "@emotion/unitless": "^0.7.4", - "babel-plugin-styled-components": ">= 1.12.0", - "css-to-react-native": "^3.0.0", - "hoist-non-react-statics": "^3.0.0", - "shallowequal": "^1.1.0", - "supports-color": "^5.5.0" - } - }, - "stylehacks": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", - "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", - "requires": { - "browserslist": "^4.0.0", - "postcss": "^7.0.0", - "postcss-selector-parser": "^3.0.0" - }, - "dependencies": { - "postcss-selector-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", - "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", - "requires": { - "dot-prop": "^5.2.0", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - } - } - }, - "stylis": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.1.2.tgz", - "integrity": "sha512-Nn2CCrG2ZaFziDxaZPN43CXqn+j7tcdjPFCkRBkFue8QYXC2HdEwnw5TCBo4yQZ2WxKYeSi0fdoOrtEqgDrXbA==" - }, - "stylis-rtlcss": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/stylis-rtlcss/-/stylis-rtlcss-2.1.1.tgz", - "integrity": "sha512-xkX24OO/U0hLGW9m2SUpz3yPDQBX+ltV0mkQLfj3SwcCzm3NZe5spONHpZU2uTQ01MuDQzfOx/5GQWZ6APjmHw==", - "requires": { - "rtlcss": "^2.6.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true }, "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==" - }, - "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==" - }, - "svgo": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", - "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", - "requires": { - "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" - }, - "dependencies": { - "util.promisify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", - "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.2", - "has-symbols": "^1.0.1", - "object.getownpropertydescriptors": "^2.1.0" - } - } - } - }, - "symbol-observable": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", - "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==" - }, - "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==" - }, - "synchronous-promise": { - "version": "2.0.16", - "resolved": "https://registry.npmjs.org/synchronous-promise/-/synchronous-promise-2.0.16.tgz", - "integrity": "sha512-qImOD23aDfnIDNqlG1NOehdB9IYsn1V9oByPjKY1nakv2MQYCEMyX033/q+aEtYCpmYK1cv2+NTmlH+ra6GA5A==" - }, - "table": { - "version": "5.4.6", - "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", - "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", - "requires": { - "ajv": "^6.10.2", - "lodash": "^4.17.14", - "slice-ansi": "^2.1.0", - "string-width": "^3.0.0" - } - }, - "tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" - }, - "tar": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz", - "integrity": "sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==", - "requires": { - "block-stream": "*", - "fstream": "^1.0.12", - "inherits": "2" - } - }, - "terser": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", - "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", - "requires": { - "commander": "^2.20.0", - "source-map": "~0.6.1", - "source-map-support": "~0.5.12" - } - }, - "terser-webpack-plugin": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-2.3.8.tgz", - "integrity": "sha512-/fKw3R+hWyHfYx7Bv6oPqmk4HGQcrWLtV3X6ggvPuwPNHSnzvVV51z6OaaCOus4YLjutYGOz3pEpbhe6Up2s1w==", - "requires": { - "cacache": "^13.0.1", - "find-cache-dir": "^3.3.1", - "jest-worker": "^25.4.0", - "p-limit": "^2.3.0", - "schema-utils": "^2.6.6", - "serialize-javascript": "^4.0.0", - "source-map": "^0.6.1", - "terser": "^4.6.12", - "webpack-sources": "^1.4.3" - }, - "dependencies": { - "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==", - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "jest-worker": { - "version": "25.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-25.5.0.tgz", - "integrity": "sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw==", - "requires": { - "merge-stream": "^2.0.0", - "supports-color": "^7.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "requires": { - "p-locate": "^4.1.0" - } - }, - "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==", - "requires": { - "semver": "^6.0.0" - } - }, - "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==", - "requires": { - "p-limit": "^2.2.0" - } - }, - "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==" - }, - "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==", - "requires": { - "find-up": "^4.0.0" - } - }, - "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==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "test-exclude": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz", - "integrity": "sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==", - "requires": { - "glob": "^7.1.3", - "minimatch": "^3.0.4", - "read-pkg-up": "^4.0.0", - "require-main-filename": "^2.0.0" - } - }, - "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==" - }, - "throat": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", - "integrity": "sha512-wCVxLDcFxw7ujDxaeJC6nfl2XfHJNYs8yUYJnvMgtPEFlttP9tHSfRUv2vBe6C4hkVFPWoP1P6ZccbYjmSEkKA==" - }, - "throttle-debounce": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-2.3.0.tgz", - "integrity": "sha512-H7oLPV0P7+jgvrk+6mwwwBDmxTaxnu9HMXmloNLXwnNO0ZxZ31Orah2n8lU1eMPvsaowP2CX+USCgyovXfdOFQ==" - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" - }, - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "thunky": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", - "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" - }, - "timers-browserify": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", - "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", - "requires": { - "setimmediate": "^1.0.4" - } - }, - "timsort": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", - "integrity": "sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==" - }, - "tiny-invariant": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", - "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==" - }, - "tiny-warning": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", - "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" - }, - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "requires": { - "os-tmpdir": "~1.0.2" - } - }, - "tmpl": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" - }, - "to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==" - }, - "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==" - }, - "to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "requires": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - } + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true }, "to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, "requires": { "is-number": "^7.0.0" } }, - "toggle-selection": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", - "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==" - }, - "toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" - }, - "toposort": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz", - "integrity": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==" - }, - "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==", + "tsconfig-paths": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", + "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", + "dev": true, "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" } }, - "tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", - "requires": { - "punycode": "^2.1.0" - } - }, - "trim-newlines": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", - "integrity": "sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==" - }, - "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==", - "requires": { - "glob": "^7.1.2" - } - }, - "ts-easing": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/ts-easing/-/ts-easing-0.2.0.tgz", - "integrity": "sha512-Z86EW+fFFh/IFB1fqQ3/+7Zpf9t2ebOAxNI/V6Wo7r5gqiqtxmgTlQ1qbqQcjLKYeSHPTsEmvlJUDg/EuL0uHQ==" - }, - "ts-pnp": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.1.6.tgz", - "integrity": "sha512-CrG5GqAAzMT7144Cl+UIFP7mz/iIhiy+xQ6GGcnjTezhALT02uPMRw7tgDSESgB5MsfKt55+GPWw4ir1kVtMIQ==" - }, - "ts-toolbelt": { - "version": "6.15.5", - "resolved": "https://registry.npmjs.org/ts-toolbelt/-/ts-toolbelt-6.15.5.tgz", - "integrity": "sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==" - }, "tslib": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz", - "integrity": "sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==" + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true }, "tsutils": { "version": "3.21.0", "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, "requires": { "tslib": "^1.8.1" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } } }, - "tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==" - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "turbo": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/turbo/-/turbo-1.7.2.tgz", + "integrity": "sha512-YR/x3GZEx0C1RV6Yvuw/HB1Ixx3upM6ZTTa4WqKz9WtLWN8u2g+u2h5KpG5YtjCS3wl/8zVXgHf2WiMK6KIghg==", + "dev": true, "requires": { - "safe-buffer": "^5.0.1" + "turbo-darwin-64": "1.7.2", + "turbo-darwin-arm64": "1.7.2", + "turbo-linux-64": "1.7.2", + "turbo-linux-arm64": "1.7.2", + "turbo-windows-64": "1.7.2", + "turbo-windows-arm64": "1.7.2" } }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" + "turbo-darwin-64": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/turbo-darwin-64/-/turbo-darwin-64-1.7.2.tgz", + "integrity": "sha512-Sml3WR8MSu80W+gS8SnoKNImcDOlIX7zlvezzds65mW11yGniIFfZ18aKWGOm92Nj2SvXCQ2+UmyGghbFaHNmQ==", + "dev": true, + "optional": true }, - "type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + "turbo-darwin-arm64": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/turbo-darwin-arm64/-/turbo-darwin-arm64-1.7.2.tgz", + "integrity": "sha512-JnlgGLScboUJGJxvmSsF+5xkImEDTMPg2FHzX4n8AMB9az9ZlPQAMtc+xu4p6Xp9eaykKiV2RG81YS3H0fxDLA==", + "dev": true, + "optional": true }, - "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==", + "turbo-linux-64": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/turbo-linux-64/-/turbo-linux-64-1.7.2.tgz", + "integrity": "sha512-vbLJw6ovG+lpiPqxniscBjljKJ2jbsHuKp8uK4j/wqgp68wAVKeAZW77GGDAUgDb88XH6Kvhh2hcizL+iWduww==", + "dev": true, + "optional": true + }, + "turbo-linux-arm64": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/turbo-linux-arm64/-/turbo-linux-arm64-1.7.2.tgz", + "integrity": "sha512-zLnuS8WdHonKL74KqOopOH/leBOWumlVGF8/8hldbDPq0mwY+6myRR5/5LdveB51rkG4UJh/sQ94xV67tjBoyw==", + "dev": true, + "optional": true + }, + "turbo-windows-64": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/turbo-windows-64/-/turbo-windows-64-1.7.2.tgz", + "integrity": "sha512-oE5PMoXjmR09okvVzteFb6FjA6yo+nMsacsgKH2yLNq4sOrVo9tG98JkRurOv5+L6ZQ3yGXPxWHiqeH7hLkAVQ==", + "dev": true, + "optional": true + }, + "turbo-windows-arm64": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/turbo-windows-arm64/-/turbo-windows-arm64-1.7.2.tgz", + "integrity": "sha512-mdTUJk23acRv5qxA/yEstYhM1VFenVE3FDrssxGRFq7S80smtCGK1xUd4BEDDzDlVXOqBohmM5jRh9516rcjPQ==", + "dev": true, + "optional": true + }, + "typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dev": true, "requires": { - "prelude-ls": "~1.1.2" + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" } }, - "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==" - }, - "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - } - }, - "typed-styles": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/typed-styles/-/typed-styles-0.0.7.tgz", - "integrity": "sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q==" - }, - "typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" - }, - "typescript": { - "version": "4.8.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz", - "integrity": "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==" - }, "unbox-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, "requires": { "call-bind": "^1.0.2", "has-bigints": "^1.0.2", @@ -16258,1187 +1604,11 @@ "which-boxed-primitive": "^1.0.2" } }, - "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==" - }, - "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==", - "requires": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - } - }, - "unicode-match-property-value-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", - "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==" - }, - "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==" - }, - "union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "requires": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - } - }, - "uniq": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==" - }, - "uniqs": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", - "integrity": "sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ==" - }, - "unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "requires": { - "unique-slug": "^2.0.0" - } - }, - "unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", - "requires": { - "imurmurhash": "^0.1.4" - } - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - }, - "unload": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/unload/-/unload-2.2.0.tgz", - "integrity": "sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA==", - "requires": { - "@babel/runtime": "^7.6.2", - "detect-node": "^2.0.4" - } - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" - }, - "unquote": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", - "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" - }, - "unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", - "requires": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", - "requires": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==" - } - } - }, - "upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" - }, - "update-browserslist-db": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.9.tgz", - "integrity": "sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==", - "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - } - }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "requires": { - "punycode": "^2.1.0" - } - }, - "urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==" - }, - "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", - "requires": { - "punycode": "1.3.2", - "querystring": "0.2.0" - }, - "dependencies": { - "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==" - }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==" - } - } - }, - "url-loader": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-2.3.0.tgz", - "integrity": "sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog==", - "requires": { - "loader-utils": "^1.2.3", - "mime": "^2.4.4", - "schema-utils": "^2.5.0" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - } - } - }, - "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==", - "requires": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, - "use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" - }, - "util": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", - "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", - "requires": { - "inherits": "2.0.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" - } - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "util.promisify": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.1.1.tgz", - "integrity": "sha512-/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw==", - "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "for-each": "^0.3.3", - "has-symbols": "^1.0.1", - "object.getownpropertydescriptors": "^2.1.1" - } - }, - "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==" - }, - "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==" - }, - "uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" - }, - "v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" - }, - "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==", - "requires": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "value-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", - "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" - }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" - }, - "vendors": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", - "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==" - }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", - "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "vm-browserify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" - }, - "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==", - "requires": { - "browser-process-hrtime": "^1.0.0" - } - }, - "w3c-xmlserializer": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz", - "integrity": "sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg==", - "requires": { - "domexception": "^1.0.1", - "webidl-conversions": "^4.0.2", - "xml-name-validator": "^3.0.0" - } - }, - "wait-for-expect": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/wait-for-expect/-/wait-for-expect-3.0.2.tgz", - "integrity": "sha512-cfS1+DZxuav1aBYbaO/kE06EOS8yRw7qOFoD3XtjTkYvCvh3zUvNST8DXK/nPaeqIzIv3P3kL3lRJn8iwOiSag==" - }, - "walker": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", - "requires": { - "makeerror": "1.0.12" - } - }, - "warning": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "requires": { - "loose-envify": "^1.0.0" - } - }, - "watchpack": { - "version": "1.7.5", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", - "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", - "requires": { - "chokidar": "^3.4.1", - "graceful-fs": "^4.1.2", - "neo-async": "^2.5.0", - "watchpack-chokidar2": "^2.0.1" - } - }, - "watchpack-chokidar2": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", - "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", - "optional": true, - "requires": { - "chokidar": "^2.1.8" - }, - "dependencies": { - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "optional": true - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "optional": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - } - }, - "chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "optional": true, - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "optional": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "optional": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", - "optional": true, - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "optional": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", - "optional": true, - "requires": { - "binary-extensions": "^1.0.0" - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "optional": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "optional": true, - "requires": { - "is-buffer": "^1.1.5" - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "optional": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "optional": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "optional": true, - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "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==", - "optional": true - } - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "optional": true - }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "optional": true, - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "optional": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - } - } - }, - "wbuf": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", - "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", - "requires": { - "minimalistic-assert": "^1.0.0" - } - }, - "web-vitals": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-2.1.4.tgz", - "integrity": "sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg==" - }, - "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==" - }, - "webpack": { - "version": "4.42.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.42.0.tgz", - "integrity": "sha512-EzJRHvwQyBiYrYqhyjW9AqM90dE4+s1/XtCfn7uWg6cS72zH+2VPFAlsnW0+W0cDi0XRjNKUMoJtpSi50+Ph6w==", - "requires": { - "@webassemblyjs/ast": "1.8.5", - "@webassemblyjs/helper-module-context": "1.8.5", - "@webassemblyjs/wasm-edit": "1.8.5", - "@webassemblyjs/wasm-parser": "1.8.5", - "acorn": "^6.2.1", - "ajv": "^6.10.2", - "ajv-keywords": "^3.4.1", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^4.1.0", - "eslint-scope": "^4.0.3", - "json-parse-better-errors": "^1.0.2", - "loader-runner": "^2.4.0", - "loader-utils": "^1.2.3", - "memory-fs": "^0.4.1", - "micromatch": "^3.1.10", - "mkdirp": "^0.5.1", - "neo-async": "^2.6.1", - "node-libs-browser": "^2.2.1", - "schema-utils": "^1.0.0", - "tapable": "^1.1.3", - "terser-webpack-plugin": "^1.4.3", - "watchpack": "^1.6.0", - "webpack-sources": "^1.4.1" - }, - "dependencies": { - "acorn": { - "version": "6.4.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", - "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==" - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "cacache": { - "version": "12.0.4", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", - "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", - "requires": { - "bluebird": "^3.5.5", - "chownr": "^1.1.1", - "figgy-pudding": "^3.5.1", - "glob": "^7.1.4", - "graceful-fs": "^4.1.15", - "infer-owner": "^1.0.3", - "lru-cache": "^5.1.1", - "mississippi": "^3.0.0", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "promise-inflight": "^1.0.1", - "rimraf": "^2.6.3", - "ssri": "^6.0.1", - "unique-filename": "^1.1.1", - "y18n": "^4.0.0" - } - }, - "eslint-scope": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", - "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", - "requires": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "requires": { - "minimist": "^1.2.0" - } - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "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==", - "requires": { - "yallist": "^3.0.2" - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - }, - "ssri": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", - "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", - "requires": { - "figgy-pudding": "^3.5.1" - } - }, - "terser-webpack-plugin": { - "version": "1.4.5", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", - "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", - "requires": { - "cacache": "^12.0.2", - "find-cache-dir": "^2.1.0", - "is-wsl": "^1.1.0", - "schema-utils": "^1.0.0", - "serialize-javascript": "^4.0.0", - "source-map": "^0.6.1", - "terser": "^4.1.2", - "webpack-sources": "^1.4.0", - "worker-farm": "^1.7.0" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - } - }, - "webpack-dev-middleware": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", - "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", - "requires": { - "memory-fs": "^0.4.1", - "mime": "^2.4.4", - "mkdirp": "^0.5.1", - "range-parser": "^1.2.1", - "webpack-log": "^2.0.0" - } - }, - "webpack-dev-server": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.0.tgz", - "integrity": "sha512-PUxZ+oSTxogFQgkTtFndEtJIPNmml7ExwufBZ9L2/Xyyd5PnOL5UreWe5ZT7IU25DSdykL9p1MLQzmLh2ljSeg==", - "requires": { - "ansi-html": "0.0.7", - "bonjour": "^3.5.0", - "chokidar": "^2.1.8", - "compression": "^1.7.4", - "connect-history-api-fallback": "^1.6.0", - "debug": "^4.1.1", - "del": "^4.1.1", - "express": "^4.17.1", - "html-entities": "^1.3.1", - "http-proxy-middleware": "0.19.1", - "import-local": "^2.0.0", - "internal-ip": "^4.3.0", - "ip": "^1.1.5", - "is-absolute-url": "^3.0.3", - "killable": "^1.0.1", - "loglevel": "^1.6.8", - "opn": "^5.5.0", - "p-retry": "^3.0.1", - "portfinder": "^1.0.26", - "schema-utils": "^1.0.0", - "selfsigned": "^1.10.7", - "semver": "^6.3.0", - "serve-index": "^1.9.1", - "sockjs": "0.3.20", - "sockjs-client": "1.4.0", - "spdy": "^4.0.2", - "strip-ansi": "^3.0.1", - "supports-color": "^6.1.0", - "url": "^0.11.0", - "webpack-dev-middleware": "^3.7.2", - "webpack-log": "^2.0.0", - "ws": "^6.2.1", - "yargs": "^13.3.2" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==" - }, - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - } - }, - "chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "requires": { - "is-extendable": "^0.1.0" - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "http-proxy-middleware": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", - "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", - "requires": { - "http-proxy": "^1.17.0", - "is-glob": "^4.0.0", - "lodash": "^4.17.11", - "micromatch": "^3.1.10" - } - }, - "is-absolute-url": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", - "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==" - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", - "requires": { - "binary-extensions": "^1.0.0" - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "requires": { - "kind-of": "^3.0.2" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "requires": { - "is-buffer": "^1.1.5" - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "dependencies": { - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - } - }, - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "requires": { - "is-plain-object": "^2.0.4" - } - }, - "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==" - } - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - } - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - }, - "ws": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", - "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", - "requires": { - "async-limiter": "~1.0.0" - } - } - } - }, - "webpack-log": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", - "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", - "requires": { - "ansi-colors": "^3.0.0", - "uuid": "^3.3.2" - } - }, - "webpack-manifest-plugin": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz", - "integrity": "sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==", - "requires": { - "fs-extra": "^7.0.0", - "lodash": ">=3.5 <5", - "object.entries": "^1.1.0", - "tapable": "^1.0.0" - }, - "dependencies": { - "fs-extra": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", - "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - } - } - }, - "webpack-merge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.2.tgz", - "integrity": "sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==", - "requires": { - "lodash": "^4.17.15" - } - }, - "webpack-sources": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", - "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", - "requires": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" - } - }, - "websocket-driver": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.6.5.tgz", - "integrity": "sha512-oBx6ZM1Gs5q2jwZuSN/Qxyy/fbgomV8+vqsmipaPKB/74hjHlKuM07jNmRhn4qa2AdUwsgxrltq+gaPsHgcl0Q==", - "requires": { - "websocket-extensions": ">=0.1.1" - } - }, - "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==" - }, - "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==", - "requires": { - "iconv-lite": "0.4.24" - } - }, - "whatwg-fetch": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", - "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" - }, - "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==" - }, - "whatwg-url": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz", - "integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==", - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "requires": { - "isexe": "^2.0.0" - } - }, "which-boxed-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, "requires": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", @@ -17447,324 +1617,43 @@ "is-symbol": "^1.0.3" } }, - "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==" - }, - "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==", + "which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dev": true, "requires": { - "string-width": "^1.0.2 || 2 || 3 || 4" + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" } }, - "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" - }, - "workbox-background-sync": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-4.3.1.tgz", - "integrity": "sha512-1uFkvU8JXi7L7fCHVBEEnc3asPpiAL33kO495UMcD5+arew9IbKW2rV5lpzhoWcm/qhGB89YfO4PmB/0hQwPRg==", + "which-typed-array": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "dev": true, "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-broadcast-update": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-4.3.1.tgz", - "integrity": "sha512-MTSfgzIljpKLTBPROo4IpKjESD86pPFlZwlvVG32Kb70hW+aob4Jxpblud8EhNb1/L5m43DUM4q7C+W6eQMMbA==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-build": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-4.3.1.tgz", - "integrity": "sha512-UHdwrN3FrDvicM3AqJS/J07X0KXj67R8Cg0waq1MKEOqzo89ap6zh6LmaLnRAjpB+bDIz+7OlPye9iii9KBnxw==", - "requires": { - "@babel/runtime": "^7.3.4", - "@hapi/joi": "^15.0.0", - "common-tags": "^1.8.0", - "fs-extra": "^4.0.2", - "glob": "^7.1.3", - "lodash.template": "^4.4.0", - "pretty-bytes": "^5.1.0", - "stringify-object": "^3.3.0", - "strip-comments": "^1.0.2", - "workbox-background-sync": "^4.3.1", - "workbox-broadcast-update": "^4.3.1", - "workbox-cacheable-response": "^4.3.1", - "workbox-core": "^4.3.1", - "workbox-expiration": "^4.3.1", - "workbox-google-analytics": "^4.3.1", - "workbox-navigation-preload": "^4.3.1", - "workbox-precaching": "^4.3.1", - "workbox-range-requests": "^4.3.1", - "workbox-routing": "^4.3.1", - "workbox-strategies": "^4.3.1", - "workbox-streams": "^4.3.1", - "workbox-sw": "^4.3.1", - "workbox-window": "^4.3.1" - }, - "dependencies": { - "fs-extra": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", - "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - } - } - }, - "workbox-cacheable-response": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-4.3.1.tgz", - "integrity": "sha512-Rp5qlzm6z8IOvnQNkCdO9qrDgDpoPNguovs0H8C+wswLuPgSzSp9p2afb5maUt9R1uTIwOXrVQMmPfPypv+npw==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-core": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-4.3.1.tgz", - "integrity": "sha512-I3C9jlLmMKPxAC1t0ExCq+QoAMd0vAAHULEgRZ7kieCdUd919n53WC0AfvokHNwqRhGn+tIIj7vcb5duCjs2Kg==" - }, - "workbox-expiration": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-4.3.1.tgz", - "integrity": "sha512-vsJLhgQsQouv9m0rpbXubT5jw0jMQdjpkum0uT+d9tTwhXcEZks7qLfQ9dGSaufTD2eimxbUOJfWLbNQpIDMPw==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-google-analytics": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-4.3.1.tgz", - "integrity": "sha512-xzCjAoKuOb55CBSwQrbyWBKqp35yg1vw9ohIlU2wTy06ZrYfJ8rKochb1MSGlnoBfXGWss3UPzxR5QL5guIFdg==", - "requires": { - "workbox-background-sync": "^4.3.1", - "workbox-core": "^4.3.1", - "workbox-routing": "^4.3.1", - "workbox-strategies": "^4.3.1" - } - }, - "workbox-navigation-preload": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-4.3.1.tgz", - "integrity": "sha512-K076n3oFHYp16/C+F8CwrRqD25GitA6Rkd6+qAmLmMv1QHPI2jfDwYqrytOfKfYq42bYtW8Pr21ejZX7GvALOw==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-precaching": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-4.3.1.tgz", - "integrity": "sha512-piSg/2csPoIi/vPpp48t1q5JLYjMkmg5gsXBQkh/QYapCdVwwmKlU9mHdmy52KsDGIjVaqEUMFvEzn2LRaigqQ==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-range-requests": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-4.3.1.tgz", - "integrity": "sha512-S+HhL9+iTFypJZ/yQSl/x2Bf5pWnbXdd3j57xnb0V60FW1LVn9LRZkPtneODklzYuFZv7qK6riZ5BNyc0R0jZA==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-routing": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-4.3.1.tgz", - "integrity": "sha512-FkbtrODA4Imsi0p7TW9u9MXuQ5P4pVs1sWHK4dJMMChVROsbEltuE79fBoIk/BCztvOJ7yUpErMKa4z3uQLX+g==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-strategies": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-4.3.1.tgz", - "integrity": "sha512-F/+E57BmVG8dX6dCCopBlkDvvhg/zj6VDs0PigYwSN23L8hseSRwljrceU2WzTvk/+BSYICsWmRq5qHS2UYzhw==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-streams": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-4.3.1.tgz", - "integrity": "sha512-4Kisis1f/y0ihf4l3u/+ndMkJkIT4/6UOacU3A4BwZSAC9pQ9vSvJpIi/WFGQRH/uPXvuVjF5c2RfIPQFSS2uA==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "workbox-sw": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-4.3.1.tgz", - "integrity": "sha512-0jXdusCL2uC5gM3yYFT6QMBzKfBr2XTk0g5TPAV4y8IZDyVNDyj1a8uSXy3/XrvkVTmQvLN4O5k3JawGReXr9w==" - }, - "workbox-webpack-plugin": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-4.3.1.tgz", - "integrity": "sha512-gJ9jd8Mb8wHLbRz9ZvGN57IAmknOipD3W4XNE/Lk/4lqs5Htw4WOQgakQy/o/4CoXQlMCYldaqUg+EJ35l9MEQ==", - "requires": { - "@babel/runtime": "^7.0.0", - "json-stable-stringify": "^1.0.1", - "workbox-build": "^4.3.1" - } - }, - "workbox-window": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-4.3.1.tgz", - "integrity": "sha512-C5gWKh6I58w3GeSc0wp2Ne+rqVw8qwcmZnQGpjiek8A2wpbxSJb1FdCoQVO+jDJs35bFgo/WETgl1fqgsxN0Hg==", - "requires": { - "workbox-core": "^4.3.1" - } - }, - "worker-farm": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", - "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", - "requires": { - "errno": "~0.1.7" - } - }, - "worker-rpc": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz", - "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==", - "requires": { - "microevent.ts": "~0.1.1" - } - }, - "wrap-ansi": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", - "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", - "requires": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.10" } }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - }, - "write": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", - "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", - "requires": { - "mkdirp": "^0.5.1" - } - }, - "write-file-atomic": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", - "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", - "requires": { - "graceful-fs": "^4.1.11", - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.2" - } - }, - "ws": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.3.tgz", - "integrity": "sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA==", - "requires": { - "async-limiter": "~1.0.0" - } - }, - "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==" - }, - "xmlchars": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" - }, - "xregexp": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-4.4.1.tgz", - "integrity": "sha512-2u9HwfadaJaY9zHtRRnH6BY6CQVNQKkYm3oLtC9gJXXzfsbACg5X5e4EZZGVAH+YIfa+QA9lsFQTTe3HURF3ag==", - "requires": { - "@babel/runtime-corejs3": "^7.12.1" - } - }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" - }, - "y18n": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true }, "yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" - }, - "yargs": { - "version": "13.3.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", - "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", - "requires": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" - } - }, - "yargs-parser": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", - "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - }, - "yup": { - "version": "0.28.5", - "resolved": "https://registry.npmjs.org/yup/-/yup-0.28.5.tgz", - "integrity": "sha512-7JZcvpUGUxMKoaEtcoMEM8lCWRaueGNH/A3EhL/UWqfbFm3uloiI+x59Yq4nzhbbYWUTwAsCteaZOJ+VbqI1uw==", - "requires": { - "@babel/runtime": "^7.9.6", - "fn-name": "~3.0.0", - "lodash": "^4.17.15", - "lodash-es": "^4.17.11", - "property-expr": "^2.0.2", - "synchronous-promise": "^2.0.10", - "toposort": "^2.0.2" - } - }, - "zoom-level": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/zoom-level/-/zoom-level-2.5.0.tgz", - "integrity": "sha512-7UlRWU4Q3uCMCeDVMOm7eBrIu145OqsIJ3p6zq58l8UsSYwKWxc6zEapC5YA9tIeh0oheb4cT9Kk2Wq353loFg==" + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true } } } diff --git a/package.json b/package.json index bac415ea3..045ef056c 100644 --- a/package.json +++ b/package.json @@ -1,128 +1,25 @@ { - "name": "bigcapital-client", - "version": "1.7.1", + "name": "client", + "version": "0.0.0", "private": true, - "dependencies": { - "@blueprintjs-formik/core": "^0.2.1", - "@blueprintjs-formik/datetime": "^0.3.4", - "@blueprintjs-formik/select": "^0.1.4", - "@blueprintjs/core": "^3.50.2", - "@blueprintjs/datetime": "^3.23.12", - "@blueprintjs/popover2": "^0.11.1", - "@blueprintjs/select": "^3.11.2", - "@blueprintjs/table": "^3.8.3", - "@blueprintjs/timezone": "^3.6.2", - "@casl/ability": "^5.4.3", - "@casl/react": "^2.3.0", - "@craco/craco": "^5.9.0", - "@reduxjs/toolkit": "^1.2.5", - "@sentry/react": "^6.13.2", - "@sentry/tracing": "^6.13.2", - "@testing-library/jest-dom": "^4.2.4", - "@testing-library/react": "^9.4.0", - "@testing-library/user-event": "^7.2.1", - "@types/jest": "^26.0.15", - "@types/js-money": "^0.6.1", - "@types/lodash": "^4.14.172", - "@types/node": "^14.14.9", - "@types/ramda": "^0.28.14", - "@types/react": "^16.14.28", - "@types/react-body-classname": "^1.1.7", - "@types/react-redux": "^7.1.24", - "@types/react-router-dom": "^5.3.3", - "@types/react-transition-group": "^4.4.5", - "@types/styled-components": "^5.1.25", - "@types/yup": "^0.29.13", - "@typescript-eslint/eslint-plugin": "^2.10.0", - "@typescript-eslint/parser": "^2.10.0", - "@welldone-software/why-did-you-render": "^6.0.0-rc.1", - "accounting": "^0.4.1", - "axios": "^0.21.2", - "basscss": "^8.0.2", - "camelcase": "^5.3.1", - "cross-env": "^7.0.2", - "deep-map-keys": "^2.0.1", - "deepdash": "^5.3.9", - "dependency-graph": "^0.11.0", - "fast-deep-equal": "^3.1.3", - "formik": "^2.2.5", - "http-proxy-middleware": "^1.0.0", - "jest": "24.9.0", - "jest-environment-jsdom-fourteen": "1.0.1", - "jest-resolve": "24.9.0", - "jest-watch-typeahead": "0.4.2", - "js-money": "^0.6.3", - "lodash": "^4.17.15", - "moment": "^2.24.0", - "moment-timezone": "^0.5.33", - "node-sass": "^4.14.1", - "path-browserify": "^1.0.1", - "query-string": "^7.1.1", - "ramda": "^0.27.1", - "react": "^16.14.0", - "react-app-polyfill": "^1.0.6", - "react-body-classname": "^1.3.1", - "react-content-loader": "^6.0.1", - "react-dev-utils": "^11.0.4", - "react-dom": "^16.12.0", - "react-dropzone": "^11.0.1", - "react-error-boundary": "^3.0.2", - "react-hotkeys-hook": "^3.0.3", - "react-intl-universal": "^2.4.7", - "react-loadable": "^5.5.0", - "react-query": "^3.6.0", - "react-query-devtools": "^2.1.1", - "react-redux": "^7.1.3", - "react-router-breadcrumbs-hoc": "^3.2.10", - "react-router-dom": "^5.3.3", - "react-scripts": "^3.4.4", - "react-scroll-sync": "^0.7.1", - "react-scrollbars-custom": "^4.0.21", - "react-sortablejs": "^2.0.11", - "react-split-pane": "^0.1.91", - "react-table": "^7.6.3", - "react-table-sticky": "^1.1.3", - "react-transition-group": "^4.4.1", - "react-use": "^13.26.1", - "react-use-context-menu": "^0.1.4", - "react-virtualized": "^9.22.3", - "redux": "^4.0.5", - "redux-devtools": "^3.5.0", - "redux-persist": "^6.0.0", - "redux-thunk": "^2.3.0", - "rtl-detect": "^1.0.3", - "semver": "6.3.0", - "style-loader": "0.23.1", - "styled-components": "^5.3.1", - "stylis-rtlcss": "^2.1.1", - "typescript": "^4.8.3", - "yup": "^0.28.1" - }, + "workspaces": [ + "apps/*", + "packages/*" + ], "scripts": { - "start": "craco start", - "build": "craco build", - "test": "node scripts/test.js", - "storybook": "start-storybook -p 6006", - "preinstall": "npx npm-force-resolutions" + "build": "turbo run build", + "dev": "turbo run dev --output-logs=full", + "lint": "turbo run lint", + "format": "prettier --write \"**/*.{ts,tsx,md}\"" }, - "proxy": "http://localhost:3000/", "devDependencies": { - "@types/react-dom": "^16.9.16", - "react-error-overlay": "^6.0.9" + "eslint-config-custom": "*", + "prettier": "latest", + "turbo": "latest" }, - "resolutions": { - "react-error-overlay": "6.0.9" + "engines": { + "node": ">=14.0.0" }, - "browserslist": { - "production": [ - ">0.2%", - "not dead", - "not op_mini all" - ], - "development": [ - "last 1 chrome version", - "last 1 firefox version", - "last 1 safari version" - ] - } + "dependencies": {}, + "packageManager": "npm@6.14.15" } diff --git a/turbo.json b/turbo.json new file mode 100644 index 000000000..90bb75fd0 --- /dev/null +++ b/turbo.json @@ -0,0 +1,17 @@ +{ + "$schema": "https://turbo.build/schema.json", + "globalDependencies": ["**/.env.*local"], + "pipeline": { + "build": { + "dependsOn": ["^build"], + "outputs": ["dist/**", ".next/**"] + }, + "lint": { + "outputs": [] + }, + "dev": { + "cache": false, + "persistent": false + } + } +} diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 000000000..fb53e6606 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,14021 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@ampproject/remapping@^2.1.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" + integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== + dependencies: + "@jridgewell/gen-mapping" "^0.1.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@babel/code-frame@7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" + integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== + dependencies: + "@babel/highlight" "^7.10.4" + +"@babel/code-frame@7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" + integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== + dependencies: + "@babel/highlight" "^7.8.3" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.5.5", "@babel/code-frame@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" + integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== + dependencies: + "@babel/highlight" "^7.18.6" + +"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.1", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.9.0": + version "7.20.14" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.14.tgz#4106fc8b755f3e3ee0a0a7c27dde5de1d2b2baf8" + integrity sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw== + +"@babel/core@7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.9.0.tgz#ac977b538b77e132ff706f3b8a4dbad09c03c56e" + integrity sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w== + dependencies: + "@babel/code-frame" "^7.8.3" + "@babel/generator" "^7.9.0" + "@babel/helper-module-transforms" "^7.9.0" + "@babel/helpers" "^7.9.0" + "@babel/parser" "^7.9.0" + "@babel/template" "^7.8.6" + "@babel/traverse" "^7.9.0" + "@babel/types" "^7.9.0" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.1" + json5 "^2.1.2" + lodash "^4.17.13" + resolve "^1.3.2" + semver "^5.4.1" + source-map "^0.5.0" + +"@babel/core@^7.1.0", "@babel/core@^7.4.5": + version "7.20.12" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.12.tgz#7930db57443c6714ad216953d1356dac0eb8496d" + integrity sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg== + dependencies: + "@ampproject/remapping" "^2.1.0" + "@babel/code-frame" "^7.18.6" + "@babel/generator" "^7.20.7" + "@babel/helper-compilation-targets" "^7.20.7" + "@babel/helper-module-transforms" "^7.20.11" + "@babel/helpers" "^7.20.7" + "@babel/parser" "^7.20.7" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.20.12" + "@babel/types" "^7.20.7" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.2" + semver "^6.3.0" + +"@babel/generator@^7.20.7", "@babel/generator@^7.4.0", "@babel/generator@^7.9.0": + version "7.20.14" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.14.tgz#9fa772c9f86a46c6ac9b321039400712b96f64ce" + integrity sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg== + dependencies: + "@babel/types" "^7.20.7" + "@jridgewell/gen-mapping" "^0.3.2" + jsesc "^2.5.1" + +"@babel/helper-annotate-as-pure@^7.16.0", "@babel/helper-annotate-as-pure@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" + integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz#acd4edfd7a566d1d51ea975dff38fd52906981bb" + integrity sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw== + dependencies: + "@babel/helper-explode-assignable-expression" "^7.18.6" + "@babel/types" "^7.18.9" + +"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.0", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.8.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz#a6cd33e93629f5eb473b021aac05df62c4cd09bb" + integrity sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ== + dependencies: + "@babel/compat-data" "^7.20.5" + "@babel/helper-validator-option" "^7.18.6" + browserslist "^4.21.3" + lru-cache "^5.1.1" + semver "^6.3.0" + +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.20.12", "@babel/helper-create-class-features-plugin@^7.20.5", "@babel/helper-create-class-features-plugin@^7.20.7", "@babel/helper-create-class-features-plugin@^7.8.3": + version "7.20.12" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz#4349b928e79be05ed2d1643b20b99bb87c503819" + integrity sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.19.0" + "@babel/helper-member-expression-to-functions" "^7.20.7" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/helper-replace-supers" "^7.20.7" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + "@babel/helper-split-export-declaration" "^7.18.6" + +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.20.5": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz#5ea79b59962a09ec2acf20a963a01ab4d076ccca" + integrity sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + regexpu-core "^5.2.1" + +"@babel/helper-define-polyfill-provider@^0.3.3": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz#8612e55be5d51f0cd1f36b4a5a83924e89884b7a" + integrity sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww== + dependencies: + "@babel/helper-compilation-targets" "^7.17.7" + "@babel/helper-plugin-utils" "^7.16.7" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + semver "^6.1.2" + +"@babel/helper-environment-visitor@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be" + integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== + +"@babel/helper-explode-assignable-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz#41f8228ef0a6f1a036b8dfdfec7ce94f9a6bc096" + integrity sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0": + version "7.19.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c" + integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w== + dependencies: + "@babel/template" "^7.18.10" + "@babel/types" "^7.19.0" + +"@babel/helper-hoist-variables@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" + integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-member-expression-to-functions@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz#a6f26e919582275a93c3aa6594756d71b0bb7f05" + integrity sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw== + dependencies: + "@babel/types" "^7.20.7" + +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.16.0", "@babel/helper-module-imports@^7.18.6", "@babel/helper-module-imports@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" + integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.9.0": + version "7.20.11" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz#df4c7af713c557938c50ea3ad0117a7944b2f1b0" + integrity sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-simple-access" "^7.20.2" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/helper-validator-identifier" "^7.19.1" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.20.10" + "@babel/types" "^7.20.7" + +"@babel/helper-optimise-call-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe" + integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629" + integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ== + +"@babel/helper-remap-async-to-generator@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519" + integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-wrap-function" "^7.18.9" + "@babel/types" "^7.18.9" + +"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.20.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz#243ecd2724d2071532b2c8ad2f0f9f083bcae331" + integrity sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-member-expression-to-functions" "^7.20.7" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.20.7" + "@babel/types" "^7.20.7" + +"@babel/helper-simple-access@^7.20.2": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9" + integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA== + dependencies: + "@babel/types" "^7.20.2" + +"@babel/helper-skip-transparent-expression-wrappers@^7.20.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684" + integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg== + dependencies: + "@babel/types" "^7.20.0" + +"@babel/helper-split-export-declaration@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" + integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-string-parser@^7.19.4": + version "7.19.4" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" + integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== + +"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": + version "7.19.1" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" + integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== + +"@babel/helper-validator-option@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8" + integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== + +"@babel/helper-wrap-function@^7.18.9": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz#75e2d84d499a0ab3b31c33bcfe59d6b8a45f62e3" + integrity sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q== + dependencies: + "@babel/helper-function-name" "^7.19.0" + "@babel/template" "^7.18.10" + "@babel/traverse" "^7.20.5" + "@babel/types" "^7.20.5" + +"@babel/helpers@^7.20.7", "@babel/helpers@^7.9.0": + version "7.20.13" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.13.tgz#e3cb731fb70dc5337134cadc24cbbad31cc87ad2" + integrity sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg== + dependencies: + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.20.13" + "@babel/types" "^7.20.7" + +"@babel/highlight@^7.10.4", "@babel/highlight@^7.18.6", "@babel/highlight@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" + integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== + dependencies: + "@babel/helper-validator-identifier" "^7.18.6" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/parser@^7.1.0", "@babel/parser@^7.20.13", "@babel/parser@^7.20.7", "@babel/parser@^7.4.3", "@babel/parser@^7.7.0", "@babel/parser@^7.9.0": + version "7.20.15" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.15.tgz#eec9f36d8eaf0948bb88c87a46784b5ee9fd0c89" + integrity sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg== + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2" + integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.18.9": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz#d9c85589258539a22a901033853101a6198d4ef1" + integrity sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + "@babel/plugin-proposal-optional-chaining" "^7.20.7" + +"@babel/plugin-proposal-async-generator-functions@^7.20.1", "@babel/plugin-proposal-async-generator-functions@^7.8.3": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz#bfb7276d2d573cb67ba379984a2334e262ba5326" + integrity sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-remap-async-to-generator" "^7.18.9" + "@babel/plugin-syntax-async-generators" "^7.8.4" + +"@babel/plugin-proposal-class-properties@7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz#5e06654af5cd04b608915aada9b2a6788004464e" + integrity sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-proposal-class-properties@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" + integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-proposal-class-static-block@^7.18.6": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.20.7.tgz#92592e9029b13b15be0f7ce6a7aedc2879ca45a7" + integrity sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.20.7" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + +"@babel/plugin-proposal-decorators@7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.8.3.tgz#2156860ab65c5abf068c3f67042184041066543e" + integrity sha512-e3RvdvS4qPJVTe288DlXjwKflpfy1hr0j5dz5WpIYYeP7vQZg2WfAEIp8k5/Lwis/m5REXEteIz6rrcDtXXG7w== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-decorators" "^7.8.3" + +"@babel/plugin-proposal-dynamic-import@^7.18.6", "@babel/plugin-proposal-dynamic-import@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz#72bcf8d408799f547d759298c3c27c7e7faa4d94" + integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-proposal-export-namespace-from@^7.18.9": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203" + integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-proposal-json-strings@^7.18.6", "@babel/plugin-proposal-json-strings@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz#7e8788c1811c393aff762817e7dbf1ebd0c05f0b" + integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-proposal-logical-assignment-operators@^7.18.9": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz#dfbcaa8f7b4d37b51e8bfb46d94a5aea2bb89d83" + integrity sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-proposal-nullish-coalescing-operator@7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz#e4572253fdeed65cddeecfdab3f928afeb2fd5d2" + integrity sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + +"@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6", "@babel/plugin-proposal-nullish-coalescing-operator@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" + integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-proposal-numeric-separator@7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.8.3.tgz#5d6769409699ec9b3b68684cd8116cedff93bad8" + integrity sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.8.3" + +"@babel/plugin-proposal-numeric-separator@^7.18.6", "@babel/plugin-proposal-numeric-separator@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75" + integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-proposal-object-rest-spread@^7.20.2", "@babel/plugin-proposal-object-rest-spread@^7.9.0": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" + integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== + dependencies: + "@babel/compat-data" "^7.20.5" + "@babel/helper-compilation-targets" "^7.20.7" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.20.7" + +"@babel/plugin-proposal-optional-catch-binding@^7.18.6", "@babel/plugin-proposal-optional-catch-binding@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb" + integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-proposal-optional-chaining@7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz#31db16b154c39d6b8a645292472b98394c292a58" + integrity sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.0" + +"@babel/plugin-proposal-optional-chaining@^7.18.9", "@babel/plugin-proposal-optional-chaining@^7.20.7", "@babel/plugin-proposal-optional-chaining@^7.9.0": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz#49f2b372519ab31728cc14115bb0998b15bfda55" + integrity sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ== + 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" + +"@babel/plugin-proposal-private-methods@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea" + integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-proposal-private-property-in-object@^7.18.6": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz#309c7668f2263f1c711aa399b5a9a6291eef6135" + integrity sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-create-class-features-plugin" "^7.20.5" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + +"@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4", "@babel/plugin-proposal-unicode-property-regex@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e" + integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-syntax-async-generators@^7.8.0", "@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.12.13": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-class-static-block@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-decorators@^7.8.3": + version "7.19.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.19.0.tgz#5f13d1d8fce96951bea01a10424463c9a5b3a599" + integrity sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ== + dependencies: + "@babel/helper-plugin-utils" "^7.19.0" + +"@babel/plugin-syntax-dynamic-import@^7.8.0", "@babel/plugin-syntax-dynamic-import@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-syntax-flow@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz#774d825256f2379d06139be0c723c4dd444f3ca1" + integrity sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-syntax-import-assertions@^7.20.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz#bb50e0d4bea0957235390641209394e87bdb9cc4" + integrity sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ== + dependencies: + "@babel/helper-plugin-utils" "^7.19.0" + +"@babel/plugin-syntax-json-strings@^7.8.0", "@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-jsx@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0" + integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.0", "@babel/plugin-syntax-numeric-separator@^7.8.3": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-private-property-in-object@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.14.5", "@babel/plugin-syntax-top-level-await@^7.8.3": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-typescript@^7.20.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz#4e9a0cfc769c85689b77a2e642d24e9f697fc8c7" + integrity sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.19.0" + +"@babel/plugin-transform-arrow-functions@^7.18.6", "@babel/plugin-transform-arrow-functions@^7.8.3": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz#bea332b0e8b2dab3dafe55a163d8227531ab0551" + integrity sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-async-to-generator@^7.18.6", "@babel/plugin-transform-async-to-generator@^7.8.3": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz#dfee18623c8cb31deb796aa3ca84dda9cea94354" + integrity sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q== + dependencies: + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-remap-async-to-generator" "^7.18.9" + +"@babel/plugin-transform-block-scoped-functions@^7.18.6", "@babel/plugin-transform-block-scoped-functions@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8" + integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-block-scoping@^7.20.2", "@babel/plugin-transform-block-scoping@^7.8.3": + version "7.20.15" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.15.tgz#3e1b2aa9cbbe1eb8d644c823141a9c5c2a22392d" + integrity sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-classes@^7.20.2", "@babel/plugin-transform-classes@^7.9.0": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz#f438216f094f6bb31dc266ebfab8ff05aecad073" + integrity sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-compilation-targets" "^7.20.7" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.19.0" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-replace-supers" "^7.20.7" + "@babel/helper-split-export-declaration" "^7.18.6" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.18.9", "@babel/plugin-transform-computed-properties@^7.8.3": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz#704cc2fd155d1c996551db8276d55b9d46e4d0aa" + integrity sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/template" "^7.20.7" + +"@babel/plugin-transform-destructuring@^7.20.2", "@babel/plugin-transform-destructuring@^7.8.3": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz#8bda578f71620c7de7c93af590154ba331415454" + integrity sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4", "@babel/plugin-transform-dotall-regex@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz#b286b3e7aae6c7b861e45bed0a2fafd6b1a4fef8" + integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-duplicate-keys@^7.18.9", "@babel/plugin-transform-duplicate-keys@^7.8.3": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz#687f15ee3cdad6d85191eb2a372c4528eaa0ae0e" + integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-exponentiation-operator@^7.18.6", "@babel/plugin-transform-exponentiation-operator@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz#421c705f4521888c65e91fdd1af951bfefd4dacd" + integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-flow-strip-types@7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.9.0.tgz#8a3538aa40434e000b8f44a3c5c9ac7229bd2392" + integrity sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-flow" "^7.8.3" + +"@babel/plugin-transform-for-of@^7.18.8", "@babel/plugin-transform-for-of@^7.9.0": + version "7.18.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz#6ef8a50b244eb6a0bdbad0c7c61877e4e30097c1" + integrity sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-function-name@^7.18.9", "@babel/plugin-transform-function-name@^7.8.3": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0" + integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ== + dependencies: + "@babel/helper-compilation-targets" "^7.18.9" + "@babel/helper-function-name" "^7.18.9" + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-literals@^7.18.9", "@babel/plugin-transform-literals@^7.8.3": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc" + integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-member-expression-literals@^7.18.6", "@babel/plugin-transform-member-expression-literals@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e" + integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-modules-amd@^7.19.6", "@babel/plugin-transform-modules-amd@^7.9.0": + version "7.20.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz#3daccca8e4cc309f03c3a0c4b41dc4b26f55214a" + integrity sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g== + dependencies: + "@babel/helper-module-transforms" "^7.20.11" + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-modules-commonjs@^7.19.6", "@babel/plugin-transform-modules-commonjs@^7.9.0": + version "7.20.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz#8cb23010869bf7669fd4b3098598b6b2be6dc607" + integrity sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw== + dependencies: + "@babel/helper-module-transforms" "^7.20.11" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-simple-access" "^7.20.2" + +"@babel/plugin-transform-modules-systemjs@^7.19.6", "@babel/plugin-transform-modules-systemjs@^7.9.0": + version "7.20.11" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz#467ec6bba6b6a50634eea61c9c232654d8a4696e" + integrity sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw== + dependencies: + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-module-transforms" "^7.20.11" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-validator-identifier" "^7.19.1" + +"@babel/plugin-transform-modules-umd@^7.18.6", "@babel/plugin-transform-modules-umd@^7.9.0": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz#81d3832d6034b75b54e62821ba58f28ed0aab4b9" + integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ== + dependencies: + "@babel/helper-module-transforms" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.19.1", "@babel/plugin-transform-named-capturing-groups-regex@^7.8.3": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz#626298dd62ea51d452c3be58b285d23195ba69a8" + integrity sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.20.5" + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-new-target@^7.18.6", "@babel/plugin-transform-new-target@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz#d128f376ae200477f37c4ddfcc722a8a1b3246a8" + integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-object-super@^7.18.6", "@babel/plugin-transform-object-super@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c" + integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-replace-supers" "^7.18.6" + +"@babel/plugin-transform-parameters@^7.20.1", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.8.7": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz#0ee349e9d1bc96e78e3b37a7af423a4078a7083f" + integrity sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-property-literals@^7.18.6", "@babel/plugin-transform-property-literals@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3" + integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-react-constant-elements@^7.0.0": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.20.2.tgz#3f02c784e0b711970d7d8ccc96c4359d64e27ac7" + integrity sha512-KS/G8YI8uwMGKErLFOHS/ekhqdHhpEloxs43NecQHVgo2QuQSyJhGIY1fL8UGl9wy5ItVwwoUL4YxVqsplGq2g== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + +"@babel/plugin-transform-react-display-name@7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz#70ded987c91609f78353dd76d2fb2a0bb991e8e5" + integrity sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-transform-react-display-name@^7.18.6", "@babel/plugin-transform-react-display-name@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz#8b1125f919ef36ebdfff061d664e266c666b9415" + integrity sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-react-jsx-development@^7.18.6", "@babel/plugin-transform-react-jsx-development@^7.9.0": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz#dbe5c972811e49c7405b630e4d0d2e1380c0ddc5" + integrity sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA== + dependencies: + "@babel/plugin-transform-react-jsx" "^7.18.6" + +"@babel/plugin-transform-react-jsx-self@^7.9.0": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.18.6.tgz#3849401bab7ae8ffa1e3e5687c94a753fc75bda7" + integrity sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-react-jsx-source@^7.9.0": + version "7.19.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.19.6.tgz#88578ae8331e5887e8ce28e4c9dc83fb29da0b86" + integrity sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ== + dependencies: + "@babel/helper-plugin-utils" "^7.19.0" + +"@babel/plugin-transform-react-jsx@^7.18.6", "@babel/plugin-transform-react-jsx@^7.9.1": + version "7.20.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.13.tgz#f950f0b0c36377503d29a712f16287cedf886cbb" + integrity sha512-MmTZx/bkUrfJhhYAYt3Urjm+h8DQGrPrnKQ94jLo7NLuOU+T89a7IByhKmrb8SKhrIYIQ0FN0CHMbnFRen4qNw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-jsx" "^7.18.6" + "@babel/types" "^7.20.7" + +"@babel/plugin-transform-react-pure-annotations@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz#561af267f19f3e5d59291f9950fd7b9663d0d844" + integrity sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-regenerator@^7.18.6", "@babel/plugin-transform-regenerator@^7.8.7": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz#57cda588c7ffb7f4f8483cc83bdcea02a907f04d" + integrity sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + regenerator-transform "^0.15.1" + +"@babel/plugin-transform-reserved-words@^7.18.6", "@babel/plugin-transform-reserved-words@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz#b1abd8ebf8edaa5f7fe6bbb8d2133d23b6a6f76a" + integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-runtime@7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.9.0.tgz#45468c0ae74cc13204e1d3b1f4ce6ee83258af0b" + integrity sha512-pUu9VSf3kI1OqbWINQ7MaugnitRss1z533436waNXp+0N3ur3zfut37sXiQMxkuCF4VUjwZucen/quskCh7NHw== + dependencies: + "@babel/helper-module-imports" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + resolve "^1.8.1" + semver "^5.5.1" + +"@babel/plugin-transform-shorthand-properties@^7.18.6", "@babel/plugin-transform-shorthand-properties@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9" + integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-spread@^7.19.0", "@babel/plugin-transform-spread@^7.8.3": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz#c2d83e0b99d3bf83e07b11995ee24bf7ca09401e" + integrity sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + +"@babel/plugin-transform-sticky-regex@^7.18.6", "@babel/plugin-transform-sticky-regex@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz#c6706eb2b1524028e317720339583ad0f444adcc" + integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-template-literals@^7.18.9", "@babel/plugin-transform-template-literals@^7.8.3": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e" + integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-typeof-symbol@^7.18.9", "@babel/plugin-transform-typeof-symbol@^7.8.4": + version "7.18.9" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz#c8cea68263e45addcd6afc9091429f80925762c0" + integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-typescript@^7.9.0": + version "7.20.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.13.tgz#e3581b356b8694f6ff450211fe6774eaff8d25ab" + integrity sha512-O7I/THxarGcDZxkgWKMUrk7NK1/WbHAg3Xx86gqS6x9MTrNL6AwIluuZ96ms4xeDe6AVx6rjHbWHP7x26EPQBA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.20.12" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-typescript" "^7.20.0" + +"@babel/plugin-transform-unicode-escapes@^7.18.10": + version "7.18.10" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz#1ecfb0eda83d09bbcb77c09970c2dd55832aa246" + integrity sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + +"@babel/plugin-transform-unicode-regex@^7.18.6", "@babel/plugin-transform-unicode-regex@^7.8.3": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz#194317225d8c201bbae103364ffe9e2cea36cdca" + integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/preset-env@7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.9.0.tgz#a5fc42480e950ae8f5d9f8f2bbc03f52722df3a8" + integrity sha512-712DeRXT6dyKAM/FMbQTV/FvRCms2hPCx+3weRjZ8iQVQWZejWWk1wwG6ViWMyqb/ouBbGOl5b6aCk0+j1NmsQ== + dependencies: + "@babel/compat-data" "^7.9.0" + "@babel/helper-compilation-targets" "^7.8.7" + "@babel/helper-module-imports" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-proposal-async-generator-functions" "^7.8.3" + "@babel/plugin-proposal-dynamic-import" "^7.8.3" + "@babel/plugin-proposal-json-strings" "^7.8.3" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-proposal-numeric-separator" "^7.8.3" + "@babel/plugin-proposal-object-rest-spread" "^7.9.0" + "@babel/plugin-proposal-optional-catch-binding" "^7.8.3" + "@babel/plugin-proposal-optional-chaining" "^7.9.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.8.3" + "@babel/plugin-syntax-async-generators" "^7.8.0" + "@babel/plugin-syntax-dynamic-import" "^7.8.0" + "@babel/plugin-syntax-json-strings" "^7.8.0" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + "@babel/plugin-syntax-numeric-separator" "^7.8.0" + "@babel/plugin-syntax-object-rest-spread" "^7.8.0" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" + "@babel/plugin-syntax-optional-chaining" "^7.8.0" + "@babel/plugin-syntax-top-level-await" "^7.8.3" + "@babel/plugin-transform-arrow-functions" "^7.8.3" + "@babel/plugin-transform-async-to-generator" "^7.8.3" + "@babel/plugin-transform-block-scoped-functions" "^7.8.3" + "@babel/plugin-transform-block-scoping" "^7.8.3" + "@babel/plugin-transform-classes" "^7.9.0" + "@babel/plugin-transform-computed-properties" "^7.8.3" + "@babel/plugin-transform-destructuring" "^7.8.3" + "@babel/plugin-transform-dotall-regex" "^7.8.3" + "@babel/plugin-transform-duplicate-keys" "^7.8.3" + "@babel/plugin-transform-exponentiation-operator" "^7.8.3" + "@babel/plugin-transform-for-of" "^7.9.0" + "@babel/plugin-transform-function-name" "^7.8.3" + "@babel/plugin-transform-literals" "^7.8.3" + "@babel/plugin-transform-member-expression-literals" "^7.8.3" + "@babel/plugin-transform-modules-amd" "^7.9.0" + "@babel/plugin-transform-modules-commonjs" "^7.9.0" + "@babel/plugin-transform-modules-systemjs" "^7.9.0" + "@babel/plugin-transform-modules-umd" "^7.9.0" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.8.3" + "@babel/plugin-transform-new-target" "^7.8.3" + "@babel/plugin-transform-object-super" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.8.7" + "@babel/plugin-transform-property-literals" "^7.8.3" + "@babel/plugin-transform-regenerator" "^7.8.7" + "@babel/plugin-transform-reserved-words" "^7.8.3" + "@babel/plugin-transform-shorthand-properties" "^7.8.3" + "@babel/plugin-transform-spread" "^7.8.3" + "@babel/plugin-transform-sticky-regex" "^7.8.3" + "@babel/plugin-transform-template-literals" "^7.8.3" + "@babel/plugin-transform-typeof-symbol" "^7.8.4" + "@babel/plugin-transform-unicode-regex" "^7.8.3" + "@babel/preset-modules" "^0.1.3" + "@babel/types" "^7.9.0" + browserslist "^4.9.1" + core-js-compat "^3.6.2" + invariant "^2.2.2" + levenary "^1.1.1" + semver "^5.5.0" + +"@babel/preset-env@^7.4.5": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.20.2.tgz#9b1642aa47bb9f43a86f9630011780dab7f86506" + integrity sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg== + dependencies: + "@babel/compat-data" "^7.20.1" + "@babel/helper-compilation-targets" "^7.20.0" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-validator-option" "^7.18.6" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.18.9" + "@babel/plugin-proposal-async-generator-functions" "^7.20.1" + "@babel/plugin-proposal-class-properties" "^7.18.6" + "@babel/plugin-proposal-class-static-block" "^7.18.6" + "@babel/plugin-proposal-dynamic-import" "^7.18.6" + "@babel/plugin-proposal-export-namespace-from" "^7.18.9" + "@babel/plugin-proposal-json-strings" "^7.18.6" + "@babel/plugin-proposal-logical-assignment-operators" "^7.18.9" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6" + "@babel/plugin-proposal-numeric-separator" "^7.18.6" + "@babel/plugin-proposal-object-rest-spread" "^7.20.2" + "@babel/plugin-proposal-optional-catch-binding" "^7.18.6" + "@babel/plugin-proposal-optional-chaining" "^7.18.9" + "@babel/plugin-proposal-private-methods" "^7.18.6" + "@babel/plugin-proposal-private-property-in-object" "^7.18.6" + "@babel/plugin-proposal-unicode-property-regex" "^7.18.6" + "@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.20.0" + "@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-transform-arrow-functions" "^7.18.6" + "@babel/plugin-transform-async-to-generator" "^7.18.6" + "@babel/plugin-transform-block-scoped-functions" "^7.18.6" + "@babel/plugin-transform-block-scoping" "^7.20.2" + "@babel/plugin-transform-classes" "^7.20.2" + "@babel/plugin-transform-computed-properties" "^7.18.9" + "@babel/plugin-transform-destructuring" "^7.20.2" + "@babel/plugin-transform-dotall-regex" "^7.18.6" + "@babel/plugin-transform-duplicate-keys" "^7.18.9" + "@babel/plugin-transform-exponentiation-operator" "^7.18.6" + "@babel/plugin-transform-for-of" "^7.18.8" + "@babel/plugin-transform-function-name" "^7.18.9" + "@babel/plugin-transform-literals" "^7.18.9" + "@babel/plugin-transform-member-expression-literals" "^7.18.6" + "@babel/plugin-transform-modules-amd" "^7.19.6" + "@babel/plugin-transform-modules-commonjs" "^7.19.6" + "@babel/plugin-transform-modules-systemjs" "^7.19.6" + "@babel/plugin-transform-modules-umd" "^7.18.6" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.19.1" + "@babel/plugin-transform-new-target" "^7.18.6" + "@babel/plugin-transform-object-super" "^7.18.6" + "@babel/plugin-transform-parameters" "^7.20.1" + "@babel/plugin-transform-property-literals" "^7.18.6" + "@babel/plugin-transform-regenerator" "^7.18.6" + "@babel/plugin-transform-reserved-words" "^7.18.6" + "@babel/plugin-transform-shorthand-properties" "^7.18.6" + "@babel/plugin-transform-spread" "^7.19.0" + "@babel/plugin-transform-sticky-regex" "^7.18.6" + "@babel/plugin-transform-template-literals" "^7.18.9" + "@babel/plugin-transform-typeof-symbol" "^7.18.9" + "@babel/plugin-transform-unicode-escapes" "^7.18.10" + "@babel/plugin-transform-unicode-regex" "^7.18.6" + "@babel/preset-modules" "^0.1.5" + "@babel/types" "^7.20.2" + babel-plugin-polyfill-corejs2 "^0.3.3" + babel-plugin-polyfill-corejs3 "^0.6.0" + babel-plugin-polyfill-regenerator "^0.4.1" + core-js-compat "^3.25.1" + semver "^6.3.0" + +"@babel/preset-modules@^0.1.3", "@babel/preset-modules@^0.1.5": + version "0.1.5" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.5.tgz#ef939d6e7f268827e1841638dc6ff95515e115d9" + integrity sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" + "@babel/plugin-transform-dotall-regex" "^7.4.4" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + +"@babel/preset-react@7.9.1": + version "7.9.1" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.9.1.tgz#b346403c36d58c3bb544148272a0cefd9c28677a" + integrity sha512-aJBYF23MPj0RNdp/4bHnAP0NVqqZRr9kl0NAOP4nJCex6OYVio59+dnQzsAWFuogdLyeaKA1hmfUIVZkY5J+TQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-transform-react-display-name" "^7.8.3" + "@babel/plugin-transform-react-jsx" "^7.9.1" + "@babel/plugin-transform-react-jsx-development" "^7.9.0" + "@babel/plugin-transform-react-jsx-self" "^7.9.0" + "@babel/plugin-transform-react-jsx-source" "^7.9.0" + +"@babel/preset-react@^7.0.0": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.18.6.tgz#979f76d6277048dc19094c217b507f3ad517dd2d" + integrity sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-validator-option" "^7.18.6" + "@babel/plugin-transform-react-display-name" "^7.18.6" + "@babel/plugin-transform-react-jsx" "^7.18.6" + "@babel/plugin-transform-react-jsx-development" "^7.18.6" + "@babel/plugin-transform-react-pure-annotations" "^7.18.6" + +"@babel/preset-typescript@7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.9.0.tgz#87705a72b1f0d59df21c179f7c3d2ef4b16ce192" + integrity sha512-S4cueFnGrIbvYJgwsVFKdvOmpiL0XGw9MFW9D0vgRys5g36PBhZRL8NX8Gr2akz8XRtzq6HuDXPD/1nniagNUg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-transform-typescript" "^7.9.0" + +"@babel/runtime-corejs3@^7.10.2", "@babel/runtime-corejs3@^7.12.1": + version "7.20.13" + resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.20.13.tgz#ad012857db412ab0b5ccf184b67be2cfcc2a1dcf" + integrity sha512-p39/6rmY9uvlzRiLZBIB3G9/EBr66LBMcYm7fIDeSBNdRjF2AGD3rFZucUyAgGHC2N+7DdLvVi33uTjSE44FIw== + dependencies: + core-js-pure "^3.25.1" + regenerator-runtime "^0.13.11" + +"@babel/runtime@7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.0.tgz#337eda67401f5b066a6f205a3113d4ac18ba495b" + integrity sha512-cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA== + dependencies: + regenerator-runtime "^0.13.4" + +"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.10.5", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.15.4", "@babel/runtime@^7.20.7", "@babel/runtime@^7.3.4", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.1", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2", "@babel/runtime@^7.9.6": + version "7.20.13" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.13.tgz#7055ab8a7cff2b8f6058bf6ae45ff84ad2aded4b" + integrity sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA== + dependencies: + regenerator-runtime "^0.13.11" + +"@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.4.0", "@babel/template@^7.8.6": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" + integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + +"@babel/traverse@^7.1.0", "@babel/traverse@^7.20.10", "@babel/traverse@^7.20.12", "@babel/traverse@^7.20.13", "@babel/traverse@^7.20.5", "@babel/traverse@^7.20.7", "@babel/traverse@^7.4.3", "@babel/traverse@^7.4.5", "@babel/traverse@^7.7.0", "@babel/traverse@^7.9.0": + version "7.20.13" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.13.tgz#817c1ba13d11accca89478bd5481b2d168d07473" + integrity sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/generator" "^7.20.7" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.19.0" + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/parser" "^7.20.13" + "@babel/types" "^7.20.7" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4", "@babel/types@^7.7.0", "@babel/types@^7.9.0": + version "7.20.7" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.7.tgz#54ec75e252318423fc07fb644dc6a58a64c09b7f" + integrity sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg== + dependencies: + "@babel/helper-string-parser" "^7.19.4" + "@babel/helper-validator-identifier" "^7.19.1" + to-fast-properties "^2.0.0" + +"@blueprintjs-formik/core@^0.2.1": + version "0.2.1" + resolved "https://registry.yarnpkg.com/@blueprintjs-formik/core/-/core-0.2.1.tgz#631884f7dece5f5fd2a85024cdff5afefdb3d905" + integrity sha512-YGJe+QorDGbkWDSUg6x69LYGN62Kgvb92Iz/voqmszVRKj4KcoPvd/7coF8Jmu+ZQE6LcwM/9ccB2i63L99ITA== + dependencies: + lodash.get "^4.4.2" + lodash.keyby "^4.6.0" + styled-components "^5.3.3" + web-vitals "^2.1.4" + +"@blueprintjs-formik/datetime@^0.3.4": + version "0.3.4" + resolved "https://registry.yarnpkg.com/@blueprintjs-formik/datetime/-/datetime-0.3.4.tgz#480fd7770e7209f2110704536956c5c4f6b0b472" + integrity sha512-HhBBxdLrMypOFZsFjgLlrIDODTnPy4uZC2YduPXg5WhMeu0otO0HF1pZrQctkA1rwkwE5EE/o+WfvoGo7UrvNQ== + dependencies: + lodash.get "^4.4.2" + lodash.keyby "^4.6.0" + styled-components "^5.3.3" + web-vitals "^2.1.4" + +"@blueprintjs-formik/select@^0.1.4": + version "0.1.5" + resolved "https://registry.yarnpkg.com/@blueprintjs-formik/select/-/select-0.1.5.tgz#94f3edc6d2816a39cf57d434520aa8b31957023e" + integrity sha512-EqGbuoiS1VrWpzjd39uVhBAmfVobdpgqalGcpODyGA+XAYoft1UU12yzTzrEOwBZpQKiC12UQwekUPspYBsVKA== + dependencies: + lodash.get "^4.4.2" + lodash.keyby "^4.6.0" + styled-components "^5.3.3" + web-vitals "^2.1.4" + +"@blueprintjs/colors@^4.0.0-alpha.3": + version "4.1.14" + resolved "https://registry.yarnpkg.com/@blueprintjs/colors/-/colors-4.1.14.tgz#ae8360c8feb19935fdd5fef617bb8fadac99eae5" + integrity sha512-MT++a/OSGui8tMpo5dEogrTV/PJCsHuhXTmdsGQtzivlLwBAp1XKe/Np4vaX6seJqRgR0oyXgS9kVvomCl463Q== + +"@blueprintjs/core@^3.49.1", "@blueprintjs/core@^3.50.2", "@blueprintjs/core@^3.54.0": + version "3.54.0" + resolved "https://registry.yarnpkg.com/@blueprintjs/core/-/core-3.54.0.tgz#7269f34eccdf0d2874377c5ad973ca2a31562221" + integrity sha512-u2c1s6MNn0ocxhnC6CuiG5g3KV6b4cKUvSobznepA9SC3/AL1s3XOvT7DLWoHRv2B/vBOHFYEDzLw2/vlcGGZg== + dependencies: + "@blueprintjs/colors" "^4.0.0-alpha.3" + "@blueprintjs/icons" "^3.33.0" + "@juggle/resize-observer" "^3.3.1" + "@types/dom4" "^2.0.1" + classnames "^2.2" + dom4 "^2.1.5" + normalize.css "^8.0.1" + popper.js "^1.16.1" + react-lifecycles-compat "^3.0.4" + react-popper "^1.3.7" + react-transition-group "^2.9.0" + tslib "~2.3.1" + +"@blueprintjs/datetime@^3.23.12": + version "3.24.1" + resolved "https://registry.yarnpkg.com/@blueprintjs/datetime/-/datetime-3.24.1.tgz#020ae9f1dbdc3e723394e6e3df4d8c7047699c56" + integrity sha512-+k5Zpmtzqqec1b+wiNMfXuw1N2pDUAlcuMAHQkZGbmrNKocpqMKLU6S6bPLGBsG0fwAbzQdYYiCCVz65m2z4Uw== + dependencies: + "@blueprintjs/core" "^3.54.0" + classnames "^2.2" + react-day-picker "7.4.9" + react-lifecycles-compat "^3.0.4" + tslib "~2.3.1" + +"@blueprintjs/icons@^3.33.0": + version "3.33.0" + resolved "https://registry.yarnpkg.com/@blueprintjs/icons/-/icons-3.33.0.tgz#4dacdb7731abdf08d1ab240f3a23a185df60918b" + integrity sha512-Q6qoSDIm0kRYQZISm59UUcDCpV3oeHulkLuh3bSlw0HhcSjvEQh2PSYbtaifM60Q4aK4PCd6bwJHg7lvF1x5fQ== + dependencies: + classnames "^2.2" + tslib "~2.3.1" + +"@blueprintjs/popover2@^0.11.1": + version "0.11.4" + resolved "https://registry.yarnpkg.com/@blueprintjs/popover2/-/popover2-0.11.4.tgz#1588b28a1f2342ceccb620bd50db061a9dd2fee2" + integrity sha512-KTietd+thBzeen9yP0WWzHJDAaqoey1H3AXvjaF94ypQQKdUaIzSmIop9Z3lJK44ynlYiI+dSzFYQbRdbpd0/w== + dependencies: + "@blueprintjs/core" "^3.49.1" + "@popperjs/core" "^2.5.4" + classnames "^2.2" + dom4 "^2.1.5" + react-popper "^2.2.4" + resize-observer-polyfill "^1.5.1" + tslib "~1.13.0" + +"@blueprintjs/select@^3.11.2", "@blueprintjs/select@^3.19.1": + version "3.19.1" + resolved "https://registry.yarnpkg.com/@blueprintjs/select/-/select-3.19.1.tgz#b5e8baa6f182a0647651a57fde8d1d97eaa1e997" + integrity sha512-8UJIZMaWXRMQHr14wbmzJc/CklcSKxOU5JUux0xXKQz/hDW/g1a650tlwJmnxufvRdShbGinlVfHupCs0EL6sw== + dependencies: + "@blueprintjs/core" "^3.54.0" + classnames "^2.2" + tslib "~2.3.1" + +"@blueprintjs/table@^3.8.3": + version "3.10.0" + resolved "https://registry.yarnpkg.com/@blueprintjs/table/-/table-3.10.0.tgz#fe3dd4de4199ce5ecd45e2da27069c0a124c5fee" + integrity sha512-CSob9e5vsZa+/ABpHN1IoZE0zHCYqNwsu1CBkrIPm0+4T/5B2MPCywJ+1aNbdC4+IDjuD6UC97/Hiyre3dlSEA== + dependencies: + "@blueprintjs/core" "^3.54.0" + classnames "^2.2" + prop-types "^15.7.2" + react-lifecycles-compat "^3.0.4" + tslib "~2.3.1" + +"@blueprintjs/timezone@^3.6.2": + version "3.10.1" + resolved "https://registry.yarnpkg.com/@blueprintjs/timezone/-/timezone-3.10.1.tgz#895cf527d2cc8aa70f16beee9467e5ad4b882e0d" + integrity sha512-uVf28kENhkwiwCCyGTQBxRsz/Z/KEy3RyQXoeCv/ZDryjEFNVpHCjYlf2QMt4DP7ADEwWH3SfLebjtXdRjFb+g== + dependencies: + "@blueprintjs/core" "^3.54.0" + "@blueprintjs/select" "^3.19.1" + classnames "^2.2" + moment "^2.29.0" + moment-timezone "^0.5.31" + react-lifecycles-compat "^3.0.4" + tslib "~2.3.1" + +"@casl/ability@^5.4.3": + version "5.4.4" + resolved "https://registry.yarnpkg.com/@casl/ability/-/ability-5.4.4.tgz#fbe54340c156248e73804942eed350903b27b9f3" + integrity sha512-7+GOnMUq6q4fqtDDesymBXTS9LSDVezYhFiSJ8Rn3f0aQLeRm7qHn66KWbej4niCOvm0XzNj9jzpkK0yz6hUww== + dependencies: + "@ucast/mongo2js" "^1.3.0" + +"@casl/react@^2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@casl/react/-/react-2.3.0.tgz#e97493c4ff6cfc99001b71f59a9dbe132f884da2" + integrity sha512-xP5G9ShXviE56IrU4mPpj1K7bl8KmNOjz3e4YgwrirmRdtZ38rF70a5AkFotWX9hgdH2mqZK/VHiYDGAIlYu1Q== + +"@choojs/findup@^0.2.1": + version "0.2.1" + resolved "https://registry.yarnpkg.com/@choojs/findup/-/findup-0.2.1.tgz#ac13c59ae7be6e1da64de0779a0a7f03d75615a3" + integrity sha512-YstAqNb0MCN8PjdLCDfRsBcGVRN41f3vgLvaI0IrIcBp4AqILRSS0DeWNGkicC+f/zRIPJLc+9RURVSepwvfBw== + dependencies: + commander "^2.15.1" + +"@cnakazawa/watch@^1.0.3": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" + integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ== + dependencies: + exec-sh "^0.3.2" + minimist "^1.2.0" + +"@craco/craco@^5.9.0": + version "5.9.0" + resolved "https://registry.yarnpkg.com/@craco/craco/-/craco-5.9.0.tgz#dcd34330b558596a4841374743071b7fa041dce9" + integrity sha512-2Q8gIB4W0/nPiUxr9iAKUhGsFlXYN0/wngUdK1VWtfV2NtBv+yllNn2AjieaLbttgpQinuOYmDU65vocC0NMDg== + dependencies: + cross-spawn "^7.0.0" + lodash "^4.17.15" + webpack-merge "^4.2.2" + +"@csstools/convert-colors@^1.4.0": + version "1.4.0" + resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7" + integrity sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw== + +"@csstools/normalize.css@^10.1.0": + version "10.1.0" + resolved "https://registry.yarnpkg.com/@csstools/normalize.css/-/normalize.css-10.1.0.tgz#f0950bba18819512d42f7197e56c518aa491cf18" + integrity sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg== + +"@emotion/is-prop-valid@^1.1.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-1.2.0.tgz#7f2d35c97891669f7e276eb71c83376a5dc44c83" + integrity sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg== + dependencies: + "@emotion/memoize" "^0.8.0" + +"@emotion/memoize@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.8.0.tgz#f580f9beb67176fa57aae70b08ed510e1b18980f" + integrity sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA== + +"@emotion/stylis@^0.8.4": + version "0.8.5" + resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04" + integrity sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ== + +"@emotion/unitless@^0.7.4": + version "0.7.5" + resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed" + integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg== + +"@formatjs/intl-unified-numberformat@^3.2.0": + version "3.3.7" + resolved "https://registry.yarnpkg.com/@formatjs/intl-unified-numberformat/-/intl-unified-numberformat-3.3.7.tgz#9995a24568908188e716d81a1de5b702b2ee00e2" + integrity sha512-KnWgLRHzCAgT9eyt3OS34RHoyD7dPDYhRcuKn+/6Kv2knDF8Im43J6vlSW6Hm1w63fNq3ZIT1cFk7RuVO3Psag== + dependencies: + "@formatjs/intl-utils" "^2.3.0" + +"@formatjs/intl-utils@^2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@formatjs/intl-utils/-/intl-utils-2.3.0.tgz#2dc8c57044de0340eb53a7ba602e59abf80dc799" + integrity sha512-KWk80UPIzPmUg+P0rKh6TqspRw0G6eux1PuJr+zz47ftMaZ9QDwbGzHZbtzWkl5hgayM/qrKRutllRC7D/vVXQ== + +"@hapi/address@2.x.x": + version "2.1.4" + resolved "https://registry.yarnpkg.com/@hapi/address/-/address-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5" + integrity sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ== + +"@hapi/bourne@1.x.x": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@hapi/bourne/-/bourne-1.3.2.tgz#0a7095adea067243ce3283e1b56b8a8f453b242a" + integrity sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA== + +"@hapi/hoek@8.x.x", "@hapi/hoek@^8.3.0": + version "8.5.1" + resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-8.5.1.tgz#fde96064ca446dec8c55a8c2f130957b070c6e06" + integrity sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow== + +"@hapi/joi@^15.0.0": + version "15.1.1" + resolved "https://registry.yarnpkg.com/@hapi/joi/-/joi-15.1.1.tgz#c675b8a71296f02833f8d6d243b34c57b8ce19d7" + integrity sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ== + dependencies: + "@hapi/address" "2.x.x" + "@hapi/bourne" "1.x.x" + "@hapi/hoek" "8.x.x" + "@hapi/topo" "3.x.x" + +"@hapi/topo@3.x.x": + version "3.1.6" + resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-3.1.6.tgz#68d935fa3eae7fdd5ab0d7f953f3205d8b2bfc29" + integrity sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ== + dependencies: + "@hapi/hoek" "^8.3.0" + +"@hypnosphi/create-react-context@^0.3.1": + version "0.3.1" + resolved "https://registry.yarnpkg.com/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz#f8bfebdc7665f5d426cba3753e0e9c7d3154d7c6" + integrity sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A== + dependencies: + gud "^1.0.0" + warning "^4.0.3" + +"@jest/console@^24.7.1", "@jest/console@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.9.0.tgz#79b1bc06fb74a8cfb01cbdedf945584b1b9707f0" + integrity sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ== + dependencies: + "@jest/source-map" "^24.9.0" + chalk "^2.0.1" + slash "^2.0.0" + +"@jest/core@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-24.9.0.tgz#2ceccd0b93181f9c4850e74f2a9ad43d351369c4" + integrity sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A== + dependencies: + "@jest/console" "^24.7.1" + "@jest/reporters" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + ansi-escapes "^3.0.0" + chalk "^2.0.1" + exit "^0.1.2" + graceful-fs "^4.1.15" + jest-changed-files "^24.9.0" + jest-config "^24.9.0" + jest-haste-map "^24.9.0" + jest-message-util "^24.9.0" + jest-regex-util "^24.3.0" + jest-resolve "^24.9.0" + jest-resolve-dependencies "^24.9.0" + jest-runner "^24.9.0" + jest-runtime "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" + jest-watcher "^24.9.0" + micromatch "^3.1.10" + p-each-series "^1.0.0" + realpath-native "^1.1.0" + rimraf "^2.5.4" + slash "^2.0.0" + strip-ansi "^5.0.0" + +"@jest/environment@^24.3.0", "@jest/environment@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.9.0.tgz#21e3afa2d65c0586cbd6cbefe208bafade44ab18" + integrity sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ== + dependencies: + "@jest/fake-timers" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + +"@jest/fake-timers@^24.3.0", "@jest/fake-timers@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.9.0.tgz#ba3e6bf0eecd09a636049896434d306636540c93" + integrity sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A== + dependencies: + "@jest/types" "^24.9.0" + jest-message-util "^24.9.0" + jest-mock "^24.9.0" + +"@jest/reporters@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.9.0.tgz#86660eff8e2b9661d042a8e98a028b8d631a5b43" + integrity sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw== + dependencies: + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + chalk "^2.0.1" + exit "^0.1.2" + glob "^7.1.2" + istanbul-lib-coverage "^2.0.2" + istanbul-lib-instrument "^3.0.1" + istanbul-lib-report "^2.0.4" + istanbul-lib-source-maps "^3.0.1" + istanbul-reports "^2.2.6" + jest-haste-map "^24.9.0" + jest-resolve "^24.9.0" + jest-runtime "^24.9.0" + jest-util "^24.9.0" + jest-worker "^24.6.0" + node-notifier "^5.4.2" + slash "^2.0.0" + source-map "^0.6.0" + string-length "^2.0.0" + +"@jest/source-map@^24.3.0", "@jest/source-map@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.9.0.tgz#0e263a94430be4b41da683ccc1e6bffe2a191714" + integrity sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg== + dependencies: + callsites "^3.0.0" + graceful-fs "^4.1.15" + source-map "^0.6.0" + +"@jest/test-result@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.9.0.tgz#11796e8aa9dbf88ea025757b3152595ad06ba0ca" + integrity sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA== + dependencies: + "@jest/console" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/istanbul-lib-coverage" "^2.0.0" + +"@jest/test-sequencer@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz#f8f334f35b625a4f2f355f2fe7e6036dad2e6b31" + integrity sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A== + dependencies: + "@jest/test-result" "^24.9.0" + jest-haste-map "^24.9.0" + jest-runner "^24.9.0" + jest-runtime "^24.9.0" + +"@jest/transform@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-24.9.0.tgz#4ae2768b296553fadab09e9ec119543c90b16c56" + integrity sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ== + dependencies: + "@babel/core" "^7.1.0" + "@jest/types" "^24.9.0" + babel-plugin-istanbul "^5.1.0" + chalk "^2.0.1" + convert-source-map "^1.4.0" + fast-json-stable-stringify "^2.0.0" + graceful-fs "^4.1.15" + jest-haste-map "^24.9.0" + jest-regex-util "^24.9.0" + jest-util "^24.9.0" + micromatch "^3.1.10" + pirates "^4.0.1" + realpath-native "^1.1.0" + slash "^2.0.0" + source-map "^0.6.1" + write-file-atomic "2.4.1" + +"@jest/types@^24.3.0", "@jest/types@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.9.0.tgz#63cb26cb7500d069e5a389441a7c6ab5e909fc59" + integrity sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^1.1.1" + "@types/yargs" "^13.0.0" + +"@jest/types@^25.5.0": + version "25.5.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-25.5.0.tgz#4d6a4793f7b9599fc3680877b856a97dbccf2a9d" + integrity sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^1.1.1" + "@types/yargs" "^15.0.0" + chalk "^3.0.0" + +"@jest/types@^26.6.2": + version "26.6.2" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.6.2.tgz#bef5a532030e1d88a2f5a6d933f84e97226ed48e" + integrity sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^15.0.0" + chalk "^4.0.0" + +"@jridgewell/gen-mapping@^0.1.0": + version "0.1.1" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" + integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== + dependencies: + "@jridgewell/set-array" "^1.0.0" + "@jridgewell/sourcemap-codec" "^1.4.10" + +"@jridgewell/gen-mapping@^0.3.2": + version "0.3.2" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" + integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.14" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/trace-mapping@^0.3.9": + version "0.3.17" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985" + integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== + dependencies: + "@jridgewell/resolve-uri" "3.1.0" + "@jridgewell/sourcemap-codec" "1.4.14" + +"@juggle/resize-observer@^3.3.1": + version "3.4.0" + resolved "https://registry.yarnpkg.com/@juggle/resize-observer/-/resize-observer-3.4.0.tgz#08d6c5e20cf7e4cc02fd181c4b0c225cd31dbb60" + integrity sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA== + +"@mrmlnc/readdir-enhanced@^2.2.1": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde" + integrity sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g== + dependencies: + call-me-maybe "^1.0.1" + glob-to-regexp "^0.3.0" + +"@next/eslint-plugin-next@12.3.4": + version "12.3.4" + resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.3.4.tgz#e7dc00e2e89ed361f111d687b8534483ec15518b" + integrity sha512-BFwj8ykJY+zc1/jWANsDprDIu2MgwPOIKxNVnrKvPs+f5TPegrVnem8uScND+1veT4B7F6VeqgaNLFW1Hzl9Og== + dependencies: + glob "7.1.7" + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.stat@^1.1.2": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" + integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== + +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@popperjs/core@^2.5.4": + version "2.11.6" + resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.6.tgz#cee20bd55e68a1720bdab363ecf0c821ded4cd45" + integrity sha512-50/17A98tWUfQ176raKiOGXuYpLyyVMkxxG6oylzL3BPOlA6ADGdK7EYunSa4I064xerltq9TGXs8HmOk5E+vw== + +"@reduxjs/toolkit@^1.2.5": + version "1.9.2" + resolved "https://registry.yarnpkg.com/@reduxjs/toolkit/-/toolkit-1.9.2.tgz#4cd153491118038e2eebcb63b2264e42a8a2d74c" + integrity sha512-5ZAZ7hwAKWSii5T6NTPmgIBUqyVdlDs+6JjThz6J6dmHLDm6zCzv2OjHIFAi3Vvs1qjmXU0bm6eBojukYXjVMQ== + dependencies: + immer "^9.0.16" + redux "^4.2.0" + redux-thunk "^2.4.2" + reselect "^4.1.7" + +"@rushstack/eslint-patch@^1.1.3": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz#8be36a1f66f3265389e90b5f9c9962146758f728" + integrity sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg== + +"@sentry/browser@6.19.7": + version "6.19.7" + resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-6.19.7.tgz#a40b6b72d911b5f1ed70ed3b4e7d4d4e625c0b5f" + integrity sha512-oDbklp4O3MtAM4mtuwyZLrgO1qDVYIujzNJQzXmi9YzymJCuzMLSRDvhY83NNDCRxf0pds4DShgYeZdbSyKraA== + dependencies: + "@sentry/core" "6.19.7" + "@sentry/types" "6.19.7" + "@sentry/utils" "6.19.7" + tslib "^1.9.3" + +"@sentry/core@6.19.7": + version "6.19.7" + resolved "https://registry.yarnpkg.com/@sentry/core/-/core-6.19.7.tgz#156aaa56dd7fad8c89c145be6ad7a4f7209f9785" + integrity sha512-tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw== + dependencies: + "@sentry/hub" "6.19.7" + "@sentry/minimal" "6.19.7" + "@sentry/types" "6.19.7" + "@sentry/utils" "6.19.7" + tslib "^1.9.3" + +"@sentry/hub@6.19.7": + version "6.19.7" + resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-6.19.7.tgz#58ad7776bbd31e9596a8ec46365b45cd8b9cfd11" + integrity sha512-y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA== + dependencies: + "@sentry/types" "6.19.7" + "@sentry/utils" "6.19.7" + tslib "^1.9.3" + +"@sentry/minimal@6.19.7": + version "6.19.7" + resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-6.19.7.tgz#b3ee46d6abef9ef3dd4837ebcb6bdfd01b9aa7b4" + integrity sha512-wcYmSJOdvk6VAPx8IcmZgN08XTXRwRtB1aOLZm+MVHjIZIhHoBGZJYTVQS/BWjldsamj2cX3YGbGXNunaCfYJQ== + dependencies: + "@sentry/hub" "6.19.7" + "@sentry/types" "6.19.7" + tslib "^1.9.3" + +"@sentry/react@^6.13.2": + version "6.19.7" + resolved "https://registry.yarnpkg.com/@sentry/react/-/react-6.19.7.tgz#58cc2d6da20f7d3b0df40638dfbbbc86c9c85caf" + integrity sha512-VzJeBg/v41jfxUYPkH2WYrKjWc4YiMLzDX0f4Zf6WkJ4v3IlDDSkX6DfmWekjTKBho6wiMkSNy2hJ1dHfGZ9jA== + dependencies: + "@sentry/browser" "6.19.7" + "@sentry/minimal" "6.19.7" + "@sentry/types" "6.19.7" + "@sentry/utils" "6.19.7" + hoist-non-react-statics "^3.3.2" + tslib "^1.9.3" + +"@sentry/tracing@^6.13.2": + version "6.19.7" + resolved "https://registry.yarnpkg.com/@sentry/tracing/-/tracing-6.19.7.tgz#54bb99ed5705931cd33caf71da347af769f02a4c" + integrity sha512-ol4TupNnv9Zd+bZei7B6Ygnr9N3Gp1PUrNI761QSlHtPC25xXC5ssSD3GMhBgyQrcvpuRcCFHVNNM97tN5cZiA== + dependencies: + "@sentry/hub" "6.19.7" + "@sentry/minimal" "6.19.7" + "@sentry/types" "6.19.7" + "@sentry/utils" "6.19.7" + tslib "^1.9.3" + +"@sentry/types@6.19.7": + version "6.19.7" + resolved "https://registry.yarnpkg.com/@sentry/types/-/types-6.19.7.tgz#c6b337912e588083fc2896eb012526cf7cfec7c7" + integrity sha512-jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg== + +"@sentry/utils@6.19.7": + version "6.19.7" + resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-6.19.7.tgz#6edd739f8185fd71afe49cbe351c1bbf5e7b7c79" + integrity sha512-z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA== + dependencies: + "@sentry/types" "6.19.7" + tslib "^1.9.3" + +"@sheerun/mutationobserver-shim@^0.3.2": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@sheerun/mutationobserver-shim/-/mutationobserver-shim-0.3.3.tgz#5405ee8e444ed212db44e79351f0c70a582aae25" + integrity sha512-DetpxZw1fzPD5xUBrIAoplLChO2VB8DlL5Gg+I1IR9b2wPqYIca2WSUxL5g1vLeR4MsQq1NeWriXAVffV+U1Fw== + +"@svgr/babel-plugin-add-jsx-attribute@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-4.2.0.tgz#dadcb6218503532d6884b210e7f3c502caaa44b1" + integrity sha512-j7KnilGyZzYr/jhcrSYS3FGWMZVaqyCG0vzMCwzvei0coIkczuYMcniK07nI0aHJINciujjH11T72ICW5eL5Ig== + +"@svgr/babel-plugin-remove-jsx-attribute@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-4.2.0.tgz#297550b9a8c0c7337bea12bdfc8a80bb66f85abc" + integrity sha512-3XHLtJ+HbRCH4n28S7y/yZoEQnRpl0tvTZQsHqvaeNXPra+6vE5tbRliH3ox1yZYPCxrlqaJT/Mg+75GpDKlvQ== + +"@svgr/babel-plugin-remove-jsx-empty-expression@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-4.2.0.tgz#c196302f3e68eab6a05e98af9ca8570bc13131c7" + integrity sha512-yTr2iLdf6oEuUE9MsRdvt0NmdpMBAkgK8Bjhl6epb+eQWk6abBaX3d65UZ3E3FWaOwePyUgNyNCMVG61gGCQ7w== + +"@svgr/babel-plugin-replace-jsx-attribute-value@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-4.2.0.tgz#310ec0775de808a6a2e4fd4268c245fd734c1165" + integrity sha512-U9m870Kqm0ko8beHawRXLGLvSi/ZMrl89gJ5BNcT452fAjtF2p4uRzXkdzvGJJJYBgx7BmqlDjBN/eCp5AAX2w== + +"@svgr/babel-plugin-svg-dynamic-title@^4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-4.3.3.tgz#2cdedd747e5b1b29ed4c241e46256aac8110dd93" + integrity sha512-w3Be6xUNdwgParsvxkkeZb545VhXEwjGMwExMVBIdPQJeyMQHqm9Msnb2a1teHBqUYL66qtwfhNkbj1iarCG7w== + +"@svgr/babel-plugin-svg-em-dimensions@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-4.2.0.tgz#9a94791c9a288108d20a9d2cc64cac820f141391" + integrity sha512-C0Uy+BHolCHGOZ8Dnr1zXy/KgpBOkEUYY9kI/HseHVPeMbluaX3CijJr7D4C5uR8zrc1T64nnq/k63ydQuGt4w== + +"@svgr/babel-plugin-transform-react-native-svg@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-4.2.0.tgz#151487322843359a1ca86b21a3815fd21a88b717" + integrity sha512-7YvynOpZDpCOUoIVlaaOUU87J4Z6RdD6spYN4eUb5tfPoKGSF9OG2NuhgYnq4jSkAxcpMaXWPf1cePkzmqTPNw== + +"@svgr/babel-plugin-transform-svg-component@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-4.2.0.tgz#5f1e2f886b2c85c67e76da42f0f6be1b1767b697" + integrity sha512-hYfYuZhQPCBVotABsXKSCfel2slf/yvJY8heTVX1PCTaq/IgASq1IyxPPKJ0chWREEKewIU/JMSsIGBtK1KKxw== + +"@svgr/babel-preset@^4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-4.3.3.tgz#a75d8c2f202ac0e5774e6bfc165d028b39a1316c" + integrity sha512-6PG80tdz4eAlYUN3g5GZiUjg2FMcp+Wn6rtnz5WJG9ITGEF1pmFdzq02597Hn0OmnQuCVaBYQE1OVFAnwOl+0A== + dependencies: + "@svgr/babel-plugin-add-jsx-attribute" "^4.2.0" + "@svgr/babel-plugin-remove-jsx-attribute" "^4.2.0" + "@svgr/babel-plugin-remove-jsx-empty-expression" "^4.2.0" + "@svgr/babel-plugin-replace-jsx-attribute-value" "^4.2.0" + "@svgr/babel-plugin-svg-dynamic-title" "^4.3.3" + "@svgr/babel-plugin-svg-em-dimensions" "^4.2.0" + "@svgr/babel-plugin-transform-react-native-svg" "^4.2.0" + "@svgr/babel-plugin-transform-svg-component" "^4.2.0" + +"@svgr/core@^4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@svgr/core/-/core-4.3.3.tgz#b37b89d5b757dc66e8c74156d00c368338d24293" + integrity sha512-qNuGF1QON1626UCaZamWt5yedpgOytvLj5BQZe2j1k1B8DUG4OyugZyfEwBeXozCUwhLEpsrgPrE+eCu4fY17w== + dependencies: + "@svgr/plugin-jsx" "^4.3.3" + camelcase "^5.3.1" + cosmiconfig "^5.2.1" + +"@svgr/hast-util-to-babel-ast@^4.3.2": + version "4.3.2" + resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-4.3.2.tgz#1d5a082f7b929ef8f1f578950238f630e14532b8" + integrity sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg== + dependencies: + "@babel/types" "^7.4.4" + +"@svgr/plugin-jsx@^4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-4.3.3.tgz#e2ba913dbdfbe85252a34db101abc7ebd50992fa" + integrity sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w== + dependencies: + "@babel/core" "^7.4.5" + "@svgr/babel-preset" "^4.3.3" + "@svgr/hast-util-to-babel-ast" "^4.3.2" + svg-parser "^2.0.0" + +"@svgr/plugin-svgo@^4.3.1": + version "4.3.1" + resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-4.3.1.tgz#daac0a3d872e3f55935c6588dd370336865e9e32" + integrity sha512-PrMtEDUWjX3Ea65JsVCwTIXuSqa3CG9px+DluF1/eo9mlDrgrtFE7NE/DjdhjJgSM9wenlVBzkzneSIUgfUI/w== + dependencies: + cosmiconfig "^5.2.1" + merge-deep "^3.0.2" + svgo "^1.2.2" + +"@svgr/webpack@4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-4.3.3.tgz#13cc2423bf3dff2d494f16b17eb7eacb86895017" + integrity sha512-bjnWolZ6KVsHhgyCoYRFmbd26p8XVbulCzSG53BDQqAr+JOAderYK7CuYrB3bDjHJuF6LJ7Wrr42+goLRV9qIg== + dependencies: + "@babel/core" "^7.4.5" + "@babel/plugin-transform-react-constant-elements" "^7.0.0" + "@babel/preset-env" "^7.4.5" + "@babel/preset-react" "^7.0.0" + "@svgr/core" "^4.3.3" + "@svgr/plugin-jsx" "^4.3.3" + "@svgr/plugin-svgo" "^4.3.1" + loader-utils "^1.2.3" + +"@testing-library/dom@*": + version "8.20.0" + resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.20.0.tgz#914aa862cef0f5e89b98cc48e3445c4c921010f6" + integrity sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA== + dependencies: + "@babel/code-frame" "^7.10.4" + "@babel/runtime" "^7.12.5" + "@types/aria-query" "^5.0.1" + aria-query "^5.0.0" + chalk "^4.1.0" + dom-accessibility-api "^0.5.9" + lz-string "^1.4.4" + pretty-format "^27.0.2" + +"@testing-library/dom@^6.15.0": + version "6.16.0" + resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-6.16.0.tgz#04ada27ed74ad4c0f0d984a1245bb29b1fd90ba9" + integrity sha512-lBD88ssxqEfz0wFL6MeUyyWZfV/2cjEZZV3YRpb2IoJRej/4f1jB0TzqIOznTpfR1r34CNesrubxwIlAQ8zgPA== + dependencies: + "@babel/runtime" "^7.8.4" + "@sheerun/mutationobserver-shim" "^0.3.2" + "@types/testing-library__dom" "^6.12.1" + aria-query "^4.0.2" + dom-accessibility-api "^0.3.0" + pretty-format "^25.1.0" + wait-for-expect "^3.0.2" + +"@testing-library/jest-dom@^4.2.4": + version "4.2.4" + resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-4.2.4.tgz#00dfa0cbdd837d9a3c2a7f3f0a248ea6e7b89742" + integrity sha512-j31Bn0rQo12fhCWOUWy9fl7wtqkp7In/YP2p5ZFyRuiiB9Qs3g+hS4gAmDWONbAHcRmVooNJ5eOHQDCOmUFXHg== + dependencies: + "@babel/runtime" "^7.5.1" + chalk "^2.4.1" + css "^2.2.3" + css.escape "^1.5.1" + jest-diff "^24.0.0" + jest-matcher-utils "^24.0.0" + lodash "^4.17.11" + pretty-format "^24.0.0" + redent "^3.0.0" + +"@testing-library/react@^9.4.0": + version "9.5.0" + resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-9.5.0.tgz#71531655a7890b61e77a1b39452fbedf0472ca5e" + integrity sha512-di1b+D0p+rfeboHO5W7gTVeZDIK5+maEgstrZbWZSSvxDyfDRkkyBE1AJR5Psd6doNldluXlCWqXriUfqu/9Qg== + dependencies: + "@babel/runtime" "^7.8.4" + "@testing-library/dom" "^6.15.0" + "@types/testing-library__react" "^9.1.2" + +"@testing-library/user-event@^7.2.1": + version "7.2.1" + resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-7.2.1.tgz#2ad4e844175a3738cb9e7064be5ea070b8863a1c" + integrity sha512-oZ0Ib5I4Z2pUEcoo95cT1cr6slco9WY7yiPpG+RGNkj8YcYgJnM7pXmYmorNOReh8MIGcKSqXyeGjxnr8YiZbA== + +"@types/aria-query@^5.0.1": + version "5.0.1" + resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-5.0.1.tgz#3286741fb8f1e1580ac28784add4c7a1d49bdfbc" + integrity sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q== + +"@types/babel__core@^7.1.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.0.tgz#61bc5a4cae505ce98e1e36c5445e4bee060d8891" + integrity sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ== + dependencies: + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" + integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__template@*": + version "7.4.1" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" + integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": + version "7.18.3" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.18.3.tgz#dfc508a85781e5698d5b33443416b6268c4b3e8d" + integrity sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w== + dependencies: + "@babel/types" "^7.3.0" + +"@types/dom4@^2.0.1": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@types/dom4/-/dom4-2.0.2.tgz#6495303f049689ce936ed328a3e5ede9c51408ee" + integrity sha512-Rt4IC1T7xkCWa0OG1oSsPa0iqnxlDeQqKXZAHrQGLb7wFGncWm85MaxKUjAGejOrUynOgWlFi4c6S6IyJwoK4g== + +"@types/eslint-visitor-keys@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" + integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== + +"@types/glob@^7.1.1": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.2.0.tgz#bc1b5bf3aa92f25bd5dd39f35c57361bdce5b2eb" + integrity sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA== + dependencies: + "@types/minimatch" "*" + "@types/node" "*" + +"@types/history@^4.7.11": + version "4.7.11" + resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.11.tgz#56588b17ae8f50c53983a524fc3cc47437969d64" + integrity sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA== + +"@types/hoist-non-react-statics@*", "@types/hoist-non-react-statics@^3.3.0": + version "3.3.1" + resolved "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz#1124aafe5118cb591977aeb1ceaaed1070eb039f" + integrity sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA== + dependencies: + "@types/react" "*" + hoist-non-react-statics "^3.3.0" + +"@types/http-proxy@^1.17.5": + version "1.17.9" + resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.9.tgz#7f0e7931343761efde1e2bf48c40f02f3f75705a" + integrity sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw== + dependencies: + "@types/node" "*" + +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": + version "2.0.4" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" + integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== + +"@types/istanbul-lib-report@*": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" + integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== + dependencies: + "@types/istanbul-lib-coverage" "*" + +"@types/istanbul-reports@^1.1.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz#e875cc689e47bce549ec81f3df5e6f6f11cfaeb2" + integrity sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw== + dependencies: + "@types/istanbul-lib-coverage" "*" + "@types/istanbul-lib-report" "*" + +"@types/istanbul-reports@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" + integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== + dependencies: + "@types/istanbul-lib-report" "*" + +"@types/jest@^26.0.15": + version "26.0.24" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.24.tgz#943d11976b16739185913a1936e0de0c4a7d595a" + integrity sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w== + dependencies: + jest-diff "^26.0.0" + pretty-format "^26.0.0" + +"@types/js-cookie@2.2.5": + version "2.2.5" + resolved "https://registry.yarnpkg.com/@types/js-cookie/-/js-cookie-2.2.5.tgz#38dfaacae8623b37cc0b0d27398e574e3fc28b1e" + integrity sha512-cpmwBRcHJmmZx0OGU7aPVwGWGbs4iKwVYchk9iuMtxNCA2zorwdaTz4GkLgs2WGxiRZRFKnV1k6tRUHX7tBMxg== + +"@types/js-money@^0.6.1": + version "0.6.1" + resolved "https://registry.yarnpkg.com/@types/js-money/-/js-money-0.6.1.tgz#743434c06742aee38601a3608247fc3e972c6531" + integrity sha512-aKe0BEeMrJe0KIm/h1XbkKc1zrMfHshAEwN7zA7UDWcAGwsbEnGsL3KagrBRisE6yJdDjjBV8bATvU8/4Y6DHg== + +"@types/json-schema@^7.0.3", "@types/json-schema@^7.0.5": + version "7.0.11" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" + integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + +"@types/lodash@^4.14.172": + version "4.14.191" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.191.tgz#09511e7f7cba275acd8b419ddac8da9a6a79e2fa" + integrity sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ== + +"@types/minimatch@*": + version "5.1.2" + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.2.tgz#07508b45797cb81ec3f273011b054cd0755eddca" + integrity sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA== + +"@types/node@*": + version "18.11.18" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.18.tgz#8dfb97f0da23c2293e554c5a50d61ef134d7697f" + integrity sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA== + +"@types/node@^14.14.9": + version "14.18.36" + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.36.tgz#c414052cb9d43fab67d679d5f3c641be911f5835" + integrity sha512-FXKWbsJ6a1hIrRxv+FoukuHnGTgEzKYGi7kilfMae96AL9UNkPFNWJEEYWzdRI9ooIkbr4AKldyuSTLql06vLQ== + +"@types/parse-json@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" + integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== + +"@types/prop-types@*", "@types/prop-types@^15.7.3": + version "15.7.5" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" + integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== + +"@types/q@^1.5.1": + version "1.5.5" + resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.5.tgz#75a2a8e7d8ab4b230414505d92335d1dcb53a6df" + integrity sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ== + +"@types/ramda@^0.28.14": + version "0.28.22" + resolved "https://registry.yarnpkg.com/@types/ramda/-/ramda-0.28.22.tgz#170155639e05fae68820003a862bb8cffe38d69f" + integrity sha512-DoIfh0sBxrL/aqADk+SGrfjJT9cB8modg+4NRlF7/Tfg4N2+KBEkAgpYYzrjiZxxR5YzWizjfVrTEdVDwYK7xQ== + dependencies: + ts-toolbelt "^6.15.1" + +"@types/react-body-classname@^1.1.7": + version "1.1.7" + resolved "https://registry.yarnpkg.com/@types/react-body-classname/-/react-body-classname-1.1.7.tgz#c6d71227eb136643e224cc3930543a3124312e57" + integrity sha512-rfs2A8PUfmTiVVpPWNWe4/uOUHgXWIe0IRxQmxx8DK/Ot2DxVQhILPZFHMWs03B92Fw43vipCx1FdVoBxY4bow== + dependencies: + "@types/react" "*" + +"@types/react-dom@*": + version "18.0.10" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.10.tgz#3b66dec56aa0f16a6cc26da9e9ca96c35c0b4352" + integrity sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg== + dependencies: + "@types/react" "*" + +"@types/react-dom@^16.9.16": + version "16.9.17" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.17.tgz#29100cbcc422d7b7dba7de24bb906de56680dd34" + integrity sha512-qSRyxEsrm5btPXnowDOs5jSkgT8ldAA0j6Qp+otHUh+xHzy3sXmgNfyhucZjAjkgpdAUw9rJe0QRtX/l+yaS4g== + dependencies: + "@types/react" "^16" + +"@types/react-redux@^7.1.20", "@types/react-redux@^7.1.24": + version "7.1.25" + resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.25.tgz#de841631205b24f9dfb4967dd4a7901e048f9a88" + integrity sha512-bAGh4e+w5D8dajd6InASVIyCo4pZLJ66oLb80F9OBLO1gKESbZcRCJpTT6uLXX+HAB57zw1WTdwJdAsewuTweg== + dependencies: + "@types/hoist-non-react-statics" "^3.3.0" + "@types/react" "*" + hoist-non-react-statics "^3.3.0" + redux "^4.0.0" + +"@types/react-router-dom@^5.3.3": + version "5.3.3" + resolved "https://registry.yarnpkg.com/@types/react-router-dom/-/react-router-dom-5.3.3.tgz#e9d6b4a66fcdbd651a5f106c2656a30088cc1e83" + integrity sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw== + dependencies: + "@types/history" "^4.7.11" + "@types/react" "*" + "@types/react-router" "*" + +"@types/react-router@*": + version "5.1.20" + resolved "https://registry.yarnpkg.com/@types/react-router/-/react-router-5.1.20.tgz#88eccaa122a82405ef3efbcaaa5dcdd9f021387c" + integrity sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q== + dependencies: + "@types/history" "^4.7.11" + "@types/react" "*" + +"@types/react-transition-group@^4.4.5": + version "4.4.5" + resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.5.tgz#aae20dcf773c5aa275d5b9f7cdbca638abc5e416" + integrity sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA== + dependencies: + "@types/react" "*" + +"@types/react@*": + version "18.0.27" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.27.tgz#d9425abe187a00f8a5ec182b010d4fd9da703b71" + integrity sha512-3vtRKHgVxu3Jp9t718R9BuzoD4NcQ8YJ5XRzsSKxNDiDonD2MXIT1TmSkenxuCycZJoQT5d2vE8LwWJxBC1gmA== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + +"@types/react@^16", "@types/react@^16.14.28": + version "16.14.35" + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.14.35.tgz#9d3cf047d85aca8006c4776693124a5be90ee429" + integrity sha512-NUEiwmSS1XXtmBcsm1NyRRPYjoZF2YTE89/5QiLt5mlGffYK9FQqOKuOLuXNrjPQV04oQgaZG+Yq02ZfHoFyyg== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + +"@types/scheduler@*": + version "0.16.2" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" + integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== + +"@types/stack-utils@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" + integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== + +"@types/styled-components@^5.1.25": + version "5.1.26" + resolved "https://registry.yarnpkg.com/@types/styled-components/-/styled-components-5.1.26.tgz#5627e6812ee96d755028a98dae61d28e57c233af" + integrity sha512-KuKJ9Z6xb93uJiIyxo/+ksS7yLjS1KzG6iv5i78dhVg/X3u5t1H7juRWqVmodIdz6wGVaIApo1u01kmFRdJHVw== + dependencies: + "@types/hoist-non-react-statics" "*" + "@types/react" "*" + csstype "^3.0.2" + +"@types/testing-library__dom@*": + version "7.5.0" + resolved "https://registry.yarnpkg.com/@types/testing-library__dom/-/testing-library__dom-7.5.0.tgz#e0a00dd766983b1d6e9d10d33e708005ce6ad13e" + integrity sha512-mj1aH4cj3XUpMEgVpognma5kHVtbm6U6cHZmEFzCRiXPvKkuHrFr3+yXdGLXvfFRBaQIVshPGHI+hGTOJlhS/g== + dependencies: + "@testing-library/dom" "*" + +"@types/testing-library__dom@^6.12.1": + version "6.14.0" + resolved "https://registry.yarnpkg.com/@types/testing-library__dom/-/testing-library__dom-6.14.0.tgz#1aede831cb4ed4a398448df5a2c54b54a365644e" + integrity sha512-sMl7OSv0AvMOqn1UJ6j1unPMIHRXen0Ita1ujnMX912rrOcawe4f7wu0Zt9GIQhBhJvH2BaibqFgQ3lP+Pj2hA== + dependencies: + pretty-format "^24.3.0" + +"@types/testing-library__react@^9.1.2": + version "9.1.3" + resolved "https://registry.yarnpkg.com/@types/testing-library__react/-/testing-library__react-9.1.3.tgz#35eca61cc6ea923543796f16034882a1603d7302" + integrity sha512-iCdNPKU3IsYwRK9JieSYAiX0+aYDXOGAmrC/3/M7AqqSDKnWWVv07X+Zk1uFSL7cMTUYzv4lQRfohucEocn5/w== + dependencies: + "@types/react-dom" "*" + "@types/testing-library__dom" "*" + pretty-format "^25.1.0" + +"@types/yargs-parser@*": + version "21.0.0" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" + integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== + +"@types/yargs@^13.0.0": + version "13.0.12" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.12.tgz#d895a88c703b78af0465a9de88aa92c61430b092" + integrity sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ== + dependencies: + "@types/yargs-parser" "*" + +"@types/yargs@^15.0.0": + version "15.0.15" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.15.tgz#e609a2b1ef9e05d90489c2f5f45bbfb2be092158" + integrity sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg== + dependencies: + "@types/yargs-parser" "*" + +"@types/yup@^0.29.13": + version "0.29.14" + resolved "https://registry.yarnpkg.com/@types/yup/-/yup-0.29.14.tgz#754f1dccedcc66fc2bbe290c27f5323b407ceb00" + integrity sha512-Ynb/CjHhE/Xp/4bhHmQC4U1Ox+I2OpfRYF3dnNgQqn1cHa6LK3H1wJMNPT02tSVZA6FYuXE2ITORfbnb6zBCSA== + +"@typescript-eslint/eslint-plugin@^2.10.0": + version "2.34.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.34.0.tgz#6f8ce8a46c7dea4a6f1d171d2bb8fbae6dac2be9" + integrity sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O/+KMI3fcTAmUUhK/iQcQ== + dependencies: + "@typescript-eslint/experimental-utils" "2.34.0" + functional-red-black-tree "^1.0.1" + regexpp "^3.0.0" + tsutils "^3.17.1" + +"@typescript-eslint/experimental-utils@2.34.0": + version "2.34.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz#d3524b644cdb40eebceca67f8cf3e4cc9c8f980f" + integrity sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA== + dependencies: + "@types/json-schema" "^7.0.3" + "@typescript-eslint/typescript-estree" "2.34.0" + eslint-scope "^5.0.0" + eslint-utils "^2.0.0" + +"@typescript-eslint/parser@^2.10.0": + version "2.34.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.34.0.tgz#50252630ca319685420e9a39ca05fe185a256bc8" + integrity sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA== + dependencies: + "@types/eslint-visitor-keys" "^1.0.0" + "@typescript-eslint/experimental-utils" "2.34.0" + "@typescript-eslint/typescript-estree" "2.34.0" + eslint-visitor-keys "^1.1.0" + +"@typescript-eslint/parser@^5.21.0": + version "5.50.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.50.0.tgz#a33f44b2cc83d1b7176ec854fbecd55605b0b032" + integrity sha512-KCcSyNaogUDftK2G9RXfQyOCt51uB5yqC6pkUYqhYh8Kgt+DwR5M0EwEAxGPy/+DH6hnmKeGsNhiZRQxjH71uQ== + dependencies: + "@typescript-eslint/scope-manager" "5.50.0" + "@typescript-eslint/types" "5.50.0" + "@typescript-eslint/typescript-estree" "5.50.0" + debug "^4.3.4" + +"@typescript-eslint/scope-manager@5.50.0": + version "5.50.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.50.0.tgz#90b8a3b337ad2c52bbfe4eac38f9164614e40584" + integrity sha512-rt03kaX+iZrhssaT974BCmoUikYtZI24Vp/kwTSy841XhiYShlqoshRFDvN1FKKvU2S3gK+kcBW1EA7kNUrogg== + dependencies: + "@typescript-eslint/types" "5.50.0" + "@typescript-eslint/visitor-keys" "5.50.0" + +"@typescript-eslint/types@5.50.0": + version "5.50.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.50.0.tgz#c461d3671a6bec6c2f41f38ed60bd87aa8a30093" + integrity sha512-atruOuJpir4OtyNdKahiHZobPKFvZnBnfDiyEaBf6d9vy9visE7gDjlmhl+y29uxZ2ZDgvXijcungGFjGGex7w== + +"@typescript-eslint/typescript-estree@2.34.0": + version "2.34.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz#14aeb6353b39ef0732cc7f1b8285294937cf37d5" + integrity sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg== + dependencies: + debug "^4.1.1" + eslint-visitor-keys "^1.1.0" + glob "^7.1.6" + is-glob "^4.0.1" + lodash "^4.17.15" + semver "^7.3.2" + tsutils "^3.17.1" + +"@typescript-eslint/typescript-estree@5.50.0": + version "5.50.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.50.0.tgz#0b9b82975bdfa40db9a81fdabc7f93396867ea97" + integrity sha512-Gq4zapso+OtIZlv8YNAStFtT6d05zyVCK7Fx3h5inlLBx2hWuc/0465C2mg/EQDDU2LKe52+/jN4f0g9bd+kow== + dependencies: + "@typescript-eslint/types" "5.50.0" + "@typescript-eslint/visitor-keys" "5.50.0" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + semver "^7.3.7" + tsutils "^3.21.0" + +"@typescript-eslint/visitor-keys@5.50.0": + version "5.50.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.50.0.tgz#b752ffc143841f3d7bc57d6dd01ac5c40f8c4903" + integrity sha512-cdMeD9HGu6EXIeGOh2yVW6oGf9wq8asBgZx7nsR/D36gTfQ0odE5kcRYe5M81vjEFAcPeugXrHg78Imu55F6gg== + dependencies: + "@typescript-eslint/types" "5.50.0" + eslint-visitor-keys "^3.3.0" + +"@ucast/core@^1.0.0", "@ucast/core@^1.4.1", "@ucast/core@^1.6.1": + version "1.10.1" + resolved "https://registry.yarnpkg.com/@ucast/core/-/core-1.10.1.tgz#03a77a7804bcb5002a5cad3681e86cd1897e2e1f" + integrity sha512-sXKbvQiagjFh2JCpaHUa64P4UdJbOxYeC5xiZFn8y6iYdb0WkismduE+RmiJrIjw/eLDYmIEXiQeIYYowmkcAw== + +"@ucast/js@^3.0.0": + version "3.0.2" + resolved "https://registry.yarnpkg.com/@ucast/js/-/js-3.0.2.tgz#862838ee68112c6c262d4f4693cc592ba83157e0" + integrity sha512-zxNkdIPVvqJjHI7D/iK8Aai1+59yqU+N7bpHFodVmiTN7ukeNiGGpNmmSjQgsUw7eNcEBnPrZHNzp5UBxwmaPw== + dependencies: + "@ucast/core" "^1.0.0" + +"@ucast/mongo2js@^1.3.0": + version "1.3.3" + resolved "https://registry.yarnpkg.com/@ucast/mongo2js/-/mongo2js-1.3.3.tgz#a683a59cea22887a72e4302f3826e41ccf51dbbe" + integrity sha512-sBPtMUYg+hRnYeVYKL+ATm8FaRPdlU9PijMhGYKgsPGjV9J4Ks41ytIjGayvKUnBOEhiCaKUUnY4qPeifdqATw== + dependencies: + "@ucast/core" "^1.6.1" + "@ucast/js" "^3.0.0" + "@ucast/mongo" "^2.4.0" + +"@ucast/mongo@^2.4.0": + version "2.4.2" + resolved "https://registry.yarnpkg.com/@ucast/mongo/-/mongo-2.4.2.tgz#a8a1c32e65ccab623be023e6cedb11d136d50f19" + integrity sha512-/zH1TdBJlYGKKD+Wh0oyD+aBvDSWrwHcD8b4tUL9UgHLhzHtkEnMVFuxbw3SRIRsAa01wmy06+LWt+WoZdj1Bw== + dependencies: + "@ucast/core" "^1.4.1" + +"@webassemblyjs/ast@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.8.5.tgz#51b1c5fe6576a34953bf4b253df9f0d490d9e359" + integrity sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ== + dependencies: + "@webassemblyjs/helper-module-context" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/wast-parser" "1.8.5" + +"@webassemblyjs/floating-point-hex-parser@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz#1ba926a2923613edce496fd5b02e8ce8a5f49721" + integrity sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ== + +"@webassemblyjs/helper-api-error@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz#c49dad22f645227c5edb610bdb9697f1aab721f7" + integrity sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA== + +"@webassemblyjs/helper-buffer@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz#fea93e429863dd5e4338555f42292385a653f204" + integrity sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q== + +"@webassemblyjs/helper-code-frame@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz#9a740ff48e3faa3022b1dff54423df9aa293c25e" + integrity sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ== + dependencies: + "@webassemblyjs/wast-printer" "1.8.5" + +"@webassemblyjs/helper-fsm@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz#ba0b7d3b3f7e4733da6059c9332275d860702452" + integrity sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow== + +"@webassemblyjs/helper-module-context@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz#def4b9927b0101dc8cbbd8d1edb5b7b9c82eb245" + integrity sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g== + dependencies: + "@webassemblyjs/ast" "1.8.5" + mamacro "^0.0.3" + +"@webassemblyjs/helper-wasm-bytecode@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz#537a750eddf5c1e932f3744206551c91c1b93e61" + integrity sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ== + +"@webassemblyjs/helper-wasm-section@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz#74ca6a6bcbe19e50a3b6b462847e69503e6bfcbf" + integrity sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-buffer" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/wasm-gen" "1.8.5" + +"@webassemblyjs/ieee754@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz#712329dbef240f36bf57bd2f7b8fb9bf4154421e" + integrity sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g== + dependencies: + "@xtuc/ieee754" "^1.2.0" + +"@webassemblyjs/leb128@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.8.5.tgz#044edeb34ea679f3e04cd4fd9824d5e35767ae10" + integrity sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A== + dependencies: + "@xtuc/long" "4.2.2" + +"@webassemblyjs/utf8@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.8.5.tgz#a8bf3b5d8ffe986c7c1e373ccbdc2a0915f0cedc" + integrity sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw== + +"@webassemblyjs/wasm-edit@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz#962da12aa5acc1c131c81c4232991c82ce56e01a" + integrity sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-buffer" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/helper-wasm-section" "1.8.5" + "@webassemblyjs/wasm-gen" "1.8.5" + "@webassemblyjs/wasm-opt" "1.8.5" + "@webassemblyjs/wasm-parser" "1.8.5" + "@webassemblyjs/wast-printer" "1.8.5" + +"@webassemblyjs/wasm-gen@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz#54840766c2c1002eb64ed1abe720aded714f98bc" + integrity sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/ieee754" "1.8.5" + "@webassemblyjs/leb128" "1.8.5" + "@webassemblyjs/utf8" "1.8.5" + +"@webassemblyjs/wasm-opt@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz#b24d9f6ba50394af1349f510afa8ffcb8a63d264" + integrity sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-buffer" "1.8.5" + "@webassemblyjs/wasm-gen" "1.8.5" + "@webassemblyjs/wasm-parser" "1.8.5" + +"@webassemblyjs/wasm-parser@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz#21576f0ec88b91427357b8536383668ef7c66b8d" + integrity sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-api-error" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/ieee754" "1.8.5" + "@webassemblyjs/leb128" "1.8.5" + "@webassemblyjs/utf8" "1.8.5" + +"@webassemblyjs/wast-parser@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz#e10eecd542d0e7bd394f6827c49f3df6d4eefb8c" + integrity sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/floating-point-hex-parser" "1.8.5" + "@webassemblyjs/helper-api-error" "1.8.5" + "@webassemblyjs/helper-code-frame" "1.8.5" + "@webassemblyjs/helper-fsm" "1.8.5" + "@xtuc/long" "4.2.2" + +"@webassemblyjs/wast-printer@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz#114bbc481fd10ca0e23b3560fa812748b0bae5bc" + integrity sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/wast-parser" "1.8.5" + "@xtuc/long" "4.2.2" + +"@welldone-software/why-did-you-render@^6.0.0-rc.1": + version "6.2.3" + resolved "https://registry.yarnpkg.com/@welldone-software/why-did-you-render/-/why-did-you-render-6.2.3.tgz#cdd5e27cf25b7e767c1c0b0e8808f67d3f6be833" + integrity sha512-FQgi90jvC9uw2aALlonJfqaWOvU5UUBBVvdAnS2iryXwCc4YJkKsPJY5Y/LzaND3OIyk8XGUn1vTRn6hcem28Q== + dependencies: + lodash "^4" + +"@xobotyi/scrollbar-width@1.9.5": + version "1.9.5" + resolved "https://registry.yarnpkg.com/@xobotyi/scrollbar-width/-/scrollbar-width-1.9.5.tgz#80224a6919272f405b87913ca13b92929bdf3c4d" + integrity sha512-N8tkAACJx2ww8vFMneJmaAgmjAG1tnVBZJRLRcx061tmsLRZHSEZSLuGWnwPtunsSLvSqXQ2wfp7Mgqg1I+2dQ== + +"@xtuc/ieee754@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== + +"@xtuc/long@4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" + integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== + +abab@^2.0.0: + version "2.0.6" + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291" + integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA== + +abbrev@1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + +accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: + version "1.3.8" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== + dependencies: + mime-types "~2.1.34" + negotiator "0.6.3" + +accounting@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/accounting/-/accounting-0.4.1.tgz#87dd4103eff7f4460f1e186f5c677ed6cf566883" + integrity sha512-RU6KY9Y5wllyaCNBo1W11ZOTnTHMMgOZkIwdOOs6W5ibMTp72i4xIbEA48djxVGqMNTUNbvrP/1nWg5Af5m2gQ== + +acorn-globals@^4.1.0, acorn-globals@^4.3.0: + version "4.3.4" + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7" + integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A== + dependencies: + acorn "^6.0.1" + acorn-walk "^6.0.1" + +acorn-jsx@^5.2.0: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn-walk@^6.0.1: + version "6.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c" + integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA== + +acorn@^5.5.3: + version "5.7.4" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e" + integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg== + +acorn@^6.0.1, acorn@^6.0.4, acorn@^6.2.1: + version "6.4.2" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6" + integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== + +acorn@^7.1.1: + version "7.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + +address@1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6" + integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA== + +address@^1.0.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/address/-/address-1.2.2.tgz#2b5248dac5485a6390532c6a517fda2e3faac89e" + integrity sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA== + +adjust-sourcemap-loader@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz#5ae12fb5b7b1c585e80bbb5a63ec163a1a45e61e" + integrity sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw== + dependencies: + loader-utils "^2.0.0" + regex-parser "^2.2.11" + +aggregate-error@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + +ajv-errors@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" + integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== + +ajv-keywords@^3.1.0, ajv-keywords@^3.4.1, ajv-keywords@^3.5.2: + version "3.5.2" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" + integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== + +ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + 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" + +alphanum-sort@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" + integrity sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ== + +amdefine@>=0.0.4: + version "1.0.1" + resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" + integrity sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg== + +ansi-colors@^3.0.0: + version "3.2.4" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" + integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== + +ansi-escapes@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" + integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== + +ansi-escapes@^4.2.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" + +ansi-html@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" + integrity sha512-JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA== + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA== + +ansi-regex@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1" + integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== + +ansi-regex@^4.0.0, ansi-regex@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" + integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== + +ansi-regex@^5.0.0, ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + integrity sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA== + +ansi-styles@^3.2.0, ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +ansi-styles@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" + integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== + +anymatch@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" + integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== + dependencies: + micromatch "^3.1.4" + normalize-path "^2.1.1" + +anymatch@~3.1.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +aproba@^1.0.3, aproba@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" + integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== + +are-we-there-yet@~1.1.2: + version "1.1.7" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz#b15474a932adab4ff8a50d9adfa7e4e926f21146" + integrity sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g== + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +aria-query@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-3.0.0.tgz#65b3fcc1ca1155a8c9ae64d6eee297f15d5133cc" + integrity sha512-majUxHgLehQTeSA+hClx+DY09OVUqG3GtezWkF1krgLGNdlDu9l9V8DaqNMWbq4Eddc8wsyDA0hpDUtnYxQEXw== + dependencies: + ast-types-flow "0.0.7" + commander "^2.11.0" + +aria-query@^4.0.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" + integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== + dependencies: + "@babel/runtime" "^7.10.2" + "@babel/runtime-corejs3" "^7.10.2" + +aria-query@^5.0.0, aria-query@^5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e" + integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== + dependencies: + deep-equal "^2.0.5" + +arity-n@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/arity-n/-/arity-n-1.0.4.tgz#d9e76b11733e08569c0847ae7b39b2860b30b745" + integrity sha512-fExL2kFDC1Q2DUOx3whE/9KoN66IzkY4b4zUHUBFM1ojEYjZZYDcUW3bek/ufGionX9giIKDC5redH2IlGqcQQ== + +arr-diff@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" + integrity sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA== + +arr-flatten@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== + +arr-union@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" + integrity sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q== + +array-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" + integrity sha512-H3LU5RLiSsGXPhN+Nipar0iR0IofH+8r89G2y1tBKxQ/agagKyAjhkAFDRBfodP2caPrNKHpAWNIM/c9yeL7uA== + +array-find-index@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" + integrity sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw== + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== + +array-flatten@^2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099" + integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== + +array-includes@^3.0.3, array-includes@^3.1.1, array-includes@^3.1.4, array-includes@^3.1.5, array-includes@^3.1.6: + version "3.1.6" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" + integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + get-intrinsic "^1.1.3" + is-string "^1.0.7" + +array-union@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" + integrity sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng== + dependencies: + array-uniq "^1.0.1" + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +array-uniq@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" + integrity sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q== + +array-unique@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" + integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ== + +array.prototype.flat@^1.2.1, array.prototype.flat@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" + integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + +array.prototype.flatmap@^1.2.5, array.prototype.flatmap@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183" + integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + +array.prototype.reduce@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz#6b20b0daa9d9734dd6bc7ea66b5bbce395471eac" + integrity sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-array-method-boxes-properly "^1.0.0" + is-string "^1.0.7" + +array.prototype.tosorted@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532" + integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-shim-unscopables "^1.0.0" + get-intrinsic "^1.1.3" + +arrify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== + +asap@~2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== + +asn1.js@^5.2.0: + version "5.4.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" + integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + safer-buffer "^2.1.0" + +asn1@~0.2.3: + version "0.2.6" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.6.tgz#0d3a7bb6e64e02a90c0303b31f292868ea09a08d" + integrity sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ== + dependencies: + safer-buffer "~2.1.0" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + integrity sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw== + +assert@^1.1.1: + version "1.5.0" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" + integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== + dependencies: + object-assign "^4.1.1" + util "0.10.3" + +assign-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" + integrity sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw== + +ast-types-flow@0.0.7, ast-types-flow@^0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" + integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== + +astral-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" + integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== + +async-each@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.5.tgz#6eea184b2df0ec09f3deebe165c97c85c911d7b8" + integrity sha512-5QzqtU3BlagehwmdoqwaS2FBQF2P5eL6vFqXwNsb5jwoEsmtfAXg1ocFvW7I6/gGLFhBMKwcMwZuy7uv/Bo9jA== + +async-foreach@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" + integrity sha512-VUeSMD8nEGBWaZK4lizI1sf3yEC7pnAQ/mrI7pC2fBz2s/tq5jWWEngTwaf0Gruu/OoXRGLGg1XFqpYBiGTYJA== + +async-limiter@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" + integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== + +async@^2.6.4: + version "2.6.4" + resolved "https://registry.yarnpkg.com/async/-/async-2.6.4.tgz#706b7ff6084664cd7eae713f6f965433b5504221" + integrity sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA== + dependencies: + lodash "^4.17.14" + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== + +atob@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" + integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== + +attr-accept@^2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/attr-accept/-/attr-accept-2.2.2.tgz#646613809660110749e92f2c10833b70968d929b" + integrity sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg== + +autoprefixer@^9.6.1: + version "9.8.8" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.8.tgz#fd4bd4595385fa6f06599de749a4d5f7a474957a" + integrity sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA== + dependencies: + browserslist "^4.12.0" + caniuse-lite "^1.0.30001109" + normalize-range "^0.1.2" + num2fraction "^1.2.2" + picocolors "^0.2.1" + postcss "^7.0.32" + postcss-value-parser "^4.1.0" + +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA== + +aws4@^1.8.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.12.0.tgz#ce1c9d143389679e253b314241ea9aa5cec980d3" + integrity sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg== + +axe-core@^4.6.2: + version "4.6.3" + resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.6.3.tgz#fc0db6fdb65cc7a80ccf85286d91d64ababa3ece" + integrity sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg== + +axios@^0.21.2: + version "0.21.4" + resolved "https://registry.yarnpkg.com/axios/-/axios-0.21.4.tgz#c67b90dc0568e5c1cf2b0b858c43ba28e2eda575" + integrity sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg== + dependencies: + follow-redirects "^1.14.0" + +axobject-query@^2.0.2: + version "2.2.0" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" + integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== + +axobject-query@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.1.1.tgz#3b6e5c6d4e43ca7ba51c5babf99d22a9c68485e1" + integrity sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg== + dependencies: + deep-equal "^2.0.5" + +babel-code-frame@^6.22.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" + integrity sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g== + dependencies: + chalk "^1.1.3" + esutils "^2.0.2" + js-tokens "^3.0.2" + +babel-eslint@10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232" + integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg== + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/parser" "^7.7.0" + "@babel/traverse" "^7.7.0" + "@babel/types" "^7.7.0" + eslint-visitor-keys "^1.0.0" + resolve "^1.12.0" + +babel-extract-comments@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz#0a2aedf81417ed391b85e18b4614e693a0351a21" + integrity sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ== + dependencies: + babylon "^6.18.0" + +babel-jest@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.9.0.tgz#3fc327cb8467b89d14d7bc70e315104a783ccd54" + integrity sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw== + dependencies: + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/babel__core" "^7.1.0" + babel-plugin-istanbul "^5.1.0" + babel-preset-jest "^24.9.0" + chalk "^2.4.2" + slash "^2.0.0" + +babel-loader@8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.1.0.tgz#c611d5112bd5209abe8b9fa84c3e4da25275f1c3" + integrity sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw== + dependencies: + find-cache-dir "^2.1.0" + loader-utils "^1.4.0" + mkdirp "^0.5.3" + pify "^4.0.1" + schema-utils "^2.6.5" + +babel-plugin-istanbul@^5.1.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz#df4ade83d897a92df069c4d9a25cf2671293c854" + integrity sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + find-up "^3.0.0" + istanbul-lib-instrument "^3.3.0" + test-exclude "^5.2.3" + +babel-plugin-jest-hoist@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz#4f837091eb407e01447c8843cbec546d0002d756" + integrity sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw== + dependencies: + "@types/babel__traverse" "^7.0.6" + +babel-plugin-macros@2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138" + integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg== + dependencies: + "@babel/runtime" "^7.7.2" + cosmiconfig "^6.0.0" + resolve "^1.12.0" + +babel-plugin-named-asset-import@^0.3.6: + version "0.3.8" + resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz#6b7fa43c59229685368683c28bc9734f24524cc2" + integrity sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q== + +babel-plugin-polyfill-corejs2@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz#5d1bd3836d0a19e1b84bbf2d9640ccb6f951c122" + integrity sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q== + dependencies: + "@babel/compat-data" "^7.17.7" + "@babel/helper-define-polyfill-provider" "^0.3.3" + semver "^6.1.1" + +babel-plugin-polyfill-corejs3@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz#56ad88237137eade485a71b52f72dbed57c6230a" + integrity sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.3.3" + core-js-compat "^3.25.1" + +babel-plugin-polyfill-regenerator@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz#390f91c38d90473592ed43351e801a9d3e0fd747" + integrity sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.3.3" + +"babel-plugin-styled-components@>= 1.12.0": + version "2.0.7" + resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-2.0.7.tgz#c81ef34b713f9da2b7d3f5550df0d1e19e798086" + integrity sha512-i7YhvPgVqRKfoQ66toiZ06jPNA3p6ierpfUuEWxNF+fV27Uv5gxBkf8KZLHUCc1nFA9j6+80pYoIpqCeyW3/bA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.16.0" + "@babel/helper-module-imports" "^7.16.0" + babel-plugin-syntax-jsx "^6.18.0" + lodash "^4.17.11" + picomatch "^2.3.0" + +babel-plugin-syntax-jsx@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946" + integrity sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw== + +babel-plugin-syntax-object-rest-spread@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" + integrity sha512-C4Aq+GaAj83pRQ0EFgTvw5YO6T3Qz2KGrNRwIj9mSoNHVvdZY4KO2uA6HNtNXCw993iSZnckY1aLW8nOi8i4+w== + +babel-plugin-transform-object-rest-spread@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" + integrity sha512-ocgA9VJvyxwt+qJB0ncxV8kb/CjfTcECUY4tQ5VT7nP6Aohzobm8CDFaQ5FHdvZQzLmf0sgDxB8iRXZXxwZcyA== + dependencies: + babel-plugin-syntax-object-rest-spread "^6.8.0" + babel-runtime "^6.26.0" + +babel-plugin-transform-react-remove-prop-types@0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz#f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a" + integrity sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA== + +babel-preset-jest@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz#192b521e2217fb1d1f67cf73f70c336650ad3cdc" + integrity sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg== + dependencies: + "@babel/plugin-syntax-object-rest-spread" "^7.0.0" + babel-plugin-jest-hoist "^24.9.0" + +babel-preset-react-app@^9.1.2: + version "9.1.2" + resolved "https://registry.yarnpkg.com/babel-preset-react-app/-/babel-preset-react-app-9.1.2.tgz#54775d976588a8a6d1a99201a702befecaf48030" + integrity sha512-k58RtQOKH21NyKtzptoAvtAODuAJJs3ZhqBMl456/GnXEQ/0La92pNmwgWoMn5pBTrsvk3YYXdY7zpY4e3UIxA== + dependencies: + "@babel/core" "7.9.0" + "@babel/plugin-proposal-class-properties" "7.8.3" + "@babel/plugin-proposal-decorators" "7.8.3" + "@babel/plugin-proposal-nullish-coalescing-operator" "7.8.3" + "@babel/plugin-proposal-numeric-separator" "7.8.3" + "@babel/plugin-proposal-optional-chaining" "7.9.0" + "@babel/plugin-transform-flow-strip-types" "7.9.0" + "@babel/plugin-transform-react-display-name" "7.8.3" + "@babel/plugin-transform-runtime" "7.9.0" + "@babel/preset-env" "7.9.0" + "@babel/preset-react" "7.9.1" + "@babel/preset-typescript" "7.9.0" + "@babel/runtime" "7.9.0" + babel-plugin-macros "2.8.0" + babel-plugin-transform-react-remove-prop-types "0.4.24" + +babel-runtime@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" + integrity sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g== + dependencies: + core-js "^2.4.0" + regenerator-runtime "^0.11.0" + +babylon@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" + integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +base64-js@^1.0.2: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + +base@^0.11.1: + version "0.11.2" + resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" + integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== + dependencies: + cache-base "^1.0.1" + class-utils "^0.3.5" + component-emitter "^1.2.1" + define-property "^1.0.0" + isobject "^3.0.1" + mixin-deep "^1.2.0" + pascalcase "^0.1.1" + +basscss-align@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/basscss-align/-/basscss-align-1.0.2.tgz#294aa689d6f99da86e4af4c5c2892870855c1c37" + integrity sha512-T7XvlG6jqjBvQ27xSioO5p069E5jW12QbOy+V+QKnkmfwkU+SDTrcLI2DMSlTPGbPmtDZHeRrG9qwOhjbaMMbg== + +basscss-border@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/basscss-border/-/basscss-border-4.0.2.tgz#14b4506329b90cb14abe5f4d3473e9fe9202df2e" + integrity sha512-qw+AeA7zFVtYWdWR+GQ+CkXbGzJ6QhjyT4eE4SURSkviSoZkZEA+oVbtC/yD/hiy/spWFk9UDLE71vJ8CDEnHw== + +basscss-flexbox@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/basscss-flexbox/-/basscss-flexbox-1.0.2.tgz#0f85e8c50618c023c5cff1227e6b3538fc0d9a32" + integrity sha512-AtG6yBmmza2nPo3x9X4/7rbW22gLmiSvYvirFs7Aspt1zp5FHwpRBz3BD2v/a3qPdmVM8OvOLVNWISGM6O50MA== + +basscss-grid@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/basscss-grid/-/basscss-grid-2.0.0.tgz#6f4c3198e786a38529f8362bc3b3bce5254c1369" + integrity sha512-vUnHyLvNx4Bi7caXWMpooMBOBCP+bib/z+pu/kqySLHe0ap5kNTs9EgTBI/QVD8VrnruIznL5GUP3RuT0KLZ6g== + +basscss-hide@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/basscss-hide/-/basscss-hide-1.0.1.tgz#34bc138bba867c6c49ab8682a610ef495e47d750" + integrity sha512-NYKtjyYIoY4GGiRrE5b3NV/9AmLJOoYTshKl2N6rNI+Bvh+rElT+F7GsOvNlmJvoVhDihcLK16U2UYYNlmb9Bw== + +basscss-layout@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/basscss-layout/-/basscss-layout-3.1.0.tgz#f9f392e480da66657d9fe5de9ca4c07c579c3a4e" + integrity sha512-umKiuaeDS4THPPA/3N8UOO3wyubEKf+93Cm971QkAWLjDu2OrX5rOOAQC+tP+Q+OsMaAKvMNdZlA4kij+2y4nQ== + +basscss-margin@^1.0.9: + version "1.0.9" + resolved "https://registry.yarnpkg.com/basscss-margin/-/basscss-margin-1.0.9.tgz#1e5800996ec8e8f362db4db52a51ece6d77a9fde" + integrity sha512-wpF8tXrtzU+iMtLvfSgYJlpkIxChOlay3YumoI+yJ6IiOe5uMmEGUG8FWAIkC8QalkKDAURAqHmQ4nbuyUvyag== + +basscss-padding@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/basscss-padding/-/basscss-padding-1.1.3.tgz#69db799414e6dd58bed83776952cc299e2e6874e" + integrity sha512-pfqA7LgTpdR9lCh36IxWFNV4kZM53G1lnQlvC/2MzUu62XhvRDXD2uENGXWwJYKgaxRAdqdDoHZ0K23mRlk29g== + +basscss-position@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/basscss-position/-/basscss-position-2.0.3.tgz#467180a1f8f386e9072ed8d08294d2a6e0ba4305" + integrity sha512-g3esHpUHqABF4wieZyAVaLI6JnK7/mPVG65OCfM6VcSRQcw7g4mxHI8nTWlnwlzpwFnqXnI/KBco00ccUJvOLg== + +basscss-type-scale@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/basscss-type-scale/-/basscss-type-scale-1.0.6.tgz#f2a4d77252f7119414aa7baf9df290c6921c0542" + integrity sha512-93KOVRr5iX0e38d6+k2pQ8WW1IA5DigQhJextts4rwbSt2+cr+XrokGJ74HB8LevO54HMoc3VJ8M6oOR2puc8A== + +basscss-typography@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/basscss-typography/-/basscss-typography-3.0.4.tgz#ec946a2bad8dd1af97be9ea108ad4bb7be932464" + integrity sha512-PMCxUfYPpAj8gQV8qI09lfNp7eWNrKtQFkCN2fZjLyReSY/wnw8QP8irpvbJ67vSEhlkA6ZP8j7vmTDoxkyu8g== + +basscss@^8.0.2: + version "8.1.0" + resolved "https://registry.yarnpkg.com/basscss/-/basscss-8.1.0.tgz#ede4ed0a8a8433fa18edda90a90d2311d1223695" + integrity sha512-SJ48HWDKqX1OnzeZgqwweFPVM98h0lNtvC+megWPCEJ1R6LIbx6dnj3rpCJueElVn9giWipZhoozMEBRAIlnUw== + dependencies: + basscss-align "^1.0.2" + basscss-border "^4.0.2" + basscss-flexbox "^1.0.2" + basscss-grid "^2.0.0" + basscss-hide "^1.0.1" + basscss-layout "^3.1.0" + basscss-margin "^1.0.9" + basscss-padding "^1.1.3" + basscss-position "^2.0.3" + basscss-type-scale "^1.0.6" + basscss-typography "^3.0.4" + +batch@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" + integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== + +bcrypt-pbkdf@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + integrity sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w== + dependencies: + tweetnacl "^0.14.3" + +big-integer@^1.6.16: + version "1.6.51" + resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.51.tgz#0df92a5d9880560d3ff2d5fd20245c889d130686" + integrity sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg== + +big.js@^5.2.2: + version "5.2.2" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== + +binary-extensions@^1.0.0: + version "1.13.1" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" + integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== + +binary-extensions@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + +bindings@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + +block-stream@*: + version "0.0.9" + resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" + integrity sha512-OorbnJVPII4DuUKbjARAe8u8EfqOmkEEaSFIyoQ7OjTHn6kafxWl0wLgoZ2rXaYd7MyLcDaU4TmhfxtwgcccMQ== + dependencies: + inherits "~2.0.0" + +bluebird@^3.5.5: + version "3.7.2" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== + +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: + version "4.12.0" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + +bn.js@^5.0.0, bn.js@^5.1.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.1.tgz#0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70" + integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== + +body-parser@1.20.1: + version "1.20.1" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" + 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" + +bonjour@^3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5" + integrity sha512-RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg== + dependencies: + array-flatten "^2.1.0" + deep-equal "^1.0.1" + dns-equal "^1.0.0" + dns-txt "^2.0.2" + multicast-dns "^6.0.1" + multicast-dns-service-types "^1.1.0" + +boolbase@^1.0.0, boolbase@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^2.3.1, braces@^2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" + integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== + dependencies: + arr-flatten "^1.1.0" + array-unique "^0.3.2" + extend-shallow "^2.0.1" + fill-range "^4.0.0" + isobject "^3.0.1" + repeat-element "^1.1.2" + snapdragon "^0.8.1" + snapdragon-node "^2.0.1" + split-string "^3.0.2" + to-regex "^3.0.1" + +braces@^3.0.2, braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +broadcast-channel@^3.4.1: + version "3.7.0" + resolved "https://registry.yarnpkg.com/broadcast-channel/-/broadcast-channel-3.7.0.tgz#2dfa5c7b4289547ac3f6705f9c00af8723889937" + integrity sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg== + dependencies: + "@babel/runtime" "^7.7.2" + detect-node "^2.1.0" + js-sha3 "0.8.0" + microseconds "0.2.0" + nano-time "1.0.0" + oblivious-set "1.0.0" + rimraf "3.0.2" + unload "2.2.0" + +brorand@^1.0.1, brorand@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w== + +browser-process-hrtime@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" + integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== + +browser-resolve@^1.11.3: + version "1.11.3" + resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" + integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ== + dependencies: + resolve "1.1.7" + +browserify-aes@^1.0.0, browserify-aes@^1.0.4: + version "1.2.0" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" + integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== + dependencies: + buffer-xor "^1.0.3" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.3" + inherits "^2.0.1" + safe-buffer "^5.0.1" + +browserify-cipher@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" + integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" + integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d" + integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog== + dependencies: + bn.js "^5.0.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3" + integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg== + dependencies: + bn.js "^5.1.1" + browserify-rsa "^4.0.1" + create-hash "^1.2.0" + create-hmac "^1.1.7" + elliptic "^6.5.3" + inherits "^2.0.4" + parse-asn1 "^5.1.5" + readable-stream "^3.6.0" + safe-buffer "^5.2.0" + +browserify-zlib@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" + integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== + dependencies: + pako "~1.0.5" + +browserslist@4.10.0: + version "4.10.0" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.10.0.tgz#f179737913eaf0d2b98e4926ac1ca6a15cbcc6a9" + integrity sha512-TpfK0TDgv71dzuTsEAlQiHeWQ/tiPqgNZVdv046fvNtBZrjbv2O3TsWCDU0AWGJJKCF/KsjNdLzR9hXOsh/CfA== + dependencies: + caniuse-lite "^1.0.30001035" + electron-to-chromium "^1.3.378" + node-releases "^1.1.52" + pkg-up "^3.1.0" + +browserslist@4.14.2: + version "4.14.2" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.2.tgz#1b3cec458a1ba87588cc5e9be62f19b6d48813ce" + integrity sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw== + dependencies: + caniuse-lite "^1.0.30001125" + electron-to-chromium "^1.3.564" + escalade "^3.0.2" + node-releases "^1.1.61" + +browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.21.3, browserslist@^4.21.4, browserslist@^4.6.2, browserslist@^4.6.4, browserslist@^4.9.1: + version "4.21.5" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" + integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== + dependencies: + caniuse-lite "^1.0.30001449" + electron-to-chromium "^1.4.284" + node-releases "^2.0.8" + update-browserslist-db "^1.0.10" + +bser@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== + dependencies: + node-int64 "^0.4.0" + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +buffer-indexof@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c" + integrity sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g== + +buffer-xor@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + integrity sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ== + +buffer@^4.3.0: + version "4.9.2" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8" + integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg== + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + isarray "^1.0.0" + +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + integrity sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ== + +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== + +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== + +cacache@^12.0.2: + version "12.0.4" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.4.tgz#668bcbd105aeb5f1d92fe25570ec9525c8faa40c" + integrity sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ== + dependencies: + bluebird "^3.5.5" + chownr "^1.1.1" + figgy-pudding "^3.5.1" + glob "^7.1.4" + graceful-fs "^4.1.15" + infer-owner "^1.0.3" + lru-cache "^5.1.1" + mississippi "^3.0.0" + mkdirp "^0.5.1" + move-concurrently "^1.0.1" + promise-inflight "^1.0.1" + rimraf "^2.6.3" + ssri "^6.0.1" + unique-filename "^1.1.1" + y18n "^4.0.0" + +cacache@^13.0.1: + version "13.0.1" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-13.0.1.tgz#a8000c21697089082f85287a1aec6e382024a71c" + integrity sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w== + dependencies: + chownr "^1.1.2" + figgy-pudding "^3.5.1" + fs-minipass "^2.0.0" + glob "^7.1.4" + graceful-fs "^4.2.2" + infer-owner "^1.0.4" + lru-cache "^5.1.1" + minipass "^3.0.0" + minipass-collect "^1.0.2" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.2" + mkdirp "^0.5.1" + move-concurrently "^1.0.1" + p-map "^3.0.0" + promise-inflight "^1.0.1" + rimraf "^2.7.1" + ssri "^7.0.0" + unique-filename "^1.1.1" + +cache-base@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" + integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== + dependencies: + collection-visit "^1.0.0" + component-emitter "^1.2.1" + get-value "^2.0.6" + has-value "^1.0.0" + isobject "^3.0.1" + set-value "^2.0.0" + to-object-path "^0.3.0" + union-value "^1.0.0" + unset-value "^1.0.0" + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + +call-me-maybe@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.2.tgz#03f964f19522ba643b1b0693acb9152fe2074baa" + integrity sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ== + +caller-callsite@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" + integrity sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ== + dependencies: + callsites "^2.0.0" + +caller-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" + integrity sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A== + dependencies: + caller-callsite "^2.0.0" + +callsites@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + integrity sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ== + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camel-case@^4.1.1: + version "4.1.2" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" + integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== + dependencies: + pascal-case "^3.1.2" + tslib "^2.0.3" + +camelcase-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" + integrity sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ== + dependencies: + camelcase "^2.0.0" + map-obj "^1.0.0" + +camelcase@5.3.1, camelcase@^5.0.0, camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelcase@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" + integrity sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw== + +camelize@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.1.tgz#89b7e16884056331a35d6b5ad064332c91daa6c3" + integrity sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ== + +caniuse-api@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" + 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" + +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001035, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.30001449: + version "1.0.30001450" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001450.tgz#022225b91200589196b814b51b1bbe45144cf74f" + integrity sha512-qMBmvmQmFXaSxexkjjfMvD5rnDL0+m+dUMZKoDYsGG8iZN29RuYh9eRoMvKsT6uMAWlyUUGDEQGJJYjzCIO9ew== + +capture-exit@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" + integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== + dependencies: + rsvp "^4.8.4" + +case-sensitive-paths-webpack-plugin@2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz#23ac613cc9a856e4f88ff8bb73bbb5e989825cf7" + integrity sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ== + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== + +chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + 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" + +chalk@^1.1.1, chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A== + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" + integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chalk@^4.0.0, chalk@^4.1.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + +chokidar@^2.1.8: + version "2.1.8" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" + integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== + dependencies: + anymatch "^2.0.0" + async-each "^1.0.1" + braces "^2.3.2" + glob-parent "^3.1.0" + inherits "^2.0.3" + is-binary-path "^1.0.0" + is-glob "^4.0.0" + normalize-path "^3.0.0" + path-is-absolute "^1.0.0" + readdirp "^2.2.1" + upath "^1.1.1" + optionalDependencies: + fsevents "^1.2.7" + +chokidar@^3.3.0, chokidar@^3.4.1: + version "3.5.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== + 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" + optionalDependencies: + fsevents "~2.3.2" + +chownr@^1.1.1, chownr@^1.1.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" + integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== + +chrome-trace-event@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" + integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== + +ci-info@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" + integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== + +cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +class-utils@^0.3.5: + version "0.3.6" + resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" + integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== + dependencies: + arr-union "^3.1.0" + define-property "^0.2.5" + isobject "^3.0.0" + static-extend "^0.1.1" + +classnames@^2.2, classnames@^2.2.6: + version "2.3.2" + resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.2.tgz#351d813bf0137fcc6a76a16b88208d2560a0d924" + integrity sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw== + +clean-css@^4.2.3: + version "4.2.4" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.4.tgz#733bf46eba4e607c6891ea57c24a989356831178" + integrity sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A== + dependencies: + source-map "~0.6.0" + +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + +cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== + dependencies: + restore-cursor "^3.1.0" + +cli-width@^2.0.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" + integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== + +cli-width@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6" + integrity sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw== + +cliui@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" + integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== + dependencies: + string-width "^3.1.0" + strip-ansi "^5.2.0" + wrap-ansi "^5.1.0" + +clone-deep@^0.2.4: + version "0.2.4" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-0.2.4.tgz#4e73dd09e9fb971cc38670c5dced9c1896481cc6" + integrity sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg== + dependencies: + for-own "^0.1.3" + is-plain-object "^2.0.1" + kind-of "^3.0.2" + lazy-cache "^1.0.3" + shallow-clone "^0.1.2" + +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + +clsx@^1.0.4, clsx@^1.1.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.2.1.tgz#0ddc4a20a549b59c93a4116bb26f5294ca17dc12" + integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg== + +cnbuilder@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cnbuilder/-/cnbuilder-3.1.0.tgz#1f7b92a466059a0131f3157f200ac13dc4311ea5" + integrity sha512-9sxWwwprkPNTVQnx92WYPEWCmyZRqbf9VWUYABU4rl0mLL17VAV2MvvOApkMA6bQVXRLJ8jN//8Yp6drElpLWA== + +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== + +coa@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3" + integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== + dependencies: + "@types/q" "^1.5.1" + chalk "^2.4.1" + q "^1.1.2" + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + integrity sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA== + +collection-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" + integrity sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw== + dependencies: + map-visit "^1.0.0" + object-visit "^1.0.0" + +color-convert@^1.9.0, color-convert@^1.9.3: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@^1.0.0, color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +color-string@^1.6.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4" + integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg== + dependencies: + color-name "^1.0.0" + simple-swizzle "^0.2.2" + +color@^3.0.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/color/-/color-3.2.1.tgz#3544dc198caf4490c3ecc9a790b54fe9ff45e164" + integrity sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA== + dependencies: + color-convert "^1.9.3" + color-string "^1.6.0" + +combined-stream@^1.0.6, combined-stream@~1.0.6: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@^2.11.0, commander@^2.15.1, commander@^2.20.0: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +commander@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" + integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + +common-tags@^1.8.0: + version "1.8.2" + resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.2.tgz#94ebb3c076d26032745fd54face7f688ef5ac9c6" + integrity sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA== + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== + +component-emitter@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" + integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== + +compose-function@3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/compose-function/-/compose-function-3.0.3.tgz#9ed675f13cc54501d30950a486ff6a7ba3ab185f" + integrity sha512-xzhzTJ5eC+gmIzvZq+C3kCJHsp9os6tJkrigDRZclyGtOKINbZtE8n1Tzmeh32jW+BUDPbvZpibwvJHBLGMVwg== + dependencies: + arity-n "^1.0.4" + +compressible@~2.0.16: + version "2.0.18" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== + dependencies: + mime-db ">= 1.43.0 < 2" + +compression@^1.7.4: + version "1.7.4" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + 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" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +concat-stream@^1.5.0: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +confusing-browser-globals@^1.0.9: + version "1.0.11" + resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz#ae40e9b57cdd3915408a2805ebd3a5585608dc81" + integrity sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA== + +connect-history-api-fallback@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc" + integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg== + +console-browserify@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" + integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== + +console-control-strings@^1.0.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== + +constants-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + integrity sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ== + +contains-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" + integrity sha512-OKZnPGeMQy2RPaUIBPFFd71iNf4791H12MCRuVQDnzGRwCYNYmTDy5pdafo2SLAcEMKzTOQnLWG4QdcjeJUMEg== + +content-disposition@0.5.4: + version "0.5.4" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" + integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== + dependencies: + safe-buffer "5.2.1" + +content-type@~1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" + integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== + +convert-source-map@1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" + integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== + dependencies: + safe-buffer "~5.1.1" + +convert-source-map@^0.3.3: + version "0.3.5" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-0.3.5.tgz#f1d802950af7dd2631a1febe0596550c86ab3190" + integrity sha512-+4nRk0k3oEpwUB7/CalD7xE2z4VmtEnnq0GO2IPTkrooTrAhEsWvuLF5iWP1dXrwluki/azwXV1ve7gtYuPldg== + +convert-source-map@^1.4.0, convert-source-map@^1.7.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== + +cookie@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" + integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== + +cookie@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" + integrity sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw== + +copy-concurrently@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" + integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A== + dependencies: + aproba "^1.1.1" + fs-write-stream-atomic "^1.0.8" + iferr "^0.1.5" + mkdirp "^0.5.1" + rimraf "^2.5.4" + run-queue "^1.0.0" + +copy-descriptor@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" + integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw== + +copy-to-clipboard@^3.2.0: + version "3.3.3" + resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz#55ac43a1db8ae639a4bd99511c148cdd1b83a1b0" + integrity sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA== + dependencies: + toggle-selection "^1.0.6" + +core-js-compat@^3.25.1, core-js-compat@^3.6.2: + version "3.27.2" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.27.2.tgz#607c50ad6db8fd8326af0b2883ebb987be3786da" + integrity sha512-welaYuF7ZtbYKGrIy7y3eb40d37rG1FvzEOfe7hSLd2iD6duMDqUhRfSvCGyC46HhR6Y8JXXdZ2lnRUMkPBpvg== + dependencies: + browserslist "^4.21.4" + +core-js-pure@^3.25.1: + version "3.27.2" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.27.2.tgz#47e9cc96c639eefc910da03c3ece26c5067c7553" + integrity sha512-Cf2jqAbXgWH3VVzjyaaFkY1EBazxugUepGymDoeteyYr9ByX51kD2jdHZlsEF/xnJMyN3Prua7mQuzwMg6Zc9A== + +core-js@^2.4.0: + version "2.6.12" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.12.tgz#d9333dfa7b065e347cc5682219d6f690859cc2ec" + integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== + +core-js@^3.5.0: + version "3.27.2" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.27.2.tgz#85b35453a424abdcacb97474797815f4d62ebbf7" + integrity sha512-9ashVQskuh5AZEZ1JdQWp1GqSoC1e1G87MzRqg2gIfVAQ7Qn9K+uFj8EcniUFA4P2NLZfV+TOlX1SzoKfo+s7w== + +core-util-is@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ== + +core-util-is@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== + +cosmiconfig@^5.0.0, cosmiconfig@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" + integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== + dependencies: + import-fresh "^2.0.0" + is-directory "^0.3.1" + js-yaml "^3.13.1" + parse-json "^4.0.0" + +cosmiconfig@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" + 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" + +create-ecdh@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" + integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== + dependencies: + bn.js "^4.1.0" + elliptic "^6.5.3" + +create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" + integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + md5.js "^1.3.4" + ripemd160 "^2.0.1" + sha.js "^2.4.0" + +create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" + integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== + dependencies: + cipher-base "^1.0.3" + create-hash "^1.1.0" + inherits "^2.0.1" + ripemd160 "^2.0.0" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +cross-env@^7.0.2: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-env/-/cross-env-7.0.3.tgz#865264b29677dc015ba8418918965dd232fc54cf" + integrity sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw== + dependencies: + cross-spawn "^7.0.1" + +cross-spawn@7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.1.tgz#0ab56286e0f7c24e153d04cc2aa027e43a9a5d14" + integrity sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +cross-spawn@7.0.3, cross-spawn@^7.0.0, cross-spawn@^7.0.1: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +cross-spawn@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" + integrity sha512-eZ+m1WNhSZutOa/uRblAc9Ut5MQfukFrFMtPSm3bZCA888NmMd5AWXWdgRZ80zd+pTk1P2JrGjg9pUPTvl2PWQ== + dependencies: + lru-cache "^4.0.1" + which "^1.2.9" + +cross-spawn@^6.0.0, cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +crypto-browserify@^3.11.0: + version "3.12.0" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" + integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + randomfill "^1.0.3" + +css-blank-pseudo@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz#dfdefd3254bf8a82027993674ccf35483bfcb3c5" + integrity sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w== + dependencies: + postcss "^7.0.5" + +css-color-keywords@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05" + integrity sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg== + +css-color-names@0.0.4, css-color-names@^0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" + integrity sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q== + +css-declaration-sorter@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22" + integrity sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA== + dependencies: + postcss "^7.0.1" + timsort "^0.3.0" + +css-has-pseudo@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz#3c642ab34ca242c59c41a125df9105841f6966ee" + integrity sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ== + dependencies: + postcss "^7.0.6" + postcss-selector-parser "^5.0.0-rc.4" + +css-in-js-utils@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/css-in-js-utils/-/css-in-js-utils-3.1.0.tgz#640ae6a33646d401fc720c54fc61c42cd76ae2bb" + integrity sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A== + dependencies: + hyphenate-style-name "^1.0.3" + +css-loader@3.4.2: + version "3.4.2" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.4.2.tgz#d3fdb3358b43f233b78501c5ed7b1c6da6133202" + integrity sha512-jYq4zdZT0oS0Iykt+fqnzVLRIeiPWhka+7BqPn+oSIpWJAHak5tmB/WZrJ2a21JhCeFyNnnlroSl8c+MtVndzA== + dependencies: + camelcase "^5.3.1" + cssesc "^3.0.0" + icss-utils "^4.1.1" + loader-utils "^1.2.3" + normalize-path "^3.0.0" + postcss "^7.0.23" + postcss-modules-extract-imports "^2.0.0" + postcss-modules-local-by-default "^3.0.2" + postcss-modules-scope "^2.1.1" + postcss-modules-values "^3.0.0" + postcss-value-parser "^4.0.2" + schema-utils "^2.6.0" + +css-prefers-color-scheme@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz#6f830a2714199d4f0d0d0bb8a27916ed65cff1f4" + integrity sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg== + dependencies: + postcss "^7.0.5" + +css-select-base-adapter@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" + integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== + +css-select@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef" + integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== + dependencies: + boolbase "^1.0.0" + css-what "^3.2.1" + domutils "^1.7.0" + nth-check "^1.0.2" + +css-select@^4.1.3: + version "4.3.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" + 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" + +css-to-react-native@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-3.1.0.tgz#e783474149997608986afcff614405714a8fe1ac" + integrity sha512-AryfkFA29b4I3vG7N4kxFboq15DxwSXzhXM37XNEjwJMgjYIc8BcqfiprpAqX0zadI5PMByEIwAMzXxk5Vcc4g== + dependencies: + camelize "^1.0.0" + css-color-keywords "^1.0.0" + postcss-value-parser "^4.0.2" + +css-tree@1.0.0-alpha.37: + version "1.0.0-alpha.37" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22" + integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg== + dependencies: + mdn-data "2.0.4" + source-map "^0.6.1" + +css-tree@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" + integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== + dependencies: + mdn-data "2.0.14" + source-map "^0.6.1" + +css-what@^3.2.1: + version "3.4.2" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.4.2.tgz#ea7026fcb01777edbde52124e21f327e7ae950e4" + integrity sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ== + +css-what@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" + integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== + +css.escape@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" + integrity sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg== + +css@^2.0.0, css@^2.2.3: + version "2.2.4" + resolved "https://registry.yarnpkg.com/css/-/css-2.2.4.tgz#c646755c73971f2bba6a601e2cf2fd71b1298929" + integrity sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw== + dependencies: + inherits "^2.0.3" + source-map "^0.6.1" + source-map-resolve "^0.5.2" + urix "^0.1.0" + +cssdb@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-4.4.0.tgz#3bf2f2a68c10f5c6a08abd92378331ee803cddb0" + integrity sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ== + +cssesc@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703" + integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg== + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +cssnano-preset-default@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz#920622b1fc1e95a34e8838203f1397a504f2d3ff" + integrity sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ== + dependencies: + css-declaration-sorter "^4.0.1" + cssnano-util-raw-cache "^4.0.1" + postcss "^7.0.0" + postcss-calc "^7.0.1" + postcss-colormin "^4.0.3" + postcss-convert-values "^4.0.1" + postcss-discard-comments "^4.0.2" + postcss-discard-duplicates "^4.0.2" + postcss-discard-empty "^4.0.1" + postcss-discard-overridden "^4.0.1" + postcss-merge-longhand "^4.0.11" + postcss-merge-rules "^4.0.3" + postcss-minify-font-values "^4.0.2" + postcss-minify-gradients "^4.0.2" + postcss-minify-params "^4.0.2" + postcss-minify-selectors "^4.0.2" + postcss-normalize-charset "^4.0.1" + postcss-normalize-display-values "^4.0.2" + postcss-normalize-positions "^4.0.2" + postcss-normalize-repeat-style "^4.0.2" + postcss-normalize-string "^4.0.2" + postcss-normalize-timing-functions "^4.0.2" + postcss-normalize-unicode "^4.0.1" + postcss-normalize-url "^4.0.1" + postcss-normalize-whitespace "^4.0.2" + postcss-ordered-values "^4.1.2" + postcss-reduce-initial "^4.0.3" + postcss-reduce-transforms "^4.0.2" + postcss-svgo "^4.0.3" + postcss-unique-selectors "^4.0.1" + +cssnano-util-get-arguments@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f" + integrity sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw== + +cssnano-util-get-match@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d" + integrity sha512-JPMZ1TSMRUPVIqEalIBNoBtAYbi8okvcFns4O0YIhcdGebeYZK7dMyHJiQ6GqNBA9kE0Hym4Aqym5rPdsV/4Cw== + +cssnano-util-raw-cache@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282" + integrity sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA== + dependencies: + postcss "^7.0.0" + +cssnano-util-same-parent@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3" + integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q== + +cssnano@^4.1.10: + version "4.1.11" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.11.tgz#c7b5f5b81da269cb1fd982cb960c1200910c9a99" + integrity sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g== + dependencies: + cosmiconfig "^5.0.0" + cssnano-preset-default "^4.0.8" + is-resolvable "^1.0.0" + postcss "^7.0.0" + +csso@^4.0.2: + version "4.2.0" + resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" + integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== + dependencies: + css-tree "^1.1.2" + +cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0", cssom@^0.3.4: + version "0.3.8" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" + integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== + +cssstyle@^1.0.0, cssstyle@^1.1.1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.4.0.tgz#9d31328229d3c565c61e586b02041a28fccdccf1" + integrity sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA== + dependencies: + cssom "0.3.x" + +csstype@^3.0.2, csstype@^3.0.6: + version "3.1.1" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.1.tgz#841b532c45c758ee546a11d5bd7b7b473c8c30b9" + integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw== + +currently-unhandled@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" + integrity sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng== + dependencies: + array-find-index "^1.0.1" + +cyclist@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" + integrity sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A== + +d@1, d@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" + integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== + dependencies: + es5-ext "^0.10.50" + type "^1.0.1" + +damerau-levenshtein@^1.0.4, damerau-levenshtein@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" + integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + integrity sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g== + dependencies: + assert-plus "^1.0.0" + +data-urls@^1.0.0, data-urls@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" + integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== + dependencies: + abab "^2.0.0" + whatwg-mimetype "^2.2.0" + whatwg-url "^7.0.0" + +debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^3.2.5, debug@^3.2.7: + version "3.2.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + +debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.4: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +decamelize@^1.1.2, decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== + +decode-uri-component@^0.2.0, decode-uri-component@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" + integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== + +deep-equal@^1.0.1, deep-equal@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a" + integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g== + dependencies: + is-arguments "^1.0.4" + is-date-object "^1.0.1" + is-regex "^1.0.4" + object-is "^1.0.1" + object-keys "^1.1.1" + regexp.prototype.flags "^1.2.0" + +deep-equal@^2.0.5: + version "2.2.0" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.0.tgz#5caeace9c781028b9ff459f33b779346637c43e6" + integrity sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw== + dependencies: + call-bind "^1.0.2" + es-get-iterator "^1.1.2" + get-intrinsic "^1.1.3" + is-arguments "^1.1.1" + is-array-buffer "^3.0.1" + 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.4.3" + side-channel "^1.0.4" + which-boxed-primitive "^1.0.2" + which-collection "^1.0.1" + which-typed-array "^1.1.9" + +deep-is@~0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +deep-map-keys@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/deep-map-keys/-/deep-map-keys-2.0.1.tgz#a61d6bf1dee01de732d6ca6667ed27303580d7b3" + integrity sha512-hvsUEzDow++fTMwM2f2S7ttG39Y20mprBGwsydPpgmHwPQGwG10KJW44JgYVImJtXlDY983jIiqU9W2+DS2yzg== + dependencies: + es6-weak-map "^2.0.1" + lodash "^4.13.1" + +deepdash@^5.3.9: + version "5.3.9" + resolved "https://registry.yarnpkg.com/deepdash/-/deepdash-5.3.9.tgz#2aa92570d7b1787ed281e2fafe0be24df00ddfe4" + integrity sha512-GRzJ0q9PDj2T+J2fX+b+TlUa2NlZ11l6vJ8LHNKVGeZ8CfxCuJaCychTq07iDRTvlfO8435jlvVS1QXBrW9kMg== + dependencies: + lodash "^4.17.21" + lodash-es "^4.17.21" + +deepmerge@^2.1.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-2.2.1.tgz#5d3ff22a01c00f645405a2fbc17d0778a1801170" + integrity sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA== + +default-gateway@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-4.2.0.tgz#167104c7500c2115f6dd69b0a536bb8ed720552b" + integrity sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA== + dependencies: + execa "^1.0.0" + ip-regex "^2.1.0" + +define-properties@^1.1.2, define-properties@^1.1.3, define-properties@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" + integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +define-property@^0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" + integrity sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA== + dependencies: + is-descriptor "^0.1.0" + +define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" + integrity sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA== + dependencies: + is-descriptor "^1.0.0" + +define-property@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" + integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== + dependencies: + is-descriptor "^1.0.2" + isobject "^3.0.1" + +del@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/del/-/del-4.1.1.tgz#9e8f117222ea44a31ff3a156c049b99052a9f0b4" + integrity sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ== + dependencies: + "@types/glob" "^7.1.1" + globby "^6.1.0" + is-path-cwd "^2.0.0" + is-path-in-cwd "^2.0.0" + p-map "^2.0.0" + pify "^4.0.1" + rimraf "^2.6.3" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== + +depd@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + +depd@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== + +dependency-graph@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/dependency-graph/-/dependency-graph-0.11.0.tgz#ac0ce7ed68a54da22165a85e97a01d53f5eb2e27" + integrity sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg== + +des.js@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" + integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA== + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +destroy@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== + +detect-newline@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" + integrity sha512-CwffZFvlJffUg9zZA0uqrjQayUTC8ob94pnr5sFwaVv3IOmkfUHcWH+jXaQK3askE51Cqe8/9Ql/0uXNwqZ8Zg== + +detect-node@^2.0.4, detect-node@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" + integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== + +detect-port-alt@1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.6.tgz#24707deabe932d4a3cf621302027c2b266568275" + integrity sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q== + dependencies: + address "^1.0.1" + debug "^2.6.0" + +diff-sequences@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.9.0.tgz#5715d6244e2aa65f48bba0bc972db0b0b11e95b5" + integrity sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew== + +diff-sequences@^26.6.2: + version "26.6.2" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1" + integrity sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q== + +diffie-hellman@^5.0.0: + version "5.0.3" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" + integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + +dir-glob@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034" + integrity sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag== + dependencies: + arrify "^1.0.1" + path-type "^3.0.0" + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +dns-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" + integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg== + +dns-packet@^1.3.1: + version "1.3.4" + resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.3.4.tgz#e3455065824a2507ba886c55a89963bb107dec6f" + integrity sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA== + dependencies: + ip "^1.1.0" + safe-buffer "^5.0.1" + +dns-txt@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6" + integrity sha512-Ix5PrWjphuSoUXV/Zv5gaFHjnaJtb02F2+Si3Ht9dyJ87+Z/lMmy+dpNHtTGraNK958ndXq2i+GLkWsWHcKaBQ== + dependencies: + buffer-indexof "^1.0.0" + +doctrine@1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" + integrity sha512-lsGyRuYr4/PIB0txi+Fy2xOMI2dGaTguCaotzFGkVZuKR5usKfcRWIFKNM3QNrU7hh/+w2bwTW+ZeXPK5l8uVg== + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + +doctrine@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== + dependencies: + esutils "^2.0.2" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +dom-accessibility-api@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.3.0.tgz#511e5993dd673b97c87ea47dba0e3892f7e0c983" + integrity sha512-PzwHEmsRP3IGY4gv/Ug+rMeaTIyTJvadCb+ujYXYeIylbHJezIyNToe8KfEgHTCEYyC+/bUghYOGg8yMGlZ6vA== + +dom-accessibility-api@^0.5.9: + version "0.5.16" + resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz#5a7429e6066eb3664d911e33fb0e45de8eb08453" + integrity sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg== + +dom-converter@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" + integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== + dependencies: + utila "~0.4" + +dom-helpers@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.4.0.tgz#e9b369700f959f62ecde5a6babde4bccd9169af8" + integrity sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA== + dependencies: + "@babel/runtime" "^7.1.2" + +dom-helpers@^5.0.1, dom-helpers@^5.1.3: + version "5.2.1" + resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902" + integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA== + dependencies: + "@babel/runtime" "^7.8.7" + csstype "^3.0.2" + +dom-serializer@0: + version "0.2.2" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" + integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== + dependencies: + domelementtype "^2.0.1" + entities "^2.0.0" + +dom-serializer@^1.0.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" + integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.2.0" + entities "^2.0.0" + +dom4@^2.1.5: + version "2.1.6" + resolved "https://registry.yarnpkg.com/dom4/-/dom4-2.1.6.tgz#c90df07134aa0dbd81ed4d6ba1237b36fc164770" + integrity sha512-JkCVGnN4ofKGbjf5Uvc8mmxaATIErKQKSgACdBXpsQ3fY6DlIpAyWfiBSrGkttATssbDCp3psiAKWXk5gmjycA== + +domain-browser@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" + integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== + +domelementtype@1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" + integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== + +domelementtype@^2.0.1, domelementtype@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domexception@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" + integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== + dependencies: + webidl-conversions "^4.0.2" + +domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" + integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== + dependencies: + domelementtype "^2.2.0" + +domutils@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" + integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== + dependencies: + dom-serializer "0" + domelementtype "1" + +domutils@^2.5.2, domutils@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" + integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== + dependencies: + dom-serializer "^1.0.1" + domelementtype "^2.2.0" + domhandler "^4.2.0" + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +dot-prop@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.3.0.tgz#90ccce708cd9cd82cc4dc8c3ddd9abdd55b20e88" + integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== + dependencies: + is-obj "^2.0.0" + +dotenv-expand@5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0" + integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== + +dotenv@8.2.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" + integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== + +duplexer@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" + integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== + +duplexify@^3.4.2, duplexify@^3.6.0: + version "3.7.1" + resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" + integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== + dependencies: + end-of-stream "^1.0.0" + inherits "^2.0.1" + readable-stream "^2.0.0" + stream-shift "^1.0.0" + +ecc-jsbn@~0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" + integrity sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw== + dependencies: + jsbn "~0.1.0" + safer-buffer "^2.1.0" + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== + +electron-to-chromium@^1.3.378, electron-to-chromium@^1.3.564, electron-to-chromium@^1.4.284: + version "1.4.284" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592" + integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA== + +elliptic@^6.5.3: + version "6.5.4" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== + dependencies: + bn.js "^4.11.9" + brorand "^1.1.0" + hash.js "^1.0.0" + hmac-drbg "^1.0.1" + inherits "^2.0.4" + minimalistic-assert "^1.0.1" + minimalistic-crypto-utils "^1.0.1" + +emoji-regex@^7.0.1, emoji-regex@^7.0.2: + version "7.0.3" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" + integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +emoji-regex@^9.2.2: + version "9.2.2" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== + +emojis-list@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" + integrity sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng== + +emojis-list@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" + integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== + +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== + +end-of-stream@^1.0.0, end-of-stream@^1.1.0: + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + +enhanced-resolve@^4.1.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz#2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec" + integrity sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg== + dependencies: + graceful-fs "^4.1.2" + memory-fs "^0.5.0" + tapable "^1.0.0" + +entities@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +errno@^0.1.3, errno@~0.1.7: + version "0.1.8" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f" + integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A== + dependencies: + prr "~1.0.1" + +error-ex@^1.2.0, error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +error-stack-parser@^2.0.6: + version "2.1.4" + resolved "https://registry.yarnpkg.com/error-stack-parser/-/error-stack-parser-2.1.4.tgz#229cb01cdbfa84440bfa91876285b94680188286" + integrity sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ== + dependencies: + stackframe "^1.3.4" + +es-abstract@^1.17.2, es-abstract@^1.19.0, es-abstract@^1.20.4: + version "1.21.1" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.1.tgz#e6105a099967c08377830a0c9cb589d570dd86c6" + integrity sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-set-tostringtag "^2.0.1" + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.1.3" + get-symbol-description "^1.0.0" + globalthis "^1.0.3" + gopd "^1.0.1" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-proto "^1.0.1" + has-symbols "^1.0.3" + internal-slot "^1.0.4" + is-array-buffer "^3.0.1" + 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.10" + is-weakref "^1.0.2" + object-inspect "^1.12.2" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.4.3" + safe-regex-test "^1.0.0" + string.prototype.trimend "^1.0.6" + string.prototype.trimstart "^1.0.6" + typed-array-length "^1.0.4" + unbox-primitive "^1.0.2" + which-typed-array "^1.1.9" + +es-array-method-boxes-properly@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e" + integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== + +es-get-iterator@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6" + 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" + +es-set-tostringtag@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" + integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== + dependencies: + get-intrinsic "^1.1.3" + has "^1.0.3" + has-tostringtag "^1.0.0" + +es-shim-unscopables@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" + integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== + dependencies: + has "^1.0.3" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +es5-ext@^0.10.35, es5-ext@^0.10.46, es5-ext@^0.10.50: + version "0.10.62" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.62.tgz#5e6adc19a6da524bf3d1e02bbc8960e5eb49a9a5" + integrity sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA== + dependencies: + es6-iterator "^2.0.3" + es6-symbol "^3.1.3" + next-tick "^1.1.0" + +es6-iterator@2.0.3, es6-iterator@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" + integrity sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g== + dependencies: + d "1" + es5-ext "^0.10.35" + es6-symbol "^3.1.1" + +es6-symbol@^3.1.1, es6-symbol@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" + integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== + dependencies: + d "^1.0.1" + ext "^1.1.2" + +es6-weak-map@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.3.tgz#b6da1f16cc2cc0d9be43e6bdbfc5e7dfcdf31d53" + integrity sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA== + dependencies: + d "1" + es5-ext "^0.10.46" + es6-iterator "^2.0.3" + es6-symbol "^3.1.1" + +escalade@^3.0.2, escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-html@^1.0.3, escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== + +escape-string-regexp@2.0.0, escape-string-regexp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== + +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +escodegen@^1.11.0, escodegen@^1.9.1: + version "1.14.3" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" + integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== + dependencies: + esprima "^4.0.1" + estraverse "^4.2.0" + esutils "^2.0.2" + optionator "^0.8.1" + optionalDependencies: + source-map "~0.6.1" + +eslint-config-custom@*: + version "0.0.0" + resolved "https://registry.yarnpkg.com/eslint-config-custom/-/eslint-config-custom-0.0.0.tgz#7829bdd98e657a63b03377538b5675c811247cf0" + integrity sha512-kwCw78yisbgKdJBJ5qooPmpBYDphDfM2oxSROmtfOwBXBwXuRiSV3suO01W3mVLEFpmQZxMWd/qajKpJhkKSug== + dependencies: + eslint-config-next "^12.0.8" + eslint-config-prettier "^8.3.0" + eslint-plugin-react "7.28.0" + +eslint-config-next@^12.0.8: + version "12.3.4" + resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.3.4.tgz#3d4d9e74b919b879c4cc79c61bdc388fb2b964ee" + integrity sha512-WuT3gvgi7Bwz00AOmKGhOeqnyA5P29Cdyr0iVjLyfDbk+FANQKcOjFUTZIdyYfe5Tq1x4TGcmoe4CwctGvFjHQ== + dependencies: + "@next/eslint-plugin-next" "12.3.4" + "@rushstack/eslint-patch" "^1.1.3" + "@typescript-eslint/parser" "^5.21.0" + eslint-import-resolver-node "^0.3.6" + eslint-import-resolver-typescript "^2.7.1" + eslint-plugin-import "^2.26.0" + eslint-plugin-jsx-a11y "^6.5.1" + eslint-plugin-react "^7.31.7" + eslint-plugin-react-hooks "^4.5.0" + +eslint-config-prettier@^8.3.0: + version "8.6.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.6.0.tgz#dec1d29ab728f4fa63061774e1672ac4e363d207" + integrity sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA== + +eslint-config-react-app@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/eslint-config-react-app/-/eslint-config-react-app-5.2.1.tgz#698bf7aeee27f0cea0139eaef261c7bf7dd623df" + integrity sha512-pGIZ8t0mFLcV+6ZirRgYK6RVqUIKRIi9MmgzUEmrIknsn3AdO0I32asO86dJgloHq+9ZPl8UIg8mYrvgP5u2wQ== + dependencies: + confusing-browser-globals "^1.0.9" + +eslint-import-resolver-node@^0.3.2, eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.7: + version "0.3.7" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz#83b375187d412324a1963d84fa664377a23eb4d7" + integrity sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA== + dependencies: + debug "^3.2.7" + is-core-module "^2.11.0" + resolve "^1.22.1" + +eslint-import-resolver-typescript@^2.7.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz#a90a4a1c80da8d632df25994c4c5fdcdd02b8751" + integrity sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ== + dependencies: + debug "^4.3.4" + glob "^7.2.0" + is-glob "^4.0.3" + resolve "^1.22.0" + tsconfig-paths "^3.14.1" + +eslint-loader@3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/eslint-loader/-/eslint-loader-3.0.3.tgz#e018e3d2722381d982b1201adb56819c73b480ca" + integrity sha512-+YRqB95PnNvxNp1HEjQmvf9KNvCin5HXYYseOXVC2U0KEcw4IkQ2IQEBG46j7+gW39bMzeu0GsUhVbBY3Votpw== + dependencies: + fs-extra "^8.1.0" + loader-fs-cache "^1.0.2" + loader-utils "^1.2.3" + object-hash "^2.0.1" + schema-utils "^2.6.1" + +eslint-module-utils@^2.4.1, eslint-module-utils@^2.7.4: + version "2.7.4" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz#4f3e41116aaf13a20792261e61d3a2e7e0583974" + integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA== + dependencies: + debug "^3.2.7" + +eslint-plugin-flowtype@4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-4.6.0.tgz#82b2bd6f21770e0e5deede0228e456cb35308451" + integrity sha512-W5hLjpFfZyZsXfo5anlu7HM970JBDqbEshAJUkeczP6BFCIfJXuiIBQXyberLRtOStT0OGPF8efeTbxlHk4LpQ== + dependencies: + lodash "^4.17.15" + +eslint-plugin-import@2.20.1: + version "2.20.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.20.1.tgz#802423196dcb11d9ce8435a5fc02a6d3b46939b3" + integrity sha512-qQHgFOTjguR+LnYRoToeZWT62XM55MBVXObHM6SKFd1VzDcX/vqT1kAz8ssqigh5eMj8qXcRoXXGZpPP6RfdCw== + dependencies: + array-includes "^3.0.3" + array.prototype.flat "^1.2.1" + contains-path "^0.1.0" + debug "^2.6.9" + doctrine "1.5.0" + eslint-import-resolver-node "^0.3.2" + eslint-module-utils "^2.4.1" + has "^1.0.3" + minimatch "^3.0.4" + object.values "^1.1.0" + read-pkg-up "^2.0.0" + resolve "^1.12.0" + +eslint-plugin-import@^2.26.0: + version "2.27.5" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz#876a6d03f52608a3e5bb439c2550588e51dd6c65" + integrity sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow== + dependencies: + array-includes "^3.1.6" + array.prototype.flat "^1.3.1" + array.prototype.flatmap "^1.3.1" + debug "^3.2.7" + doctrine "^2.1.0" + eslint-import-resolver-node "^0.3.7" + eslint-module-utils "^2.7.4" + has "^1.0.3" + is-core-module "^2.11.0" + is-glob "^4.0.3" + minimatch "^3.1.2" + object.values "^1.1.6" + resolve "^1.22.1" + semver "^6.3.0" + tsconfig-paths "^3.14.1" + +eslint-plugin-jsx-a11y@6.2.3: + version "6.2.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.3.tgz#b872a09d5de51af70a97db1eea7dc933043708aa" + integrity sha512-CawzfGt9w83tyuVekn0GDPU9ytYtxyxyFZ3aSWROmnRRFQFT2BiPJd7jvRdzNDi6oLWaS2asMeYSNMjWTV4eNg== + dependencies: + "@babel/runtime" "^7.4.5" + aria-query "^3.0.0" + array-includes "^3.0.3" + ast-types-flow "^0.0.7" + axobject-query "^2.0.2" + damerau-levenshtein "^1.0.4" + emoji-regex "^7.0.2" + has "^1.0.3" + jsx-ast-utils "^2.2.1" + +eslint-plugin-jsx-a11y@^6.5.1: + version "6.7.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz#fca5e02d115f48c9a597a6894d5bcec2f7a76976" + integrity sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA== + dependencies: + "@babel/runtime" "^7.20.7" + aria-query "^5.1.3" + array-includes "^3.1.6" + array.prototype.flatmap "^1.3.1" + ast-types-flow "^0.0.7" + axe-core "^4.6.2" + axobject-query "^3.1.1" + damerau-levenshtein "^1.0.8" + emoji-regex "^9.2.2" + has "^1.0.3" + jsx-ast-utils "^3.3.3" + language-tags "=1.0.5" + minimatch "^3.1.2" + object.entries "^1.1.6" + object.fromentries "^2.0.6" + semver "^6.3.0" + +eslint-plugin-react-hooks@^1.6.1: + version "1.7.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.7.0.tgz#6210b6d5a37205f0b92858f895a4e827020a7d04" + integrity sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA== + +eslint-plugin-react-hooks@^4.5.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" + integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== + +eslint-plugin-react@7.19.0: + version "7.19.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.19.0.tgz#6d08f9673628aa69c5559d33489e855d83551666" + integrity sha512-SPT8j72CGuAP+JFbT0sJHOB80TX/pu44gQ4vXH/cq+hQTiY2PuZ6IHkqXJV6x1b28GDdo1lbInjKUrrdUf0LOQ== + dependencies: + array-includes "^3.1.1" + doctrine "^2.1.0" + has "^1.0.3" + jsx-ast-utils "^2.2.3" + object.entries "^1.1.1" + object.fromentries "^2.0.2" + object.values "^1.1.1" + prop-types "^15.7.2" + resolve "^1.15.1" + semver "^6.3.0" + string.prototype.matchall "^4.0.2" + xregexp "^4.3.0" + +eslint-plugin-react@7.28.0: + version "7.28.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.28.0.tgz#8f3ff450677571a659ce76efc6d80b6a525adbdf" + integrity sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw== + dependencies: + array-includes "^3.1.4" + array.prototype.flatmap "^1.2.5" + doctrine "^2.1.0" + estraverse "^5.3.0" + jsx-ast-utils "^2.4.1 || ^3.0.0" + minimatch "^3.0.4" + object.entries "^1.1.5" + object.fromentries "^2.0.5" + object.hasown "^1.1.0" + object.values "^1.1.5" + prop-types "^15.7.2" + resolve "^2.0.0-next.3" + semver "^6.3.0" + string.prototype.matchall "^4.0.6" + +eslint-plugin-react@^7.31.7: + version "7.32.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz#e71f21c7c265ebce01bcbc9d0955170c55571f10" + integrity sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg== + dependencies: + array-includes "^3.1.6" + array.prototype.flatmap "^1.3.1" + array.prototype.tosorted "^1.1.1" + doctrine "^2.1.0" + 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.0" + string.prototype.matchall "^4.0.8" + +eslint-scope@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" + integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-scope@^5.0.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-utils@^1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f" + integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-utils@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" + integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + +eslint-visitor-keys@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" + integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== + +eslint@^6.6.0: + version "6.8.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb" + integrity sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig== + dependencies: + "@babel/code-frame" "^7.0.0" + ajv "^6.10.0" + chalk "^2.1.0" + cross-spawn "^6.0.5" + debug "^4.0.1" + doctrine "^3.0.0" + eslint-scope "^5.0.0" + eslint-utils "^1.4.3" + eslint-visitor-keys "^1.1.0" + espree "^6.1.2" + esquery "^1.0.1" + esutils "^2.0.2" + file-entry-cache "^5.0.1" + functional-red-black-tree "^1.0.1" + glob-parent "^5.0.0" + globals "^12.1.0" + ignore "^4.0.6" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + inquirer "^7.0.0" + is-glob "^4.0.0" + js-yaml "^3.13.1" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.3.0" + lodash "^4.17.14" + minimatch "^3.0.4" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + optionator "^0.8.3" + progress "^2.0.0" + regexpp "^2.0.1" + semver "^6.1.2" + strip-ansi "^5.2.0" + strip-json-comments "^3.0.1" + table "^5.2.3" + text-table "^0.2.0" + v8-compile-cache "^2.0.3" + +espree@^6.1.2: + version "6.2.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a" + integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw== + dependencies: + acorn "^7.1.1" + acorn-jsx "^5.2.0" + eslint-visitor-keys "^1.1.0" + +esprima@^4.0.0, esprima@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.0.1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" + integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.1.0, esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1, estraverse@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== + +eventemitter3@^4.0.0: + version "4.0.7" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +events@^3.0.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== + +eventsource@^1.0.7: + version "1.1.2" + resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-1.1.2.tgz#bc75ae1c60209e7cb1541231980460343eaea7c2" + integrity sha512-xAH3zWhgO2/3KIniEKYPr8plNSzlGINOUqYj0m0u7AB81iRw8b/3E73W6AuU+6klLbaSFmZnaETQ2lXPfAydrA== + +evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== + dependencies: + md5.js "^1.3.4" + safe-buffer "^5.1.1" + +exec-sh@^0.3.2: + version "0.3.6" + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc" + integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w== + +execa@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== + dependencies: + cross-spawn "^6.0.0" + get-stream "^4.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +exit@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== + +expand-brackets@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" + integrity sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA== + dependencies: + debug "^2.3.3" + define-property "^0.2.5" + extend-shallow "^2.0.1" + posix-character-classes "^0.1.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +expect@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-24.9.0.tgz#b75165b4817074fa4a157794f46fe9f1ba15b6ca" + integrity sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q== + dependencies: + "@jest/types" "^24.9.0" + ansi-styles "^3.2.0" + jest-get-type "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-regex-util "^24.9.0" + +express@^4.17.1: + version "4.18.2" + resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" + 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" + +ext@^1.1.2: + version "1.7.0" + resolved "https://registry.yarnpkg.com/ext/-/ext-1.7.0.tgz#0ea4383c0103d60e70be99e9a7f11027a33c4f5f" + integrity sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw== + dependencies: + type "^2.7.2" + +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug== + dependencies: + is-extendable "^0.1.0" + +extend-shallow@^3.0.0, extend-shallow@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" + integrity sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q== + dependencies: + assign-symbols "^1.0.0" + is-extendable "^1.0.1" + +extend@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +external-editor@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + +extglob@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" + integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== + dependencies: + array-unique "^0.3.2" + define-property "^1.0.0" + expand-brackets "^2.1.4" + extend-shallow "^2.0.1" + fragment-cache "^0.2.1" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +extsprintf@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + integrity sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g== + +extsprintf@^1.2.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.1.tgz#8d172c064867f235c0c84a596806d279bf4bcc07" + integrity sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-glob@^2.0.2: + version "2.2.7" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d" + integrity sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw== + dependencies: + "@mrmlnc/readdir-enhanced" "^2.2.1" + "@nodelib/fs.stat" "^1.1.2" + glob-parent "^3.1.0" + is-glob "^4.0.0" + merge2 "^1.2.3" + micromatch "^3.1.10" + +fast-glob@^3.1.1, fast-glob@^3.2.9: + version "3.2.12" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" + integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== + 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" + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@~2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fast-loops@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/fast-loops/-/fast-loops-1.1.3.tgz#ce96adb86d07e7bf9b4822ab9c6fac9964981f75" + integrity sha512-8EZzEP0eKkEEVX+drtd9mtuQ+/QrlfW/5MlwcwK5Nds6EkZ/tRzEexkzUY2mIssnAyVLT+TKHuRXmFNNXYUd6g== + +fast-shallow-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fast-shallow-equal/-/fast-shallow-equal-1.0.0.tgz#d4dcaf6472440dcefa6f88b98e3251e27f25628b" + integrity sha512-HPtaa38cPgWvaCFmRNhlc6NG7pv6NUHqjPgVAkWGoB9mQMwYB27/K0CvOM5Czy+qpT3e8XJ6Q4aPAnzpNpzNaw== + +fastest-stable-stringify@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/fastest-stable-stringify/-/fastest-stable-stringify-2.0.2.tgz#3757a6774f6ec8de40c4e86ec28ea02417214c76" + integrity sha512-bijHueCGd0LqqNK9b5oCMHc0MluJAx0cwqASgbWMvkO01lCYgIhacVRLcaDz3QnyYIRNJRDwMb41VuT6pHJ91Q== + +fastq@^1.6.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" + integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== + dependencies: + reusify "^1.0.4" + +faye-websocket@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" + integrity sha512-Xhj93RXbMSq8urNCUq4p9l0P6hnySJ/7YNRhYNug0bLOuii7pKO7xQFb5mx9xZXWCar88pLPb805PvUkwrLZpQ== + dependencies: + websocket-driver ">=0.5.1" + +faye-websocket@~0.11.1: + version "0.11.4" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da" + integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g== + dependencies: + websocket-driver ">=0.5.1" + +fb-watchman@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" + integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== + dependencies: + bser "2.1.1" + +figgy-pudding@^3.5.1: + version "3.5.2" + resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e" + integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw== + +figures@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== + dependencies: + escape-string-regexp "^1.0.5" + +file-entry-cache@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" + integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== + dependencies: + flat-cache "^2.0.1" + +file-loader@4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-4.3.0.tgz#780f040f729b3d18019f20605f723e844b8a58af" + integrity sha512-aKrYPYjF1yG3oX0kWRrqrSMfgftm7oJW5M+m4owoldH5C51C0RkIwB++JbRvEW3IU6/ZG5n8UvEcdgwOt2UOWA== + dependencies: + loader-utils "^1.2.3" + schema-utils "^2.5.0" + +file-selector@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/file-selector/-/file-selector-0.4.0.tgz#59ec4f27aa5baf0841e9c6385c8386bef4d18b17" + integrity sha512-iACCiXeMYOvZqlF1kTiYINzgepRBymz1wwjiuup9u9nayhb6g4fSwiyJ/6adli+EPwrWtpgQAh2PoS7HukEGEg== + dependencies: + tslib "^2.0.3" + +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +filesize@6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/filesize/-/filesize-6.0.1.tgz#f850b509909c7c86f7e450ea19006c31c2ed3d2f" + integrity sha512-u4AYWPgbI5GBhs6id1KdImZWn5yfyFrrQ8OWZdN7ZMfA8Bf4HcO0BGo9bmUIEV8yrp8I1xVfJ/dn90GtFNNJcg== + +filesize@6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/filesize/-/filesize-6.1.0.tgz#e81bdaa780e2451d714d71c0d7a4f3238d37ad00" + integrity sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg== + +fill-range@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" + integrity sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ== + dependencies: + extend-shallow "^2.0.1" + is-number "^3.0.0" + repeat-string "^1.6.1" + to-regex-range "^2.1.0" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +filter-obj@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/filter-obj/-/filter-obj-1.1.0.tgz#9b311112bc6c6127a16e016c6c5d7f19e0805c5b" + integrity sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ== + +finalhandler@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" + 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" + +find-cache-dir@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" + integrity sha512-Z9XSBoNE7xQiV6MSgPuCfyMokH2K7JdpRkOYE1+mu3d4BFJtx3GW+f6Bo4q8IX6rlf5MYbLBKW0pjl2cWdkm2A== + dependencies: + commondir "^1.0.1" + mkdirp "^0.5.1" + pkg-dir "^1.0.0" + +find-cache-dir@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" + integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== + dependencies: + commondir "^1.0.1" + make-dir "^2.0.0" + pkg-dir "^3.0.0" + +find-cache-dir@^3.3.1: + version "3.3.2" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b" + integrity sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig== + dependencies: + commondir "^1.0.1" + make-dir "^3.0.2" + pkg-dir "^4.1.0" + +find-up@4.1.0, find-up@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" + +find-up@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" + integrity sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA== + dependencies: + path-exists "^2.0.0" + pinkie-promise "^2.0.0" + +find-up@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + integrity sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ== + dependencies: + locate-path "^2.0.0" + +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + +flat-cache@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" + integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== + dependencies: + flatted "^2.0.0" + rimraf "2.6.3" + write "1.0.3" + +flatted@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" + integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== + +flatten@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.3.tgz#c1283ac9f27b368abc1e36d1ff7b04501a30356b" + integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg== + +flush-write-stream@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" + integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== + dependencies: + inherits "^2.0.3" + readable-stream "^2.3.6" + +fn-name@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/fn-name/-/fn-name-3.0.0.tgz#0596707f635929634d791f452309ab41558e3c5c" + integrity sha512-eNMNr5exLoavuAMhIUVsOKF79SWd/zG104ef6sxBTSw+cZc6BXdQXDvYcGvp0VbxVVSp1XDUNoz7mg1xMtSznA== + +follow-redirects@^1.0.0, follow-redirects@^1.14.0: + version "1.15.2" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +for-in@^0.1.3: + version "0.1.8" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" + integrity sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g== + +for-in@^1.0.1, for-in@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ== + +for-own@^0.1.3: + version "0.1.5" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" + integrity sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw== + dependencies: + for-in "^1.0.1" + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== + +fork-ts-checker-webpack-plugin@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-3.1.1.tgz#a1642c0d3e65f50c2cc1742e9c0a80f441f86b19" + integrity sha512-DuVkPNrM12jR41KM2e+N+styka0EgLkTnXmNcXdgOM37vtGeY+oCBK/Jx0hzSeEU6memFCtWb4htrHPMDfwwUQ== + dependencies: + babel-code-frame "^6.22.0" + chalk "^2.4.1" + chokidar "^3.3.0" + micromatch "^3.1.10" + minimatch "^3.0.4" + semver "^5.6.0" + tapable "^1.0.0" + worker-rpc "^0.1.0" + +fork-ts-checker-webpack-plugin@4.1.6: + version "4.1.6" + resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz#5055c703febcf37fa06405d400c122b905167fc5" + integrity sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw== + dependencies: + "@babel/code-frame" "^7.5.5" + chalk "^2.4.1" + micromatch "^3.1.10" + minimatch "^3.0.4" + semver "^5.6.0" + tapable "^1.0.0" + worker-rpc "^0.1.0" + +form-data@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + +formik@^2.2.5: + version "2.2.9" + resolved "https://registry.yarnpkg.com/formik/-/formik-2.2.9.tgz#8594ba9c5e2e5cf1f42c5704128e119fc46232d0" + integrity sha512-LQLcISMmf1r5at4/gyJigGn0gOwFbeEAlji+N9InZF6LIMXnFNkO42sCI8Jt84YZggpD4cPWObAZaxpEFtSzNA== + dependencies: + deepmerge "^2.1.1" + hoist-non-react-statics "^3.3.0" + lodash "^4.17.21" + lodash-es "^4.17.21" + react-fast-compare "^2.0.1" + tiny-warning "^1.0.2" + tslib "^1.10.0" + +forwarded@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + +fragment-cache@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" + integrity sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA== + dependencies: + map-cache "^0.2.2" + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== + +from2@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" + integrity sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g== + dependencies: + inherits "^2.0.1" + readable-stream "^2.0.0" + +fs-extra@^4.0.2: + version "4.0.3" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" + integrity sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-extra@^7.0.0: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" + integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-extra@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" + integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-minipass@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" + integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== + dependencies: + minipass "^3.0.0" + +fs-write-stream-atomic@^1.0.8: + version "1.0.10" + resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" + integrity sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA== + dependencies: + graceful-fs "^4.1.2" + iferr "^0.1.5" + imurmurhash "^0.1.4" + readable-stream "1 || 2" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.2.tgz#4c0a1fb34bc68e543b4b82a9ec392bfbda840805" + integrity sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA== + +fsevents@^1.2.7: + version "1.2.13" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38" + integrity sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw== + dependencies: + bindings "^1.5.0" + nan "^2.12.1" + +fsevents@~2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== + +fstream@^1.0.0, fstream@^1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" + integrity sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg== + dependencies: + graceful-fs "^4.1.2" + inherits "~2.0.0" + mkdirp ">=0.5 0" + rimraf "2" + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== + +functions-have-names@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + integrity sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg== + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + +gaze@^1.0.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a" + integrity sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g== + dependencies: + globule "^1.0.0" + +gensync@^1.0.0-beta.1, gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-caller-file@^2.0.1: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3: + version "1.2.0" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" + integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.3" + +get-own-enumerable-property-symbols@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" + integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== + +get-stdin@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" + integrity sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw== + +get-stream@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== + dependencies: + pump "^3.0.0" + +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +get-value@^2.0.3, get-value@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" + integrity sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA== + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + integrity sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng== + dependencies: + assert-plus "^1.0.0" + +glob-parent@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" + integrity sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA== + dependencies: + is-glob "^3.1.0" + path-dirname "^1.0.0" + +glob-parent@^5.0.0, glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-to-regexp@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" + integrity sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig== + +glob@7.1.7, glob@~7.1.1: + version "7.1.7" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" + 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" + +glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.2.0: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + 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" + +global-modules@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" + integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== + dependencies: + global-prefix "^3.0.0" + +global-prefix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" + integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== + dependencies: + ini "^1.3.5" + kind-of "^6.0.2" + which "^1.3.1" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globals@^12.1.0: + version "12.4.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" + integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== + dependencies: + type-fest "^0.8.1" + +globalthis@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" + integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== + dependencies: + define-properties "^1.1.3" + +globby@11.0.1: + version "11.0.1" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357" + integrity sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.1.1" + ignore "^5.1.4" + merge2 "^1.3.0" + slash "^3.0.0" + +globby@8.0.2: + version "8.0.2" + resolved "https://registry.yarnpkg.com/globby/-/globby-8.0.2.tgz#5697619ccd95c5275dbb2d6faa42087c1a941d8d" + integrity sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w== + dependencies: + array-union "^1.0.1" + dir-glob "2.0.0" + fast-glob "^2.0.2" + glob "^7.1.2" + ignore "^3.3.5" + pify "^3.0.0" + slash "^1.0.0" + +globby@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + 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" + +globby@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" + integrity sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw== + dependencies: + array-union "^1.0.1" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +globule@^1.0.0: + version "1.3.4" + resolved "https://registry.yarnpkg.com/globule/-/globule-1.3.4.tgz#7c11c43056055a75a6e68294453c17f2796170fb" + integrity sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg== + dependencies: + glob "~7.1.1" + lodash "^4.17.21" + minimatch "~3.0.2" + +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + +graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2: + version "4.2.10" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" + integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + +growly@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" + integrity sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw== + +gud@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0" + integrity sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw== + +gzip-size@5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274" + integrity sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA== + dependencies: + duplexer "^0.1.1" + pify "^4.0.1" + +handle-thing@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" + integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg== + +har-schema@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + integrity sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q== + +har-validator@~5.1.3: + version "5.1.5" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" + integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== + dependencies: + ajv "^6.12.3" + har-schema "^2.0.0" + +harmony-reflect@^1.4.6: + version "1.6.2" + resolved "https://registry.yarnpkg.com/harmony-reflect/-/harmony-reflect-1.6.2.tgz#31ecbd32e648a34d030d86adb67d4d47547fe710" + integrity sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g== + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + integrity sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg== + dependencies: + ansi-regex "^2.0.0" + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== + +has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has-unicode@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== + +has-value@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" + integrity sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q== + dependencies: + get-value "^2.0.3" + has-values "^0.1.4" + isobject "^2.0.0" + +has-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" + integrity sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw== + dependencies: + get-value "^2.0.6" + has-values "^1.0.0" + isobject "^3.0.0" + +has-values@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" + integrity sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ== + +has-values@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" + integrity sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ== + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +has@^1.0.0, has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hash-base@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33" + integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA== + dependencies: + inherits "^2.0.4" + readable-stream "^3.6.0" + safe-buffer "^5.2.0" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +he@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +hex-color-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" + integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== + +history@^4.9.0: + version "4.10.1" + resolved "https://registry.yarnpkg.com/history/-/history-4.10.1.tgz#33371a65e3a83b267434e2b3f3b1b4c58aad4cf3" + integrity sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew== + dependencies: + "@babel/runtime" "^7.1.2" + loose-envify "^1.2.0" + resolve-pathname "^3.0.0" + tiny-invariant "^1.0.2" + tiny-warning "^1.0.0" + value-equal "^1.0.1" + +hmac-drbg@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg== + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +hoist-non-react-statics@^3.0.0, hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45" + integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw== + dependencies: + react-is "^16.7.0" + +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + +hotkeys-js@3.9.4: + version "3.9.4" + resolved "https://registry.yarnpkg.com/hotkeys-js/-/hotkeys-js-3.9.4.tgz#ce1aa4c3a132b6a63a9dd5644fc92b8a9b9cbfb9" + integrity sha512-2zuLt85Ta+gIyvs4N88pCYskNrxf1TFv3LR9t5mdAZIX8BcgQQ48F2opUptvHa6m8zsy5v/a0i9mWzTrlNWU0Q== + +hpack.js@^2.1.6: + version "2.1.6" + resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" + integrity sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ== + dependencies: + inherits "^2.0.1" + obuf "^1.0.0" + readable-stream "^2.0.1" + wbuf "^1.1.0" + +hsl-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e" + integrity sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A== + +hsla-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38" + integrity sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA== + +html-encoding-sniffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" + integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== + dependencies: + whatwg-encoding "^1.0.1" + +html-entities@^1.3.1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.4.0.tgz#cfbd1b01d2afaf9adca1b10ae7dffab98c71d2dc" + integrity sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA== + +html-escaper@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" + integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== + +html-minifier-terser@^5.0.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054" + integrity sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg== + dependencies: + camel-case "^4.1.1" + clean-css "^4.2.3" + commander "^4.1.1" + he "^1.2.0" + param-case "^3.0.3" + relateurl "^0.2.7" + terser "^4.6.3" + +html-webpack-plugin@4.0.0-beta.11: + version "4.0.0-beta.11" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.0.0-beta.11.tgz#3059a69144b5aecef97708196ca32f9e68677715" + integrity sha512-4Xzepf0qWxf8CGg7/WQM5qBB2Lc/NFI7MhU59eUDTkuQp3skZczH4UA1d6oQyDEIoMDgERVhRyTdtUPZ5s5HBg== + dependencies: + html-minifier-terser "^5.0.1" + loader-utils "^1.2.3" + lodash "^4.17.15" + pretty-error "^2.1.1" + tapable "^1.1.3" + util.promisify "1.0.0" + +htmlparser2@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" + integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.0.0" + domutils "^2.5.2" + entities "^2.0.0" + +http-deceiver@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" + integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw== + +http-errors@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + 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" + +http-errors@~1.6.2: + version "1.6.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" + integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A== + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.0" + statuses ">= 1.4.0 < 2" + +http-parser-js@>=0.5.1: + version "0.5.8" + resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.8.tgz#af23090d9ac4e24573de6f6aecc9d84a48bf20e3" + integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q== + +http-proxy-middleware@0.19.1: + version "0.19.1" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz#183c7dc4aa1479150306498c210cdaf96080a43a" + integrity sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q== + dependencies: + http-proxy "^1.17.0" + is-glob "^4.0.0" + lodash "^4.17.11" + micromatch "^3.1.10" + +http-proxy-middleware@^1.0.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz#43700d6d9eecb7419bf086a128d0f7205d9eb665" + integrity sha512-13eVVDYS4z79w7f1+NPllJtOQFx/FdUW4btIvVRMaRlUY9VGstAbo5MOhLEuUgZFRHn3x50ufn25zkj/boZnEg== + dependencies: + "@types/http-proxy" "^1.17.5" + http-proxy "^1.18.1" + is-glob "^4.0.1" + is-plain-obj "^3.0.0" + micromatch "^4.0.2" + +http-proxy@^1.17.0, http-proxy@^1.18.1: + version "1.18.1" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" + integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== + dependencies: + eventemitter3 "^4.0.0" + follow-redirects "^1.0.0" + requires-port "^1.0.0" + +http-signature@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + integrity sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ== + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +https-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" + integrity sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg== + +hyphenate-style-name@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz#691879af8e220aea5750e8827db4ef62a54e361d" + integrity sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ== + +iconv-lite@0.4.24, iconv-lite@^0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +icss-utils@^4.0.0, icss-utils@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" + integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA== + dependencies: + postcss "^7.0.14" + +identity-obj-proxy@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz#94d2bda96084453ef36fbc5aaec37e0f79f1fc14" + integrity sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA== + dependencies: + harmony-reflect "^1.4.6" + +ieee754@^1.1.4: + version "1.2.1" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== + +iferr@^0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" + integrity sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA== + +ignore@^3.3.5: + version "3.3.10" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" + integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug== + +ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + +ignore@^5.1.4, ignore@^5.2.0: + version "5.2.4" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" + integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== + +immer@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/immer/-/immer-1.10.0.tgz#bad67605ba9c810275d91e1c2a47d4582e98286d" + integrity sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg== + +immer@8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/immer/-/immer-8.0.1.tgz#9c73db683e2b3975c424fb0572af5889877ae656" + integrity sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA== + +immer@^9.0.16: + version "9.0.19" + resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.19.tgz#67fb97310555690b5f9cd8380d38fc0aabb6b38b" + integrity sha512-eY+Y0qcsB4TZKwgQzLaE/lqYMlKhv5J9dyd2RhhtGhNo2njPXDqU9XPfcNfa3MIDsdtZt5KlkIsirlo4dHsWdQ== + +import-cwd@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9" + integrity sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg== + dependencies: + import-from "^2.1.0" + +import-fresh@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" + integrity sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg== + dependencies: + caller-path "^2.0.0" + resolve-from "^3.0.0" + +import-fresh@^3.0.0, import-fresh@^3.1.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-from@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1" + integrity sha512-0vdnLL2wSGnhlRmzHJAg5JHjt1l2vYhzJ7tNLGbeVg0fse56tpGaH0uzH+r9Slej+BSXXEHvBKDEnVSLLE9/+w== + dependencies: + resolve-from "^3.0.0" + +import-local@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" + integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== + dependencies: + pkg-dir "^3.0.0" + resolve-cwd "^2.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +in-publish@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/in-publish/-/in-publish-2.0.1.tgz#948b1a535c8030561cea522f73f78f4be357e00c" + integrity sha512-oDM0kUSNFC31ShNxHKUyfZKy8ZeXZBWMjMdZHKLOk13uvT27VTL/QzRGfRUcevJhpkZAvlhPYuXkF7eNWrtyxQ== + +indent-string@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" + integrity sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg== + dependencies: + repeating "^2.0.0" + +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +indexes-of@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" + integrity sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA== + +infer-owner@^1.0.3, infer-owner@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" + integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inherits@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + integrity sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA== + +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== + +ini@^1.3.5: + version "1.3.8" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" + integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== + +inline-style-prefixer@^6.0.0: + version "6.0.4" + resolved "https://registry.yarnpkg.com/inline-style-prefixer/-/inline-style-prefixer-6.0.4.tgz#4290ed453ab0e4441583284ad86e41ad88384f44" + integrity sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg== + dependencies: + css-in-js-utils "^3.1.0" + fast-loops "^1.1.3" + +inquirer@7.0.4: + version "7.0.4" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.0.4.tgz#99af5bde47153abca23f5c7fc30db247f39da703" + integrity sha512-Bu5Td5+j11sCkqfqmUTiwv+tWisMtP0L7Q8WrqA2C/BbBhy1YTdFrvjjlrKq8oagA/tLQBski2Gcx/Sqyi2qSQ== + dependencies: + ansi-escapes "^4.2.1" + chalk "^2.4.2" + cli-cursor "^3.1.0" + cli-width "^2.0.0" + external-editor "^3.0.3" + figures "^3.0.0" + lodash "^4.17.15" + mute-stream "0.0.8" + run-async "^2.2.0" + rxjs "^6.5.3" + string-width "^4.1.0" + strip-ansi "^5.1.0" + through "^2.3.6" + +inquirer@^7.0.0: + version "7.3.3" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003" + integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== + dependencies: + ansi-escapes "^4.2.1" + chalk "^4.1.0" + cli-cursor "^3.1.0" + cli-width "^3.0.0" + external-editor "^3.0.3" + figures "^3.0.0" + lodash "^4.17.19" + mute-stream "0.0.8" + run-async "^2.4.0" + rxjs "^6.6.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + through "^2.3.6" + +internal-ip@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907" + integrity sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg== + dependencies: + default-gateway "^4.2.0" + ipaddr.js "^1.9.0" + +internal-slot@^1.0.3, internal-slot@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.4.tgz#8551e7baf74a7a6ba5f749cfb16aa60722f0d6f3" + integrity sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ== + dependencies: + get-intrinsic "^1.1.3" + has "^1.0.3" + side-channel "^1.0.4" + +intl-format-cache@^4.2.21: + version "4.3.1" + resolved "https://registry.yarnpkg.com/intl-format-cache/-/intl-format-cache-4.3.1.tgz#484d31a9872161e6c02139349b259a6229ade377" + integrity sha512-OEUYNA7D06agqPOYhbTkl0T8HA3QKSuwWh1HiClEnpd9vw7N+3XsQt5iZ0GUEchp5CW1fQk/tary+NsbF3yQ1Q== + +intl-messageformat-parser@^3.6.4: + version "3.6.4" + resolved "https://registry.yarnpkg.com/intl-messageformat-parser/-/intl-messageformat-parser-3.6.4.tgz#5199d106d816c3dda26ee0694362a9cf823978fb" + integrity sha512-RgPGwue0mJtoX2Ax8EmMzJzttxjnva7gx0Q7mKJ4oALrTZvtmCeAw5Msz2PcjW4dtCh/h7vN/8GJCxZO1uv+OA== + dependencies: + "@formatjs/intl-unified-numberformat" "^3.2.0" + +intl-messageformat@^7.8.4: + version "7.8.4" + resolved "https://registry.yarnpkg.com/intl-messageformat/-/intl-messageformat-7.8.4.tgz#c29146a06b9cd26662978a4d95fff2b133e3642f" + integrity sha512-yS0cLESCKCYjseCOGXuV4pxJm/buTfyCJ1nzQjryHmSehlptbZbn9fnlk1I9peLopZGGbjj46yHHiTAEZ1qOTA== + dependencies: + intl-format-cache "^4.2.21" + intl-messageformat-parser "^3.6.4" + +intl@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/intl/-/intl-1.2.5.tgz#82244a2190c4e419f8371f5aa34daa3420e2abde" + integrity sha512-rK0KcPHeBFBcqsErKSpvZnrOmWOj+EmDkyJ57e90YWaQNqbcivcqmKDlHEeNprDWOsKzPsh1BfSpPQdDvclHVw== + +invariant@^2.2.2, invariant@^2.2.4: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== + dependencies: + loose-envify "^1.0.0" + +ip-regex@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" + integrity sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw== + +ip@^1.1.0, ip@^1.1.5: + version "1.1.8" + resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.8.tgz#ae05948f6b075435ed3307acce04629da8cdbf48" + integrity sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg== + +ipaddr.js@1.9.1, ipaddr.js@^1.9.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + +is-absolute-url@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" + integrity sha512-vOx7VprsKyllwjSkLV79NIhpyLfr3jAp7VaTCMXOJHu4m0Ew1CZ2fcjASwmV1jI3BWuWHB013M48eyeldk9gYg== + +is-absolute-url@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698" + integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q== + +is-accessor-descriptor@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" + integrity sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A== + dependencies: + kind-of "^3.0.2" + +is-accessor-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" + integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== + dependencies: + kind-of "^6.0.0" + +is-arguments@^1.0.4, is-arguments@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-array-buffer@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.1.tgz#deb1db4fcae48308d54ef2442706c0393997052a" + integrity sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.3" + is-typed-array "^1.1.10" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-arrayish@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-binary-path@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + integrity sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q== + dependencies: + binary-extensions "^1.0.0" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-buffer@^1.0.2, is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + +is-ci@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" + integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== + dependencies: + ci-info "^2.0.0" + +is-color-stop@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345" + integrity sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA== + dependencies: + css-color-names "^0.0.4" + hex-color-regex "^1.1.0" + hsl-regex "^1.0.0" + hsla-regex "^1.0.0" + rgb-regex "^1.0.1" + rgba-regex "^1.0.0" + +is-core-module@^2.11.0, is-core-module@^2.9.0: + version "2.11.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" + integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== + dependencies: + has "^1.0.3" + +is-data-descriptor@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" + integrity sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg== + dependencies: + kind-of "^3.0.2" + +is-data-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" + integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== + dependencies: + kind-of "^6.0.0" + +is-date-object@^1.0.1, is-date-object@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-descriptor@^0.1.0: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" + integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== + dependencies: + is-accessor-descriptor "^0.1.6" + is-data-descriptor "^0.1.4" + kind-of "^5.0.0" + +is-descriptor@^1.0.0, is-descriptor@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" + integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== + dependencies: + is-accessor-descriptor "^1.0.0" + is-data-descriptor "^1.0.0" + kind-of "^6.0.2" + +is-directory@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + integrity sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw== + +is-docker@^2.0.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== + +is-extendable@^0.1.0, is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== + +is-extendable@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== + dependencies: + is-plain-object "^2.0.4" + +is-extglob@^2.1.0, is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-finite@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3" + integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w== + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + integrity sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw== + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-generator-fn@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" + integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== + +is-glob@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" + integrity sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw== + dependencies: + is-extglob "^2.1.0" + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-map@^2.0.1, is-map@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" + integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== + +is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + integrity sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg== + dependencies: + kind-of "^3.0.2" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + integrity sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg== + +is-obj@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" + integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== + +is-path-cwd@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" + integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== + +is-path-in-cwd@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz#bfe2dca26c69f397265a4009963602935a053acb" + integrity sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ== + dependencies: + is-path-inside "^2.1.0" + +is-path-inside@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2" + integrity sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg== + dependencies: + path-is-inside "^1.0.2" + +is-plain-obj@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg== + +is-plain-obj@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" + integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== + +is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +is-regex@^1.0.4, is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" + integrity sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA== + +is-resolvable@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" + integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== + +is-root@2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" + integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== + +is-set@^2.0.1, is-set@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" + integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + +is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + integrity sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ== + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.10, is-typed-array@^1.1.9: + version "1.1.10" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f" + integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.0" + +is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA== + +is-utf8@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" + integrity sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q== + +is-weakmap@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" + integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +is-weakset@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d" + integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +is-windows@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + +is-wsl@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" + integrity sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw== + +is-wsl@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== + dependencies: + is-docker "^2.0.0" + +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== + +isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== + +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + integrity sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA== + dependencies: + isarray "1.0.0" + +isobject@^3.0.0, isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g== + +istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz#675f0ab69503fad4b1d849f736baaca803344f49" + integrity sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA== + +istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz#a5f63d91f0bbc0c3e479ef4c5de027335ec6d630" + integrity sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA== + dependencies: + "@babel/generator" "^7.4.0" + "@babel/parser" "^7.4.3" + "@babel/template" "^7.4.0" + "@babel/traverse" "^7.4.3" + "@babel/types" "^7.4.0" + istanbul-lib-coverage "^2.0.5" + semver "^6.0.0" + +istanbul-lib-report@^2.0.4: + version "2.0.8" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz#5a8113cd746d43c4889eba36ab10e7d50c9b4f33" + integrity sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ== + dependencies: + istanbul-lib-coverage "^2.0.5" + make-dir "^2.1.0" + supports-color "^6.1.0" + +istanbul-lib-source-maps@^3.0.1: + version "3.0.6" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz#284997c48211752ec486253da97e3879defba8c8" + integrity sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw== + dependencies: + debug "^4.1.1" + istanbul-lib-coverage "^2.0.5" + make-dir "^2.1.0" + rimraf "^2.6.3" + source-map "^0.6.1" + +istanbul-reports@^2.2.6: + version "2.2.7" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.2.7.tgz#5d939f6237d7b48393cc0959eab40cd4fd056931" + integrity sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg== + dependencies: + html-escaper "^2.0.0" + +jest-changed-files@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.9.0.tgz#08d8c15eb79a7fa3fc98269bc14b451ee82f8039" + integrity sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg== + dependencies: + "@jest/types" "^24.9.0" + execa "^1.0.0" + throat "^4.0.0" + +jest-cli@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.9.0.tgz#ad2de62d07472d419c6abc301fc432b98b10d2af" + integrity sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg== + dependencies: + "@jest/core" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + chalk "^2.0.1" + exit "^0.1.2" + import-local "^2.0.0" + is-ci "^2.0.0" + jest-config "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" + prompts "^2.0.1" + realpath-native "^1.1.0" + yargs "^13.3.0" + +jest-config@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.9.0.tgz#fb1bbc60c73a46af03590719efa4825e6e4dd1b5" + integrity sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ== + dependencies: + "@babel/core" "^7.1.0" + "@jest/test-sequencer" "^24.9.0" + "@jest/types" "^24.9.0" + babel-jest "^24.9.0" + chalk "^2.0.1" + glob "^7.1.1" + jest-environment-jsdom "^24.9.0" + jest-environment-node "^24.9.0" + jest-get-type "^24.9.0" + jest-jasmine2 "^24.9.0" + jest-regex-util "^24.3.0" + jest-resolve "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" + micromatch "^3.1.10" + pretty-format "^24.9.0" + realpath-native "^1.1.0" + +jest-diff@^24.0.0, jest-diff@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.9.0.tgz#931b7d0d5778a1baf7452cb816e325e3724055da" + integrity sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ== + dependencies: + chalk "^2.0.1" + diff-sequences "^24.9.0" + jest-get-type "^24.9.0" + pretty-format "^24.9.0" + +jest-diff@^26.0.0: + version "26.6.2" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394" + integrity sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA== + dependencies: + chalk "^4.0.0" + diff-sequences "^26.6.2" + jest-get-type "^26.3.0" + pretty-format "^26.6.2" + +jest-docblock@^24.3.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.9.0.tgz#7970201802ba560e1c4092cc25cbedf5af5a8ce2" + integrity sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA== + dependencies: + detect-newline "^2.1.0" + +jest-each@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.9.0.tgz#eb2da602e2a610898dbc5f1f6df3ba86b55f8b05" + integrity sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog== + dependencies: + "@jest/types" "^24.9.0" + chalk "^2.0.1" + jest-get-type "^24.9.0" + jest-util "^24.9.0" + pretty-format "^24.9.0" + +jest-environment-jsdom-fourteen@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom-fourteen/-/jest-environment-jsdom-fourteen-1.0.1.tgz#4cd0042f58b4ab666950d96532ecb2fc188f96fb" + integrity sha512-DojMX1sY+at5Ep+O9yME34CdidZnO3/zfPh8UW+918C5fIZET5vCjfkegixmsi7AtdYfkr4bPlIzmWnlvQkP7Q== + dependencies: + "@jest/environment" "^24.3.0" + "@jest/fake-timers" "^24.3.0" + "@jest/types" "^24.3.0" + jest-mock "^24.0.0" + jest-util "^24.0.0" + jsdom "^14.1.0" + +jest-environment-jsdom@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz#4b0806c7fc94f95edb369a69cc2778eec2b7375b" + integrity sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA== + dependencies: + "@jest/environment" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + jest-util "^24.9.0" + jsdom "^11.5.1" + +jest-environment-node@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.9.0.tgz#333d2d2796f9687f2aeebf0742b519f33c1cbfd3" + integrity sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA== + dependencies: + "@jest/environment" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + jest-util "^24.9.0" + +jest-get-type@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.9.0.tgz#1684a0c8a50f2e4901b6644ae861f579eed2ef0e" + integrity sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q== + +jest-get-type@^26.3.0: + version "26.3.0" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0" + integrity sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig== + +jest-haste-map@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.9.0.tgz#b38a5d64274934e21fa417ae9a9fbeb77ceaac7d" + integrity sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ== + dependencies: + "@jest/types" "^24.9.0" + anymatch "^2.0.0" + fb-watchman "^2.0.0" + graceful-fs "^4.1.15" + invariant "^2.2.4" + jest-serializer "^24.9.0" + jest-util "^24.9.0" + jest-worker "^24.9.0" + micromatch "^3.1.10" + sane "^4.0.3" + walker "^1.0.7" + optionalDependencies: + fsevents "^1.2.7" + +jest-jasmine2@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz#1f7b1bd3242c1774e62acabb3646d96afc3be6a0" + integrity sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw== + dependencies: + "@babel/traverse" "^7.1.0" + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + chalk "^2.0.1" + co "^4.6.0" + expect "^24.9.0" + is-generator-fn "^2.0.0" + jest-each "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-runtime "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + pretty-format "^24.9.0" + throat "^4.0.0" + +jest-leak-detector@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz#b665dea7c77100c5c4f7dfcb153b65cf07dcf96a" + integrity sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA== + dependencies: + jest-get-type "^24.9.0" + pretty-format "^24.9.0" + +jest-matcher-utils@^24.0.0, jest-matcher-utils@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz#f5b3661d5e628dffe6dd65251dfdae0e87c3a073" + integrity sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA== + dependencies: + chalk "^2.0.1" + jest-diff "^24.9.0" + jest-get-type "^24.9.0" + pretty-format "^24.9.0" + +jest-message-util@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.9.0.tgz#527f54a1e380f5e202a8d1149b0ec872f43119e3" + integrity sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw== + dependencies: + "@babel/code-frame" "^7.0.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/stack-utils" "^1.0.1" + chalk "^2.0.1" + micromatch "^3.1.10" + slash "^2.0.0" + stack-utils "^1.0.1" + +jest-mock@^24.0.0, jest-mock@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.9.0.tgz#c22835541ee379b908673ad51087a2185c13f1c6" + integrity sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w== + dependencies: + "@jest/types" "^24.9.0" + +jest-pnp-resolver@^1.2.1: + version "1.2.3" + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" + integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== + +jest-regex-util@^24.3.0, jest-regex-util@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.9.0.tgz#c13fb3380bde22bf6575432c493ea8fe37965636" + integrity sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA== + +jest-resolve-dependencies@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz#ad055198959c4cfba8a4f066c673a3f0786507ab" + integrity sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g== + dependencies: + "@jest/types" "^24.9.0" + jest-regex-util "^24.3.0" + jest-snapshot "^24.9.0" + +jest-resolve@24.9.0, jest-resolve@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.9.0.tgz#dff04c7687af34c4dd7e524892d9cf77e5d17321" + integrity sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ== + dependencies: + "@jest/types" "^24.9.0" + browser-resolve "^1.11.3" + chalk "^2.0.1" + jest-pnp-resolver "^1.2.1" + realpath-native "^1.1.0" + +jest-runner@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.9.0.tgz#574fafdbd54455c2b34b4bdf4365a23857fcdf42" + integrity sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg== + dependencies: + "@jest/console" "^24.7.1" + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + chalk "^2.4.2" + exit "^0.1.2" + graceful-fs "^4.1.15" + jest-config "^24.9.0" + jest-docblock "^24.3.0" + jest-haste-map "^24.9.0" + jest-jasmine2 "^24.9.0" + jest-leak-detector "^24.9.0" + jest-message-util "^24.9.0" + jest-resolve "^24.9.0" + jest-runtime "^24.9.0" + jest-util "^24.9.0" + jest-worker "^24.6.0" + source-map-support "^0.5.6" + throat "^4.0.0" + +jest-runtime@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.9.0.tgz#9f14583af6a4f7314a6a9d9f0226e1a781c8e4ac" + integrity sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw== + dependencies: + "@jest/console" "^24.7.1" + "@jest/environment" "^24.9.0" + "@jest/source-map" "^24.3.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/yargs" "^13.0.0" + chalk "^2.0.1" + exit "^0.1.2" + glob "^7.1.3" + graceful-fs "^4.1.15" + jest-config "^24.9.0" + jest-haste-map "^24.9.0" + jest-message-util "^24.9.0" + jest-mock "^24.9.0" + jest-regex-util "^24.3.0" + jest-resolve "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" + realpath-native "^1.1.0" + slash "^2.0.0" + strip-bom "^3.0.0" + yargs "^13.3.0" + +jest-serializer@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.9.0.tgz#e6d7d7ef96d31e8b9079a714754c5d5c58288e73" + integrity sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ== + +jest-snapshot@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.9.0.tgz#ec8e9ca4f2ec0c5c87ae8f925cf97497b0e951ba" + integrity sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew== + dependencies: + "@babel/types" "^7.0.0" + "@jest/types" "^24.9.0" + chalk "^2.0.1" + expect "^24.9.0" + jest-diff "^24.9.0" + jest-get-type "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-resolve "^24.9.0" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + pretty-format "^24.9.0" + semver "^6.2.0" + +jest-util@^24.0.0, jest-util@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.9.0.tgz#7396814e48536d2e85a37de3e4c431d7cb140162" + integrity sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg== + dependencies: + "@jest/console" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/source-map" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + callsites "^3.0.0" + chalk "^2.0.1" + graceful-fs "^4.1.15" + is-ci "^2.0.0" + mkdirp "^0.5.1" + slash "^2.0.0" + source-map "^0.6.0" + +jest-validate@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.9.0.tgz#0775c55360d173cd854e40180756d4ff52def8ab" + integrity sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ== + dependencies: + "@jest/types" "^24.9.0" + camelcase "^5.3.1" + chalk "^2.0.1" + jest-get-type "^24.9.0" + leven "^3.1.0" + pretty-format "^24.9.0" + +jest-watch-typeahead@0.4.2: + version "0.4.2" + resolved "https://registry.yarnpkg.com/jest-watch-typeahead/-/jest-watch-typeahead-0.4.2.tgz#e5be959698a7fa2302229a5082c488c3c8780a4a" + integrity sha512-f7VpLebTdaXs81rg/oj4Vg/ObZy2QtGzAmGLNsqUS5G5KtSN68tFcIsbvNODfNyQxU78g7D8x77o3bgfBTR+2Q== + dependencies: + ansi-escapes "^4.2.1" + chalk "^2.4.1" + jest-regex-util "^24.9.0" + jest-watcher "^24.3.0" + slash "^3.0.0" + string-length "^3.1.0" + strip-ansi "^5.0.0" + +jest-watcher@^24.3.0, jest-watcher@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.9.0.tgz#4b56e5d1ceff005f5b88e528dc9afc8dd4ed2b3b" + integrity sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw== + dependencies: + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/yargs" "^13.0.0" + ansi-escapes "^3.0.0" + chalk "^2.0.1" + jest-util "^24.9.0" + string-length "^2.0.0" + +jest-worker@^24.6.0, jest-worker@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5" + integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw== + dependencies: + merge-stream "^2.0.0" + supports-color "^6.1.0" + +jest-worker@^25.4.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.5.0.tgz#2611d071b79cea0f43ee57a3d118593ac1547db1" + integrity sha512-/dsSmUkIy5EBGfv/IjjqmFxrNAUpBERfGs1oHROyD7yxjG/w+t0GOJDX8O1k32ySmd7+a5IhnJU2qQFcJ4n1vw== + dependencies: + merge-stream "^2.0.0" + supports-color "^7.0.0" + +jest@24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest/-/jest-24.9.0.tgz#987d290c05a08b52c56188c1002e368edb007171" + integrity sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw== + dependencies: + import-local "^2.0.0" + jest-cli "^24.9.0" + +js-base64@^2.1.8: + version "2.6.4" + resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.6.4.tgz#f4e686c5de1ea1f867dbcad3d46d969428df98c4" + integrity sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ== + +js-cookie@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/js-cookie/-/js-cookie-2.2.1.tgz#69e106dc5d5806894562902aa5baec3744e9b2b8" + integrity sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ== + +js-money@^0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/js-money/-/js-money-0.6.3.tgz#20b8fa9b958dac7f57b98d9027252e408e98d4fd" + integrity sha512-B+1RjjusKUribtW1Bs9uoNN32SgXBxLPQ+pF7ldg8V6+QR8cOOhRx3HIChK4v0fQegnijigBetNozjjc5B4+iw== + dependencies: + lodash "4.x.x" + +js-sha3@0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/js-sha3/-/js-sha3-0.8.0.tgz#b9b7a5da73afad7dedd0f8c463954cbde6818840" + integrity sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q== + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-tokens@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" + integrity sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg== + +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + integrity sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg== + +jsdom@^11.5.1: + version "11.12.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8" + integrity sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw== + dependencies: + abab "^2.0.0" + acorn "^5.5.3" + acorn-globals "^4.1.0" + array-equal "^1.0.0" + cssom ">= 0.3.2 < 0.4.0" + cssstyle "^1.0.0" + data-urls "^1.0.0" + domexception "^1.0.1" + escodegen "^1.9.1" + html-encoding-sniffer "^1.0.2" + left-pad "^1.3.0" + nwsapi "^2.0.7" + parse5 "4.0.0" + pn "^1.1.0" + request "^2.87.0" + request-promise-native "^1.0.5" + sax "^1.2.4" + symbol-tree "^3.2.2" + tough-cookie "^2.3.4" + w3c-hr-time "^1.0.1" + webidl-conversions "^4.0.2" + whatwg-encoding "^1.0.3" + whatwg-mimetype "^2.1.0" + whatwg-url "^6.4.1" + ws "^5.2.0" + xml-name-validator "^3.0.0" + +jsdom@^14.1.0: + version "14.1.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-14.1.0.tgz#916463b6094956b0a6c1782c94e380cd30e1981b" + integrity sha512-O901mfJSuTdwU2w3Sn+74T+RnDVP+FuV5fH8tcPWyqrseRAb0s5xOtPgCFiPOtLcyK7CLIJwPyD83ZqQWvA5ng== + dependencies: + abab "^2.0.0" + acorn "^6.0.4" + acorn-globals "^4.3.0" + array-equal "^1.0.0" + cssom "^0.3.4" + cssstyle "^1.1.1" + data-urls "^1.1.0" + domexception "^1.0.1" + escodegen "^1.11.0" + html-encoding-sniffer "^1.0.2" + nwsapi "^2.1.3" + parse5 "5.1.0" + pn "^1.1.0" + request "^2.88.0" + request-promise-native "^1.0.5" + saxes "^3.1.9" + symbol-tree "^3.2.2" + tough-cookie "^2.5.0" + w3c-hr-time "^1.0.1" + w3c-xmlserializer "^1.1.2" + webidl-conversions "^4.0.2" + whatwg-encoding "^1.0.5" + whatwg-mimetype "^2.3.0" + whatwg-url "^7.0.0" + ws "^6.1.2" + xml-name-validator "^3.0.0" + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== + +json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema@0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.4.0.tgz#f7de4cf6efab838ebaeb3236474cbba5a1930ab5" + integrity sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json-stable-stringify@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.2.tgz#e06f23128e0bbe342dc996ed5a19e28b57b580e0" + integrity sha512-eunSSaEnxV12z+Z73y/j5N37/In40GK4GmsSy+tEHJMxknvqnA7/djeYtAgW0GsWHUfg+847WJjKaEylk2y09g== + dependencies: + jsonify "^0.0.1" + +json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA== + +json3@^3.3.2: + version "3.3.3" + resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81" + integrity sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA== + +json5@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" + integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== + dependencies: + minimist "^1.2.0" + +json5@^2.1.2, json5@^2.2.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== + optionalDependencies: + graceful-fs "^4.1.6" + +jsonify@^0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz#2aa3111dae3d34a0f151c63f3a45d995d9420978" + integrity sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg== + +jsprim@^1.2.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.2.tgz#712c65533a15c878ba59e9ed5f0e26d5b77c5feb" + integrity sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw== + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.4.0" + verror "1.10.0" + +jsx-ast-utils@^2.2.1, jsx-ast-utils@^2.2.3: + version "2.4.1" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz#1114a4c1209481db06c690c2b4f488cc665f657e" + integrity sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w== + dependencies: + array-includes "^3.1.1" + object.assign "^4.1.0" + +"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3: + version "3.3.3" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea" + integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw== + dependencies: + array-includes "^3.1.5" + object.assign "^4.1.3" + +killable@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.1.tgz#4c8ce441187a061c7474fb87ca08e2a638194892" + integrity sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg== + +kind-of@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-2.0.1.tgz#018ec7a4ce7e3a86cb9141be519d24c8faa981b5" + integrity sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg== + dependencies: + is-buffer "^1.0.2" + +kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + integrity sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ== + dependencies: + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + integrity sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw== + dependencies: + is-buffer "^1.1.5" + +kind-of@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" + integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== + +kind-of@^6.0.0, kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + +language-subtag-registry@~0.3.2: + version "0.3.22" + resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d" + integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== + +language-tags@=1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" + integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== + dependencies: + language-subtag-registry "~0.3.2" + +last-call-webpack-plugin@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz#9742df0e10e3cf46e5c0381c2de90d3a7a2d7555" + integrity sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w== + dependencies: + lodash "^4.17.5" + webpack-sources "^1.1.0" + +lazy-cache@^0.2.3: + version "0.2.7" + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65" + integrity sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ== + +lazy-cache@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" + integrity sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ== + +left-pad@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" + integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA== + +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + +levenary@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77" + integrity sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ== + dependencies: + leven "^3.1.0" + +levn@^0.3.0, levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + integrity sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +load-json-file@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" + integrity sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A== + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + pinkie-promise "^2.0.0" + strip-bom "^2.0.0" + +load-json-file@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" + integrity sha512-3p6ZOGNbiX4CdvEd1VcE6yi78UrGNpjHO33noGwHCnT/o2fyllJDepsm8+mFFv/DvtwFHht5HIHSyOy5a+ChVQ== + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + strip-bom "^3.0.0" + +load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== + dependencies: + graceful-fs "^4.1.2" + parse-json "^4.0.0" + pify "^3.0.0" + strip-bom "^3.0.0" + +loader-fs-cache@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/loader-fs-cache/-/loader-fs-cache-1.0.3.tgz#f08657646d607078be2f0a032f8bd69dd6f277d9" + integrity sha512-ldcgZpjNJj71n+2Mf6yetz+c9bM4xpKtNds4LbqXzU/PTdeAX0g3ytnU1AJMEcTk2Lex4Smpe3Q/eCTsvUBxbA== + dependencies: + find-cache-dir "^0.1.1" + mkdirp "^0.5.1" + +loader-runner@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" + integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== + +loader-utils@1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" + integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== + dependencies: + big.js "^5.2.2" + emojis-list "^2.0.0" + json5 "^1.0.1" + +loader-utils@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.0.tgz#e4cace5b816d425a166b5f097e10cd12b36064b0" + integrity sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^2.1.2" + +loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0: + version "1.4.2" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.2.tgz#29a957f3a63973883eb684f10ffd3d151fec01a3" + integrity sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^1.0.1" + +loader-utils@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" + integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^2.1.2" + +locate-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + integrity sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA== + dependencies: + p-locate "^2.0.0" + path-exists "^3.0.0" + +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + +lodash-es@^4.17.11, lodash-es@^4.17.21: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee" + integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw== + +lodash._reinterpolate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" + integrity sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA== + +lodash.debounce@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" + integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== + +lodash.get@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" + integrity sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ== + +lodash.keyby@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/lodash.keyby/-/lodash.keyby-4.6.0.tgz#7f6a1abda93fd24e22728a4d361ed8bcba5a4354" + integrity sha512-PRe4Cn20oJM2Sn6ljcZMeKgyhTHpzvzFmdsp9rK+6K0eJs6Tws0MqgGFpfX/o2HjcoQcBny1Eik9W7BnVTzjIQ== + +lodash.memoize@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash.sortby@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" + integrity sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA== + +lodash.template@^4.4.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" + integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A== + dependencies: + lodash._reinterpolate "^3.0.0" + lodash.templatesettings "^4.0.0" + +lodash.templatesettings@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33" + integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ== + dependencies: + lodash._reinterpolate "^3.0.0" + +lodash.uniq@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== + +lodash@4.x.x, "lodash@>=3.5 <5", lodash@^4, lodash@^4.0.0, lodash@^4.13.1, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.5: + version "4.17.21" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + +loglevel@^1.6.8: + version "1.8.1" + resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.8.1.tgz#5c621f83d5b48c54ae93b6156353f555963377b4" + integrity sha512-tCRIJM51SHjAayKwC+QAg8hT8vg6z7GSgLJKGvzuPb1Wc+hLzqtuVLxp6/HzSPOozuK+8ErAhy7U/sVzw8Dgfg== + +loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.2.0, loose-envify@^1.3.1, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +loud-rejection@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" + integrity sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ== + dependencies: + currently-unhandled "^0.4.1" + signal-exit "^3.0.0" + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +lru-cache@^4.0.1: + version "4.1.5" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" + integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +lz-string@^1.4.4: + version "1.4.4" + resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.4.4.tgz#c0d8eaf36059f705796e1e344811cf4c498d3a26" + integrity sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ== + +make-dir@^2.0.0, make-dir@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + dependencies: + pify "^4.0.1" + semver "^5.6.0" + +make-dir@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + dependencies: + semver "^6.0.0" + +makeerror@1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" + integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== + dependencies: + tmpl "1.0.5" + +mamacro@^0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/mamacro/-/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4" + integrity sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA== + +map-cache@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg== + +map-obj@^1.0.0, map-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" + integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== + +map-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" + integrity sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w== + dependencies: + object-visit "^1.0.0" + +match-sorter@^4.1.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/match-sorter/-/match-sorter-4.2.1.tgz#575b4b3737185ba9518b67612b66877ea0b37358" + integrity sha512-s+3h9TiZU9U1pWhIERHf8/f4LmBN6IXaRgo2CI17+XGByGS1GvG5VvXK9pcGyCjGe3WM3mSYRC3ipGrd5UEVgw== + dependencies: + "@babel/runtime" "^7.10.5" + remove-accents "0.4.2" + +match-sorter@^6.0.2: + version "6.3.1" + resolved "https://registry.yarnpkg.com/match-sorter/-/match-sorter-6.3.1.tgz#98cc37fda756093424ddf3cbc62bfe9c75b92bda" + integrity sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw== + dependencies: + "@babel/runtime" "^7.12.5" + remove-accents "0.4.2" + +md5.js@^1.3.4: + version "1.3.5" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" + integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +mdn-data@2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" + integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== + +mdn-data@2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" + integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== + +memory-fs@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" + integrity sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ== + dependencies: + errno "^0.1.3" + readable-stream "^2.0.1" + +memory-fs@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c" + integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA== + dependencies: + errno "^0.1.3" + readable-stream "^2.0.1" + +meow@^3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" + integrity sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA== + dependencies: + camelcase-keys "^2.0.0" + decamelize "^1.1.2" + loud-rejection "^1.0.0" + map-obj "^1.0.1" + minimist "^1.1.3" + normalize-package-data "^2.3.4" + object-assign "^4.0.1" + read-pkg-up "^1.0.1" + redent "^1.0.0" + trim-newlines "^1.0.0" + +merge-deep@^3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/merge-deep/-/merge-deep-3.0.3.tgz#1a2b2ae926da8b2ae93a0ac15d90cd1922766003" + integrity sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA== + dependencies: + arr-union "^3.1.0" + clone-deep "^0.2.4" + kind-of "^3.0.2" + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.2.3, merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== + +microevent.ts@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/microevent.ts/-/microevent.ts-0.1.1.tgz#70b09b83f43df5172d0205a63025bce0f7357fa0" + integrity sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g== + +micromatch@^3.1.10, micromatch@^3.1.4: + version "3.1.10" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.3.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" + extglob "^2.0.4" + fragment-cache "^0.2.1" + kind-of "^6.0.2" + nanomatch "^1.2.9" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.2" + +micromatch@^4.0.2, micromatch@^4.0.4: + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +microseconds@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/microseconds/-/microseconds-0.2.0.tgz#233b25f50c62a65d861f978a4a4f8ec18797dc39" + integrity sha512-n7DHHMjR1avBbSpsTBj6fmMGh2AGrifVV4e+WYc3Q9lO+xnSZ3NyhcBND3vzzatt05LFhoKFRxrIyklmLlUtyA== + +miller-rabin@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" + integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + +mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24, mime-types@~2.1.34: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mime@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mime@^2.4.4: + version "2.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" + integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== + +mimic-fn@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +min-indent@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" + integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== + +mini-css-extract-plugin@0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz#47f2cf07aa165ab35733b1fc97d4c46c0564339e" + integrity sha512-lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A== + dependencies: + loader-utils "^1.1.0" + normalize-url "1.9.1" + schema-utils "^1.0.0" + webpack-sources "^1.1.0" + +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== + +minimatch@3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@~3.0.2: + version "3.0.8" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.8.tgz#5e6a59bd11e2ab0de1cfb843eb2d82e546c321c1" + integrity sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q== + dependencies: + brace-expansion "^1.1.7" + +minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.6: + version "1.2.7" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" + integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== + +minipass-collect@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" + integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== + dependencies: + minipass "^3.0.0" + +minipass-flush@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" + integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== + dependencies: + minipass "^3.0.0" + +minipass-pipeline@^1.2.2: + version "1.2.4" + resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" + integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== + dependencies: + minipass "^3.0.0" + +minipass@^3.0.0, minipass@^3.1.1: + version "3.3.6" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" + integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== + dependencies: + yallist "^4.0.0" + +mississippi@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" + integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA== + dependencies: + concat-stream "^1.5.0" + duplexify "^3.4.2" + end-of-stream "^1.1.0" + flush-write-stream "^1.0.0" + from2 "^2.1.0" + parallel-transform "^1.1.0" + pump "^3.0.0" + pumpify "^1.3.3" + stream-each "^1.1.0" + through2 "^2.0.0" + +mixin-deep@^1.2.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" + integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== + dependencies: + for-in "^1.0.2" + is-extendable "^1.0.1" + +mixin-object@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e" + integrity sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA== + dependencies: + for-in "^0.1.3" + is-extendable "^0.1.1" + +"mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@^0.5.6, mkdirp@~0.5.1: + version "0.5.6" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" + integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== + dependencies: + minimist "^1.2.6" + +moment-timezone@^0.5.31, moment-timezone@^0.5.33: + version "0.5.40" + resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.40.tgz#c148f5149fd91dd3e29bf481abc8830ecba16b89" + integrity sha512-tWfmNkRYmBkPJz5mr9GVDn9vRlVZOTe6yqY92rFxiOdWXbjaR0+9LwQnZGGuNR63X456NqmEkbskte8tWL5ePg== + dependencies: + moment ">= 2.9.0" + +"moment@>= 2.9.0", moment@^2.24.0, moment@^2.29.0: + version "2.29.4" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.4.tgz#3dbe052889fe7c1b2ed966fcb3a77328964ef108" + integrity sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w== + +move-concurrently@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" + integrity sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ== + dependencies: + aproba "^1.1.1" + copy-concurrently "^1.0.0" + fs-write-stream-atomic "^1.0.8" + mkdirp "^0.5.1" + rimraf "^2.5.4" + run-queue "^1.0.3" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@2.1.3, ms@^2.1.1: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +multicast-dns-service-types@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901" + integrity sha512-cnAsSVxIDsYt0v7HmC0hWZFwwXSh+E6PgCrREDuN/EsjgLwA5XRmlMHhSiDPrt6HxY1gTivEa/Zh7GtODoLevQ== + +multicast-dns@^6.0.1: + version "6.2.3" + resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.2.3.tgz#a0ec7bd9055c4282f790c3c82f4e28db3b31b229" + integrity sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g== + dependencies: + dns-packet "^1.3.1" + thunky "^1.0.2" + +mute-stream@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + +nan@^2.12.1, nan@^2.13.2: + version "2.17.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.17.0.tgz#c0150a2368a182f033e9aa5195ec76ea41a199cb" + integrity sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ== + +nano-css@^5.2.1: + version "5.3.5" + resolved "https://registry.yarnpkg.com/nano-css/-/nano-css-5.3.5.tgz#3075ea29ffdeb0c7cb6d25edb21d8f7fa8e8fe8e" + integrity sha512-vSB9X12bbNu4ALBu7nigJgRViZ6ja3OU7CeuiV1zMIbXOdmkLahgtPmh3GBOlDxbKY0CitqlPdOReGlBLSp+yg== + dependencies: + css-tree "^1.1.2" + csstype "^3.0.6" + fastest-stable-stringify "^2.0.2" + inline-style-prefixer "^6.0.0" + rtl-css-js "^1.14.0" + sourcemap-codec "^1.4.8" + stacktrace-js "^2.0.2" + stylis "^4.0.6" + +nano-time@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/nano-time/-/nano-time-1.0.0.tgz#b0554f69ad89e22d0907f7a12b0993a5d96137ef" + integrity sha512-flnngywOoQ0lLQOTRNexn2gGSNuM9bKj9RZAWSzhQ+UJYaAFG9bac4DW9VHjUAzrOaIcajHybCTHe/bkvozQqA== + dependencies: + big-integer "^1.6.16" + +nanomatch@^1.2.9: + version "1.2.13" + resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" + integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + define-property "^2.0.2" + extend-shallow "^3.0.2" + fragment-cache "^0.2.1" + is-windows "^1.0.2" + kind-of "^6.0.2" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +negotiator@0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== + +neo-async@^2.5.0, neo-async@^2.6.1: + version "2.6.2" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== + +next-tick@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb" + integrity sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ== + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-forge@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3" + integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA== + +node-gyp@^3.8.0: + version "3.8.0" + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.8.0.tgz#540304261c330e80d0d5edce253a68cb3964218c" + integrity sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA== + dependencies: + fstream "^1.0.0" + glob "^7.0.3" + graceful-fs "^4.1.2" + mkdirp "^0.5.0" + nopt "2 || 3" + npmlog "0 || 1 || 2 || 3 || 4" + osenv "0" + request "^2.87.0" + rimraf "2" + semver "~5.3.0" + tar "^2.0.0" + which "1" + +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== + +node-libs-browser@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425" + integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q== + dependencies: + assert "^1.1.1" + browserify-zlib "^0.2.0" + buffer "^4.3.0" + console-browserify "^1.1.0" + constants-browserify "^1.0.0" + crypto-browserify "^3.11.0" + domain-browser "^1.1.1" + events "^3.0.0" + https-browserify "^1.0.0" + os-browserify "^0.3.0" + path-browserify "0.0.1" + process "^0.11.10" + punycode "^1.2.4" + querystring-es3 "^0.2.0" + readable-stream "^2.3.3" + stream-browserify "^2.0.1" + stream-http "^2.7.2" + string_decoder "^1.0.0" + timers-browserify "^2.0.4" + tty-browserify "0.0.0" + url "^0.11.0" + util "^0.11.0" + vm-browserify "^1.0.1" + +node-notifier@^5.4.2: + version "5.4.5" + resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.5.tgz#0cbc1a2b0f658493b4025775a13ad938e96091ef" + integrity sha512-tVbHs7DyTLtzOiN78izLA85zRqB9NvEXkAf014Vx3jtSvn/xBl6bR8ZYifj+dFcFrKI21huSQgJZ6ZtL3B4HfQ== + dependencies: + growly "^1.3.0" + is-wsl "^1.1.0" + semver "^5.5.0" + shellwords "^0.1.1" + which "^1.3.0" + +node-releases@^1.1.52, node-releases@^1.1.61: + version "1.1.77" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.77.tgz#50b0cfede855dd374e7585bf228ff34e57c1c32e" + integrity sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ== + +node-releases@^2.0.8: + version "2.0.9" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.9.tgz#fe66405285382b0c4ac6bcfbfbe7e8a510650b4d" + integrity sha512-2xfmOrRkGogbTK9R6Leda0DGiXeY3p2NJpy4+gNCffdUvV6mdEJnaDEic1i3Ec2djAo8jWYoJMR5PB0MSMpxUA== + +node-sass@^4.14.1: + version "4.14.1" + resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.14.1.tgz#99c87ec2efb7047ed638fb4c9db7f3a42e2217b5" + integrity sha512-sjCuOlvGyCJS40R8BscF5vhVlQjNN069NtQ1gSxyK1u9iqvn6tf7O1R4GNowVZfiZUCRt5MmMs1xd+4V/7Yr0g== + dependencies: + async-foreach "^0.1.3" + chalk "^1.1.1" + cross-spawn "^3.0.0" + gaze "^1.0.0" + get-stdin "^4.0.1" + glob "^7.0.3" + in-publish "^2.0.0" + lodash "^4.17.15" + meow "^3.7.0" + mkdirp "^0.5.1" + nan "^2.13.2" + node-gyp "^3.8.0" + npmlog "^4.0.0" + request "^2.88.0" + sass-graph "2.2.5" + stdout-stream "^1.4.0" + "true-case-path" "^1.0.2" + +"nopt@2 || 3": + version "3.0.6" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" + integrity sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg== + dependencies: + abbrev "1" + +normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: + version "2.5.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + 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" + +normalize-path@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + integrity sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w== + dependencies: + remove-trailing-separator "^1.0.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== + +normalize-url@1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" + integrity sha512-A48My/mtCklowHBlI8Fq2jFWK4tX4lJ5E6ytFsSOq1fzpvT0SQSgKhSg7lN5c2uYFOrUAOQp6zhhJnpp1eMloQ== + dependencies: + object-assign "^4.0.1" + prepend-http "^1.0.0" + query-string "^4.1.0" + sort-keys "^1.0.0" + +normalize-url@^3.0.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" + integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== + +normalize.css@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/normalize.css/-/normalize.css-8.0.1.tgz#9b98a208738b9cc2634caacbc42d131c97487bf3" + integrity sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg== + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + integrity sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw== + dependencies: + path-key "^2.0.0" + +"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0: + version "4.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + +nth-check@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" + integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== + dependencies: + boolbase "~1.0.0" + +nth-check@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== + dependencies: + boolbase "^1.0.0" + +num2fraction@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" + integrity sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg== + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ== + +nwsapi@^2.0.7, nwsapi@^2.1.3: + version "2.2.2" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.2.tgz#e5418863e7905df67d51ec95938d67bf801f0bb0" + integrity sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw== + +oauth-sign@~0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" + integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== + +object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + +object-copy@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" + integrity sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ== + dependencies: + copy-descriptor "^0.1.0" + define-property "^0.2.5" + kind-of "^3.0.3" + +object-hash@^2.0.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.2.0.tgz#5ad518581eefc443bd763472b8ff2e9c2c0d54a5" + integrity sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw== + +object-inspect@^1.12.2, object-inspect@^1.9.0: + version "1.12.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" + integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== + +object-is@^1.0.1, object-is@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" + integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +object-keys@^1.0.11, object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object-visit@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" + integrity sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA== + dependencies: + isobject "^3.0.0" + +object.assign@^4.1.0, object.assign@^4.1.3, object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +object.entries@^1.1.0, object.entries@^1.1.1, object.entries@^1.1.5, object.entries@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23" + integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +object.fromentries@^2.0.2, object.fromentries@^2.0.5, object.fromentries@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73" + integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0, object.getownpropertydescriptors@^2.1.1: + version "2.1.5" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.5.tgz#db5a9002489b64eef903df81d6623c07e5b4b4d3" + integrity sha512-yDNzckpM6ntyQiGTik1fKV1DcVDRS+w8bvpWNCBanvH5LfRX9O8WTHqQzG4RZwRAM4I0oU7TV11Lj5v0g20ibw== + dependencies: + array.prototype.reduce "^1.0.5" + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +object.hasown@^1.1.0, object.hasown@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92" + integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw== + dependencies: + define-properties "^1.1.4" + es-abstract "^1.20.4" + +object.pick@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" + integrity sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ== + dependencies: + isobject "^3.0.1" + +object.values@^1.1.0, object.values@^1.1.1, object.values@^1.1.5, object.values@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d" + integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +oblivious-set@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/oblivious-set/-/oblivious-set-1.0.0.tgz#c8316f2c2fb6ff7b11b6158db3234c49f733c566" + integrity sha512-z+pI07qxo4c2CulUHCDf9lcqDlMSo72N/4rLUpRXf6fu+q8vjt8y0xS+Tlf8NTJDdTXHbdeO1n3MlbctwEoXZw== + +obuf@^1.0.0, obuf@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" + integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== + +on-finished@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + +once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +onetime@^5.1.0: + version "5.1.2" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== + dependencies: + mimic-fn "^2.1.0" + +open@^7.0.2: + version "7.4.2" + resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321" + integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q== + dependencies: + is-docker "^2.0.0" + is-wsl "^2.1.1" + +opn@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc" + integrity sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA== + dependencies: + is-wsl "^1.1.0" + +optimize-css-assets-webpack-plugin@5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.3.tgz#e2f1d4d94ad8c0af8967ebd7cf138dcb1ef14572" + integrity sha512-q9fbvCRS6EYtUKKSwI87qm2IxlyJK5b4dygW1rKUBT6mMDhdG5e5bZT63v6tnJR9F9FB/H5a0HTmtw+laUBxKA== + dependencies: + cssnano "^4.1.10" + last-call-webpack-plugin "^3.0.0" + +optionator@^0.8.1, optionator@^0.8.3: + version "0.8.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" + 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" + +os-browserify@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" + integrity sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A== + +os-homedir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + integrity sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ== + +os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g== + +osenv@0: + version "0.1.5" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + +p-each-series@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-1.0.0.tgz#930f3d12dd1f50e7434457a22cd6f04ac6ad7f71" + integrity sha512-J/e9xiZZQNrt+958FFzJ+auItsBGq+UrQ7nE89AUP7UOTtjHnkISANXLdayhVzh538UnLMCSlf13lFfRIAKQOA== + dependencies: + p-reduce "^1.0.0" + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== + +p-limit@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" + integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== + dependencies: + p-try "^1.0.0" + +p-limit@^2.0.0, p-limit@^2.2.0, p-limit@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + +p-locate@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + integrity sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg== + dependencies: + p-limit "^1.1.0" + +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-map@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" + integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== + +p-map@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d" + integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ== + dependencies: + aggregate-error "^3.0.0" + +p-reduce@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa" + integrity sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ== + +p-retry@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-3.0.1.tgz#316b4c8893e2c8dc1cfa891f406c4b422bebf328" + integrity sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w== + dependencies: + retry "^0.12.0" + +p-try@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" + integrity sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww== + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +pako@~1.0.5: + version "1.0.11" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" + integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== + +parallel-transform@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc" + integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg== + dependencies: + cyclist "^1.0.1" + inherits "^2.0.3" + readable-stream "^2.1.5" + +param-case@^3.0.3: + version "3.0.4" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" + integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-asn1@^5.0.0, parse-asn1@^5.1.5: + version "5.1.6" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" + integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== + dependencies: + asn1.js "^5.2.0" + browserify-aes "^1.0.0" + evp_bytestokey "^1.0.0" + pbkdf2 "^3.0.3" + safe-buffer "^5.1.1" + +parse-json@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + integrity sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ== + dependencies: + error-ex "^1.2.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +parse-json@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + 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" + +parse5@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" + integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA== + +parse5@5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2" + integrity sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ== + +parseurl@~1.3.2, parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + +pascal-case@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" + integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +pascalcase@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" + integrity sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw== + +path-browserify@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" + integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== + +path-browserify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" + integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== + +path-dirname@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" + integrity sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q== + +path-exists@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" + integrity sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ== + dependencies: + pinkie-promise "^2.0.0" + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-is-inside@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + integrity sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w== + +path-key@^2.0.0, path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== + +path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.6, path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== + +path-to-regexp@^1.7.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a" + integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA== + dependencies: + isarray "0.0.1" + +path-type@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" + integrity sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg== + dependencies: + graceful-fs "^4.1.2" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +path-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" + integrity sha512-dUnb5dXUf+kzhC/W/F4e5/SkluXIFf5VUHolW1Eg1irn1hGWjPGdsRcvYJ1nD6lhk8Ir7VM0bHJKsYTx8Jx9OQ== + dependencies: + pify "^2.0.0" + +path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + dependencies: + pify "^3.0.0" + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +pbkdf2@^3.0.3: + version "3.1.2" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075" + integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== + dependencies: + create-hash "^1.1.2" + create-hmac "^1.1.4" + ripemd160 "^2.0.1" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== + +picocolors@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-0.2.1.tgz#570670f793646851d1ba135996962abad587859f" + integrity sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA== + +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.0, picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pify@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== + +pify@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + integrity sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw== + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + integrity sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg== + +pirates@^4.0.1: + version "4.0.5" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" + integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== + +pkg-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" + integrity sha512-c6pv3OE78mcZ92ckebVDqg0aWSoKhOTbwCV6qbCWMk546mAL9pZln0+QsN/yQ7fkucd4+yJPLrCBXNt8Ruk+Eg== + dependencies: + find-up "^1.0.0" + +pkg-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== + dependencies: + find-up "^3.0.0" + +pkg-dir@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== + dependencies: + find-up "^4.0.0" + +pkg-up@3.1.0, pkg-up@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5" + integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA== + dependencies: + find-up "^3.0.0" + +pn@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" + integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== + +pnp-webpack-plugin@1.6.4: + version "1.6.4" + resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149" + integrity sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg== + dependencies: + ts-pnp "^1.1.6" + +popper.js@^1.14.4, popper.js@^1.16.1: + version "1.16.1" + resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b" + integrity sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ== + +portfinder@^1.0.26: + version "1.0.32" + resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.32.tgz#2fe1b9e58389712429dc2bea5beb2146146c7f81" + integrity sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg== + dependencies: + async "^2.6.4" + debug "^3.2.7" + mkdirp "^0.5.6" + +posix-character-classes@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" + integrity sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg== + +postcss-attribute-case-insensitive@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz#d93e46b504589e94ac7277b0463226c68041a880" + integrity sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA== + dependencies: + postcss "^7.0.2" + postcss-selector-parser "^6.0.2" + +postcss-browser-comments@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-browser-comments/-/postcss-browser-comments-3.0.0.tgz#1248d2d935fb72053c8e1f61a84a57292d9f65e9" + integrity sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig== + dependencies: + postcss "^7" + +postcss-calc@^7.0.1: + version "7.0.5" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.5.tgz#f8a6e99f12e619c2ebc23cf6c486fdc15860933e" + integrity sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg== + dependencies: + postcss "^7.0.27" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.0.2" + +postcss-color-functional-notation@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz#5efd37a88fbabeb00a2966d1e53d98ced93f74e0" + integrity sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g== + dependencies: + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-color-gray@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz#532a31eb909f8da898ceffe296fdc1f864be8547" + integrity sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw== + dependencies: + "@csstools/convert-colors" "^1.4.0" + postcss "^7.0.5" + postcss-values-parser "^2.0.0" + +postcss-color-hex-alpha@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz#a8d9ca4c39d497c9661e374b9c51899ef0f87388" + integrity sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw== + dependencies: + postcss "^7.0.14" + postcss-values-parser "^2.0.1" + +postcss-color-mod-function@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz#816ba145ac11cc3cb6baa905a75a49f903e4d31d" + integrity sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ== + dependencies: + "@csstools/convert-colors" "^1.4.0" + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-color-rebeccapurple@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz#c7a89be872bb74e45b1e3022bfe5748823e6de77" + integrity sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g== + dependencies: + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-colormin@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.3.tgz#ae060bce93ed794ac71264f08132d550956bd381" + integrity sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw== + dependencies: + browserslist "^4.0.0" + color "^3.0.0" + has "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-convert-values@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f" + integrity sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ== + dependencies: + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-custom-media@^7.0.8: + version "7.0.8" + resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz#fffd13ffeffad73621be5f387076a28b00294e0c" + integrity sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg== + dependencies: + postcss "^7.0.14" + +postcss-custom-properties@^8.0.11: + version "8.0.11" + resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz#2d61772d6e92f22f5e0d52602df8fae46fa30d97" + integrity sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA== + dependencies: + postcss "^7.0.17" + postcss-values-parser "^2.0.1" + +postcss-custom-selectors@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz#64858c6eb2ecff2fb41d0b28c9dd7b3db4de7fba" + integrity sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w== + dependencies: + postcss "^7.0.2" + postcss-selector-parser "^5.0.0-rc.3" + +postcss-dir-pseudo-class@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz#6e3a4177d0edb3abcc85fdb6fbb1c26dabaeaba2" + integrity sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw== + dependencies: + postcss "^7.0.2" + postcss-selector-parser "^5.0.0-rc.3" + +postcss-discard-comments@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033" + integrity sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg== + dependencies: + postcss "^7.0.0" + +postcss-discard-duplicates@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb" + integrity sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ== + dependencies: + postcss "^7.0.0" + +postcss-discard-empty@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765" + integrity sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w== + dependencies: + postcss "^7.0.0" + +postcss-discard-overridden@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57" + integrity sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg== + dependencies: + postcss "^7.0.0" + +postcss-double-position-gradients@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz#fc927d52fddc896cb3a2812ebc5df147e110522e" + integrity sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA== + dependencies: + postcss "^7.0.5" + postcss-values-parser "^2.0.0" + +postcss-env-function@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/postcss-env-function/-/postcss-env-function-2.0.2.tgz#0f3e3d3c57f094a92c2baf4b6241f0b0da5365d7" + integrity sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw== + dependencies: + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-flexbugs-fixes@4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.1.0.tgz#e094a9df1783e2200b7b19f875dcad3b3aff8b20" + integrity sha512-jr1LHxQvStNNAHlgco6PzY308zvLklh7SJVYuWUwyUQncofaAlD2l+P/gxKHOdqWKe7xJSkVLFF/2Tp+JqMSZA== + dependencies: + postcss "^7.0.0" + +postcss-focus-visible@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz#477d107113ade6024b14128317ade2bd1e17046e" + integrity sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g== + dependencies: + postcss "^7.0.2" + +postcss-focus-within@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz#763b8788596cee9b874c999201cdde80659ef680" + integrity sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w== + dependencies: + postcss "^7.0.2" + +postcss-font-variant@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz#42d4c0ab30894f60f98b17561eb5c0321f502641" + integrity sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA== + dependencies: + postcss "^7.0.2" + +postcss-gap-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz#431c192ab3ed96a3c3d09f2ff615960f902c1715" + integrity sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg== + dependencies: + postcss "^7.0.2" + +postcss-image-set-function@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz#28920a2f29945bed4c3198d7df6496d410d3f288" + integrity sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw== + dependencies: + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-initial@^3.0.0: + version "3.0.4" + resolved "https://registry.yarnpkg.com/postcss-initial/-/postcss-initial-3.0.4.tgz#9d32069a10531fe2ecafa0b6ac750ee0bc7efc53" + integrity sha512-3RLn6DIpMsK1l5UUy9jxQvoDeUN4gP939tDcKUHD/kM8SGSKbFAnvkpFpj3Bhtz3HGk1jWY5ZNWX6mPta5M9fg== + dependencies: + postcss "^7.0.2" + +postcss-lab-function@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz#bb51a6856cd12289ab4ae20db1e3821ef13d7d2e" + integrity sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg== + dependencies: + "@csstools/convert-colors" "^1.4.0" + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-load-config@^2.0.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.2.tgz#c5ea504f2c4aef33c7359a34de3573772ad7502a" + integrity sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw== + dependencies: + cosmiconfig "^5.0.0" + import-cwd "^2.0.0" + +postcss-loader@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-3.0.0.tgz#6b97943e47c72d845fa9e03f273773d4e8dd6c2d" + integrity sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA== + dependencies: + loader-utils "^1.1.0" + postcss "^7.0.0" + postcss-load-config "^2.0.0" + schema-utils "^1.0.0" + +postcss-logical@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-3.0.0.tgz#2495d0f8b82e9f262725f75f9401b34e7b45d5b5" + integrity sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA== + dependencies: + postcss "^7.0.2" + +postcss-media-minmax@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz#b75bb6cbc217c8ac49433e12f22048814a4f5ed5" + integrity sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw== + dependencies: + postcss "^7.0.2" + +postcss-merge-longhand@^4.0.11: + version "4.0.11" + resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24" + integrity sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw== + dependencies: + css-color-names "0.0.4" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + stylehacks "^4.0.0" + +postcss-merge-rules@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz#362bea4ff5a1f98e4075a713c6cb25aefef9a650" + integrity sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ== + dependencies: + browserslist "^4.0.0" + caniuse-api "^3.0.0" + cssnano-util-same-parent "^4.0.0" + postcss "^7.0.0" + postcss-selector-parser "^3.0.0" + vendors "^1.0.0" + +postcss-minify-font-values@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6" + integrity sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg== + dependencies: + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-minify-gradients@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz#93b29c2ff5099c535eecda56c4aa6e665a663471" + integrity sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q== + dependencies: + cssnano-util-get-arguments "^4.0.0" + is-color-stop "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-minify-params@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz#6b9cef030c11e35261f95f618c90036d680db874" + integrity sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg== + dependencies: + alphanum-sort "^1.0.0" + browserslist "^4.0.0" + cssnano-util-get-arguments "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + uniqs "^2.0.0" + +postcss-minify-selectors@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz#e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8" + integrity sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g== + dependencies: + alphanum-sort "^1.0.0" + has "^1.0.0" + postcss "^7.0.0" + postcss-selector-parser "^3.0.0" + +postcss-modules-extract-imports@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" + integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ== + dependencies: + postcss "^7.0.5" + +postcss-modules-local-by-default@^3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz#bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0" + integrity sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw== + dependencies: + icss-utils "^4.1.1" + postcss "^7.0.32" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.1.0" + +postcss-modules-scope@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee" + integrity sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ== + dependencies: + postcss "^7.0.6" + postcss-selector-parser "^6.0.0" + +postcss-modules-values@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10" + integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg== + dependencies: + icss-utils "^4.0.0" + postcss "^7.0.6" + +postcss-nesting@^7.0.0: + version "7.0.1" + resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-7.0.1.tgz#b50ad7b7f0173e5b5e3880c3501344703e04c052" + integrity sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg== + dependencies: + postcss "^7.0.2" + +postcss-normalize-charset@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4" + integrity sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g== + dependencies: + postcss "^7.0.0" + +postcss-normalize-display-values@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz#0dbe04a4ce9063d4667ed2be476bb830c825935a" + integrity sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ== + dependencies: + cssnano-util-get-match "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-positions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz#05f757f84f260437378368a91f8932d4b102917f" + integrity sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA== + dependencies: + cssnano-util-get-arguments "^4.0.0" + has "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-repeat-style@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz#c4ebbc289f3991a028d44751cbdd11918b17910c" + integrity sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q== + dependencies: + cssnano-util-get-arguments "^4.0.0" + cssnano-util-get-match "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-string@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz#cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c" + integrity sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA== + dependencies: + has "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-timing-functions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz#8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9" + integrity sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A== + dependencies: + cssnano-util-get-match "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-unicode@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb" + integrity sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg== + dependencies: + browserslist "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-url@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1" + integrity sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA== + dependencies: + is-absolute-url "^2.0.0" + normalize-url "^3.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-whitespace@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz#bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82" + integrity sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA== + dependencies: + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize@8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/postcss-normalize/-/postcss-normalize-8.0.1.tgz#90e80a7763d7fdf2da6f2f0f82be832ce4f66776" + integrity sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ== + dependencies: + "@csstools/normalize.css" "^10.1.0" + browserslist "^4.6.2" + postcss "^7.0.17" + postcss-browser-comments "^3.0.0" + sanitize.css "^10.0.0" + +postcss-ordered-values@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz#0cf75c820ec7d5c4d280189559e0b571ebac0eee" + integrity sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw== + dependencies: + cssnano-util-get-arguments "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-overflow-shorthand@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz#31ecf350e9c6f6ddc250a78f0c3e111f32dd4c30" + integrity sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g== + dependencies: + postcss "^7.0.2" + +postcss-page-break@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-page-break/-/postcss-page-break-2.0.0.tgz#add52d0e0a528cabe6afee8b46e2abb277df46bf" + integrity sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ== + dependencies: + postcss "^7.0.2" + +postcss-place@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-place/-/postcss-place-4.0.1.tgz#e9f39d33d2dc584e46ee1db45adb77ca9d1dcc62" + integrity sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg== + dependencies: + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-preset-env@6.7.0: + version "6.7.0" + resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz#c34ddacf8f902383b35ad1e030f178f4cdf118a5" + integrity sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg== + dependencies: + autoprefixer "^9.6.1" + browserslist "^4.6.4" + caniuse-lite "^1.0.30000981" + css-blank-pseudo "^0.1.4" + css-has-pseudo "^0.10.0" + css-prefers-color-scheme "^3.1.1" + cssdb "^4.4.0" + postcss "^7.0.17" + postcss-attribute-case-insensitive "^4.0.1" + postcss-color-functional-notation "^2.0.1" + postcss-color-gray "^5.0.0" + postcss-color-hex-alpha "^5.0.3" + postcss-color-mod-function "^3.0.3" + postcss-color-rebeccapurple "^4.0.1" + postcss-custom-media "^7.0.8" + postcss-custom-properties "^8.0.11" + postcss-custom-selectors "^5.1.2" + postcss-dir-pseudo-class "^5.0.0" + postcss-double-position-gradients "^1.0.0" + postcss-env-function "^2.0.2" + postcss-focus-visible "^4.0.0" + postcss-focus-within "^3.0.0" + postcss-font-variant "^4.0.0" + postcss-gap-properties "^2.0.0" + postcss-image-set-function "^3.0.1" + postcss-initial "^3.0.0" + postcss-lab-function "^2.0.1" + postcss-logical "^3.0.0" + postcss-media-minmax "^4.0.0" + postcss-nesting "^7.0.0" + postcss-overflow-shorthand "^2.0.0" + postcss-page-break "^2.0.0" + postcss-place "^4.0.1" + postcss-pseudo-class-any-link "^6.0.0" + postcss-replace-overflow-wrap "^3.0.0" + postcss-selector-matches "^4.0.0" + postcss-selector-not "^4.0.0" + +postcss-pseudo-class-any-link@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz#2ed3eed393b3702879dec4a87032b210daeb04d1" + integrity sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew== + dependencies: + postcss "^7.0.2" + postcss-selector-parser "^5.0.0-rc.3" + +postcss-reduce-initial@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz#7fd42ebea5e9c814609639e2c2e84ae270ba48df" + integrity sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA== + dependencies: + browserslist "^4.0.0" + caniuse-api "^3.0.0" + has "^1.0.0" + postcss "^7.0.0" + +postcss-reduce-transforms@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz#17efa405eacc6e07be3414a5ca2d1074681d4e29" + integrity sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg== + dependencies: + cssnano-util-get-match "^4.0.0" + has "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-replace-overflow-wrap@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz#61b360ffdaedca84c7c918d2b0f0d0ea559ab01c" + integrity sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw== + dependencies: + postcss "^7.0.2" + +postcss-safe-parser@4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-4.0.1.tgz#8756d9e4c36fdce2c72b091bbc8ca176ab1fcdea" + integrity sha512-xZsFA3uX8MO3yAda03QrG3/Eg1LN3EPfjjf07vke/46HERLZyHrTsQ9E1r1w1W//fWEhtYNndo2hQplN2cVpCQ== + dependencies: + postcss "^7.0.0" + +postcss-selector-matches@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz#71c8248f917ba2cc93037c9637ee09c64436fcff" + integrity sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww== + dependencies: + balanced-match "^1.0.0" + postcss "^7.0.2" + +postcss-selector-not@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz#263016eef1cf219e0ade9a913780fc1f48204cbf" + integrity sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ== + dependencies: + balanced-match "^1.0.0" + postcss "^7.0.2" + +postcss-selector-parser@^3.0.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270" + integrity sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA== + dependencies: + dot-prop "^5.2.0" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss-selector-parser@^5.0.0-rc.3, postcss-selector-parser@^5.0.0-rc.4: + version "5.0.0" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c" + integrity sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ== + dependencies: + cssesc "^2.0.0" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: + version "6.0.11" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz#2e41dc39b7ad74046e1615185185cd0b17d0c8dc" + integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-svgo@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.3.tgz#343a2cdbac9505d416243d496f724f38894c941e" + integrity sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw== + dependencies: + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + svgo "^1.0.0" + +postcss-unique-selectors@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac" + integrity sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg== + dependencies: + alphanum-sort "^1.0.0" + postcss "^7.0.0" + uniqs "^2.0.0" + +postcss-value-parser@^3.0.0: + version "3.3.1" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" + integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== + +postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + +postcss-values-parser@^2.0.0, postcss-values-parser@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz#da8b472d901da1e205b47bdc98637b9e9e550e5f" + integrity sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg== + dependencies: + flatten "^1.0.2" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss@7.0.21: + version "7.0.21" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.21.tgz#06bb07824c19c2021c5d056d5b10c35b989f7e17" + integrity sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ== + dependencies: + chalk "^2.4.2" + source-map "^0.6.1" + supports-color "^6.1.0" + +postcss@^6.0.23: + version "6.0.23" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" + integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag== + dependencies: + chalk "^2.4.1" + source-map "^0.6.1" + supports-color "^5.4.0" + +postcss@^7, postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.23, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6: + version "7.0.39" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.39.tgz#9624375d965630e2e1f2c02a935c82a59cb48309" + integrity sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA== + dependencies: + picocolors "^0.2.1" + source-map "^0.6.1" + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + integrity sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== + +prepend-http@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" + integrity sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg== + +prettier@latest: + version "2.8.3" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.3.tgz#ab697b1d3dd46fb4626fbe2f543afe0cc98d8632" + integrity sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw== + +pretty-bytes@^5.1.0: + version "5.6.0" + resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" + integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== + +pretty-error@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.2.tgz#be89f82d81b1c86ec8fdfbc385045882727f93b6" + integrity sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw== + dependencies: + lodash "^4.17.20" + renderkid "^2.0.4" + +pretty-format@^24.0.0, pretty-format@^24.3.0, pretty-format@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.9.0.tgz#12fac31b37019a4eea3c11aa9a959eb7628aa7c9" + integrity sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA== + dependencies: + "@jest/types" "^24.9.0" + ansi-regex "^4.0.0" + ansi-styles "^3.2.0" + react-is "^16.8.4" + +pretty-format@^25.1.0: + version "25.5.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.5.0.tgz#7873c1d774f682c34b8d48b6743a2bf2ac55791a" + integrity sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ== + dependencies: + "@jest/types" "^25.5.0" + ansi-regex "^5.0.0" + ansi-styles "^4.0.0" + react-is "^16.12.0" + +pretty-format@^26.0.0, pretty-format@^26.6.2: + version "26.6.2" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93" + integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg== + dependencies: + "@jest/types" "^26.6.2" + ansi-regex "^5.0.0" + ansi-styles "^4.0.0" + react-is "^17.0.1" + +pretty-format@^27.0.2: + version "27.5.1" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e" + integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ== + dependencies: + ansi-regex "^5.0.1" + ansi-styles "^5.0.0" + react-is "^17.0.1" + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +process@^0.11.10: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== + +progress@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + +promise-inflight@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" + integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g== + +promise@^8.0.3: + version "8.3.0" + resolved "https://registry.yarnpkg.com/promise/-/promise-8.3.0.tgz#8cb333d1edeb61ef23869fbb8a4ea0279ab60e0a" + integrity sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg== + dependencies: + asap "~2.0.6" + +prompts@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.0.tgz#4aa5de0723a231d1ee9121c40fdf663df73f61d7" + integrity sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +prompts@^2.0.1: + version "2.4.2" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" + integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.5" + +prop-types@^15.5.0, prop-types@^15.5.4, prop-types@^15.5.6, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: + version "15.8.1" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" + integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.13.1" + +property-expr@^2.0.2: + version "2.0.5" + resolved "https://registry.yarnpkg.com/property-expr/-/property-expr-2.0.5.tgz#278bdb15308ae16af3e3b9640024524f4dc02cb4" + integrity sha512-IJUkICM5dP5znhCckHSv30Q4b5/JA5enCtkRHYaOVOAocnH/1BQEYTC5NMfT3AVl/iXKdr3aqQbQn9DxyWknwA== + +proxy-addr@~2.0.7: + version "2.0.7" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== + dependencies: + forwarded "0.2.0" + ipaddr.js "1.9.1" + +prr@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" + integrity sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw== + +pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ== + +psl@^1.1.28: + version "1.9.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" + integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== + +public-encrypt@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" + integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + safe-buffer "^5.1.2" + +pump@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" + integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pumpify@^1.3.3: + version "1.5.1" + resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" + integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== + dependencies: + duplexify "^3.6.0" + inherits "^2.0.3" + pump "^2.0.0" + +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + integrity sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw== + +punycode@^1.2.4: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== + +punycode@^2.1.0, punycode@^2.1.1: + version "2.3.0" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" + integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== + +q@^1.1.2: + version "1.5.1" + resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" + integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw== + +qs@6.11.0: + version "6.11.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== + dependencies: + side-channel "^1.0.4" + +qs@~6.5.2: + version "6.5.3" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.3.tgz#3aeeffc91967ef6e35c0e488ef46fb296ab76aad" + integrity sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA== + +query-string@^4.1.0: + version "4.3.4" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" + integrity sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q== + dependencies: + object-assign "^4.1.0" + strict-uri-encode "^1.0.0" + +query-string@^7.1.1: + version "7.1.3" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-7.1.3.tgz#a1cf90e994abb113a325804a972d98276fe02328" + integrity sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg== + dependencies: + decode-uri-component "^0.2.2" + filter-obj "^1.1.0" + split-on-first "^1.0.0" + strict-uri-encode "^2.0.0" + +querystring-es3@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + integrity sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA== + +querystring@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + integrity sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g== + +querystring@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.1.tgz#40d77615bb09d16902a85c3e38aa8b5ed761c2dd" + integrity sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg== + +querystringify@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" + integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +raf@^3.4.1: + version "3.4.1" + resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39" + integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA== + dependencies: + performance-now "^2.1.0" + +ramda@^0.27.1: + version "0.27.2" + resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.27.2.tgz#84463226f7f36dc33592f6f4ed6374c48306c3f1" + integrity sha512-SbiLPU40JuJniHexQSAgad32hfwd+DRUdwF2PlVuI5RZD0/vahUco7R8vD86J/tcEKKF9vZrUVwgtmGCqlCKyA== + +randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +randomfill@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" + integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== + dependencies: + randombytes "^2.0.5" + safe-buffer "^5.1.0" + +range-parser@^1.2.1, range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +raw-body@2.5.1: + version "2.5.1" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" + 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" + +react-app-polyfill@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/react-app-polyfill/-/react-app-polyfill-1.0.6.tgz#890f8d7f2842ce6073f030b117de9130a5f385f0" + integrity sha512-OfBnObtnGgLGfweORmdZbyEz+3dgVePQBb3zipiaDsMHV1NpWm0rDFYIVXFV/AK+x4VIIfWHhrdMIeoTLyRr2g== + dependencies: + core-js "^3.5.0" + object-assign "^4.1.1" + promise "^8.0.3" + raf "^3.4.1" + regenerator-runtime "^0.13.3" + whatwg-fetch "^3.0.0" + +react-body-classname@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/react-body-classname/-/react-body-classname-1.3.1.tgz#f9542289fb99ee7eaf5792e1d852cc88e4d810a0" + integrity sha512-PxskbhmoV8kzIyspjiIc/smQkyyBOQHeUsrh1oj9CC5O1Kg/4gvHWPKsYGWEIq0X51TtCT941u/ulM1dTZ/bOw== + dependencies: + prop-types "^15.5.6" + react-side-effect "^1.1.0 || ^2.1.0" + +react-content-loader@^6.0.1: + version "6.2.0" + resolved "https://registry.yarnpkg.com/react-content-loader/-/react-content-loader-6.2.0.tgz#cd8fee8160b8fda6610d0c69ce5aee7b8094cba6" + integrity sha512-r1dI6S+uHNLW68qraLE2njJYOuy6976PpCExuCZUcABWbfnF3FMcmuESRI8L4Bj45wnZ7n8g71hkPLzbma7/Cw== + +react-day-picker@7.4.9: + version "7.4.9" + resolved "https://registry.yarnpkg.com/react-day-picker/-/react-day-picker-7.4.9.tgz#ab556df9e838caa5bc988e55d1cb15318564149e" + integrity sha512-CcXf0p7p6gTYnG0+n/4wNGljZuQDXl4HhgcxsXB0nX+8D4LnRho9EclPA/aLz4WlvvVpfY+AEgj2ylgPj4nm/g== + dependencies: + prop-types "^15.6.2" + +react-dev-utils@^10.2.1: + version "10.2.1" + resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-10.2.1.tgz#f6de325ae25fa4d546d09df4bb1befdc6dd19c19" + integrity sha512-XxTbgJnYZmxuPtY3y/UV0D8/65NKkmaia4rXzViknVnZeVlklSh8u6TnaEYPfAi/Gh1TP4mEOXHI6jQOPbeakQ== + dependencies: + "@babel/code-frame" "7.8.3" + address "1.1.2" + browserslist "4.10.0" + chalk "2.4.2" + cross-spawn "7.0.1" + detect-port-alt "1.1.6" + escape-string-regexp "2.0.0" + filesize "6.0.1" + find-up "4.1.0" + fork-ts-checker-webpack-plugin "3.1.1" + global-modules "2.0.0" + globby "8.0.2" + gzip-size "5.1.1" + immer "1.10.0" + inquirer "7.0.4" + is-root "2.1.0" + loader-utils "1.2.3" + open "^7.0.2" + pkg-up "3.1.0" + react-error-overlay "^6.0.7" + recursive-readdir "2.2.2" + shell-quote "1.7.2" + strip-ansi "6.0.0" + text-table "0.2.0" + +react-dev-utils@^11.0.4: + version "11.0.4" + resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-11.0.4.tgz#a7ccb60257a1ca2e0efe7a83e38e6700d17aa37a" + integrity sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A== + dependencies: + "@babel/code-frame" "7.10.4" + address "1.1.2" + browserslist "4.14.2" + chalk "2.4.2" + cross-spawn "7.0.3" + detect-port-alt "1.1.6" + escape-string-regexp "2.0.0" + filesize "6.1.0" + find-up "4.1.0" + fork-ts-checker-webpack-plugin "4.1.6" + global-modules "2.0.0" + globby "11.0.1" + gzip-size "5.1.1" + immer "8.0.1" + is-root "2.1.0" + loader-utils "2.0.0" + open "^7.0.2" + pkg-up "3.1.0" + prompts "2.4.0" + react-error-overlay "^6.0.9" + recursive-readdir "2.2.2" + shell-quote "1.7.2" + strip-ansi "6.0.0" + text-table "0.2.0" + +react-dom@^16.12.0: + version "16.14.0" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.14.0.tgz#7ad838ec29a777fb3c75c3a190f661cf92ab8b89" + integrity sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + prop-types "^15.6.2" + scheduler "^0.19.1" + +react-draggable@^4.4.5: + version "4.4.5" + resolved "https://registry.yarnpkg.com/react-draggable/-/react-draggable-4.4.5.tgz#9e37fe7ce1a4cf843030f521a0a4cc41886d7e7c" + integrity sha512-OMHzJdyJbYTZo4uQE393fHcqqPYsEtkjfMgvCHr6rejT+Ezn4OZbNyGH50vv+SunC1RMvwOTSWkEODQLzw1M9g== + dependencies: + clsx "^1.1.1" + prop-types "^15.8.1" + +react-dropzone@^11.0.1: + version "11.7.1" + resolved "https://registry.yarnpkg.com/react-dropzone/-/react-dropzone-11.7.1.tgz#3851bb75b26af0bf1b17ce1449fd980e643b9356" + integrity sha512-zxCMwhfPy1olUEbw3FLNPLhAm/HnaYH5aELIEglRbqabizKAdHs0h+WuyOpmA+v1JXn0++fpQDdNfUagWt5hJQ== + dependencies: + attr-accept "^2.2.2" + file-selector "^0.4.0" + prop-types "^15.8.1" + +react-error-boundary@^3.0.2: + version "3.1.4" + resolved "https://registry.yarnpkg.com/react-error-boundary/-/react-error-boundary-3.1.4.tgz#255db92b23197108757a888b01e5b729919abde0" + integrity sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA== + dependencies: + "@babel/runtime" "^7.12.5" + +react-error-overlay@^6.0.7, react-error-overlay@^6.0.9: + version "6.0.11" + resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.11.tgz#92835de5841c5cf08ba00ddd2d677b6d17ff9adb" + integrity sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg== + +react-fast-compare@^2.0.1: + version "2.0.4" + resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-2.0.4.tgz#e84b4d455b0fec113e0402c329352715196f81f9" + integrity sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw== + +react-fast-compare@^3.0.1: + version "3.2.0" + resolved "https://registry.yarnpkg.com/react-fast-compare/-/react-fast-compare-3.2.0.tgz#641a9da81b6a6320f270e89724fb45a0b39e43bb" + integrity sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA== + +react-hotkeys-hook@^3.0.3: + version "3.4.7" + resolved "https://registry.yarnpkg.com/react-hotkeys-hook/-/react-hotkeys-hook-3.4.7.tgz#e16a0a85f59feed9f48d12cfaf166d7df4c96b7a" + integrity sha512-+bbPmhPAl6ns9VkXkNNyxlmCAIyDAcWbB76O4I0ntr3uWCRuIQf/aRLartUahe9chVMPj+OEzzfk3CQSjclUEQ== + dependencies: + hotkeys-js "3.9.4" + +react-intl-universal@^2.4.7: + version "2.6.11" + resolved "https://registry.yarnpkg.com/react-intl-universal/-/react-intl-universal-2.6.11.tgz#91cac8d05ef226d5a3a739bbbf1da43f34e4ccc8" + integrity sha512-myFwndeCqo+02Xm43RnO+gDltDnfYnVrm/09RzC/Ski3vjVNpyoV5edmigAjo12x+qnhuL+5zgVvqW+9BuMMBw== + dependencies: + cookie "^0.3.1" + escape-html "^1.0.3" + intl "^1.2.5" + intl-messageformat "^7.8.4" + invariant "^2.2.2" + lodash.merge "^4.6.2" + object-keys "^1.0.11" + querystring "^0.2.0" + +react-is@^16.12.0, react-is@^16.13.1, react-is@^16.6.0, react-is@^16.7.0, react-is@^16.8.4: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== + +react-is@^17.0.1, react-is@^17.0.2: + version "17.0.2" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" + integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== + +react-lifecycles-compat@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" + integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== + +react-loadable@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/react-loadable/-/react-loadable-5.5.0.tgz#582251679d3da86c32aae2c8e689c59f1196d8c4" + integrity sha512-C8Aui0ZpMd4KokxRdVAm2bQtI03k2RMRNzOB+IipV3yxFTSVICv7WoUr5L9ALB5BmKO1iHgZtWM8EvYG83otdg== + dependencies: + prop-types "^15.5.0" + +react-popper@^1.3.7: + version "1.3.11" + resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.11.tgz#a2cc3f0a67b75b66cfa62d2c409f9dd1fcc71ffd" + integrity sha512-VSA/bS+pSndSF2fiasHK/PTEEAyOpX60+H5EPAjoArr8JGm+oihu4UbrqcEBpQibJxBVCpYyjAX7abJ+7DoYVg== + dependencies: + "@babel/runtime" "^7.1.2" + "@hypnosphi/create-react-context" "^0.3.1" + deep-equal "^1.1.1" + popper.js "^1.14.4" + prop-types "^15.6.1" + typed-styles "^0.0.7" + warning "^4.0.2" + +react-popper@^2.2.4: + version "2.3.0" + resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-2.3.0.tgz#17891c620e1320dce318bad9fede46a5f71c70ba" + integrity sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q== + dependencies: + react-fast-compare "^3.0.1" + warning "^4.0.2" + +react-query-devtools@^2.1.1: + version "2.6.3" + resolved "https://registry.yarnpkg.com/react-query-devtools/-/react-query-devtools-2.6.3.tgz#f7c982839d4b0001cee4d5ddfa826493c2f6341f" + integrity sha512-pSvWq5Q8zgIP7QbF0+4BerCHLaLn5HPzce7sIXYqz4XEizcYJHkJtcrAwn6bUkCu5JmAt1Y7fViQtZwOIG2SYA== + dependencies: + match-sorter "^4.1.0" + +react-query@^3.6.0: + version "3.39.3" + resolved "https://registry.yarnpkg.com/react-query/-/react-query-3.39.3.tgz#4cea7127c6c26bdea2de5fb63e51044330b03f35" + integrity sha512-nLfLz7GiohKTJDuT4us4X3h/8unOh+00MLb2yJoGTPjxKs2bc1iDhkNx2bd5MKklXnOD3NrVZ+J2UXujA5In4g== + dependencies: + "@babel/runtime" "^7.5.5" + broadcast-channel "^3.4.1" + match-sorter "^6.0.2" + +react-redux@^7.1.3: + version "7.2.9" + resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-7.2.9.tgz#09488fbb9416a4efe3735b7235055442b042481d" + integrity sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ== + dependencies: + "@babel/runtime" "^7.15.4" + "@types/react-redux" "^7.1.20" + hoist-non-react-statics "^3.3.2" + loose-envify "^1.4.0" + prop-types "^15.7.2" + react-is "^17.0.2" + +react-router-breadcrumbs-hoc@^3.2.10: + version "3.4.0" + resolved "https://registry.yarnpkg.com/react-router-breadcrumbs-hoc/-/react-router-breadcrumbs-hoc-3.4.0.tgz#e4e05dd7c25a8bdd75f2b846ec388a738af03937" + integrity sha512-Ai8WUcYy83NnNB6OA9YiYRw4PxIAALKIQrNQUtK28jWxI//I0/bNPyPTDbWF21TTJ/n4W9DoOzS1MEqMuKZqoA== + +react-router-dom@^5.3.3: + version "5.3.4" + resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-5.3.4.tgz#2ed62ffd88cae6db134445f4a0c0ae8b91d2e5e6" + integrity sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ== + dependencies: + "@babel/runtime" "^7.12.13" + history "^4.9.0" + loose-envify "^1.3.1" + prop-types "^15.6.2" + react-router "5.3.4" + tiny-invariant "^1.0.2" + tiny-warning "^1.0.0" + +react-router@5.3.4: + version "5.3.4" + resolved "https://registry.yarnpkg.com/react-router/-/react-router-5.3.4.tgz#8ca252d70fcc37841e31473c7a151cf777887bb5" + integrity sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA== + dependencies: + "@babel/runtime" "^7.12.13" + history "^4.9.0" + hoist-non-react-statics "^3.1.0" + loose-envify "^1.3.1" + path-to-regexp "^1.7.0" + prop-types "^15.6.2" + react-is "^16.6.0" + tiny-invariant "^1.0.2" + tiny-warning "^1.0.0" + +react-scripts@^3.4.4: + version "3.4.4" + resolved "https://registry.yarnpkg.com/react-scripts/-/react-scripts-3.4.4.tgz#eef024ed5c566374005e3f509877350ba99d08a7" + integrity sha512-7J7GZyF/QvZkKAZLneiOIhHozvOMHey7hO9cdO9u68jjhGZlI8hDdOm6UyuHofn6Ajc9Uji5I6Psm/nKNuWdyw== + dependencies: + "@babel/core" "7.9.0" + "@svgr/webpack" "4.3.3" + "@typescript-eslint/eslint-plugin" "^2.10.0" + "@typescript-eslint/parser" "^2.10.0" + babel-eslint "10.1.0" + babel-jest "^24.9.0" + babel-loader "8.1.0" + babel-plugin-named-asset-import "^0.3.6" + babel-preset-react-app "^9.1.2" + camelcase "^5.3.1" + case-sensitive-paths-webpack-plugin "2.3.0" + css-loader "3.4.2" + dotenv "8.2.0" + dotenv-expand "5.1.0" + eslint "^6.6.0" + eslint-config-react-app "^5.2.1" + eslint-loader "3.0.3" + eslint-plugin-flowtype "4.6.0" + eslint-plugin-import "2.20.1" + eslint-plugin-jsx-a11y "6.2.3" + eslint-plugin-react "7.19.0" + eslint-plugin-react-hooks "^1.6.1" + file-loader "4.3.0" + fs-extra "^8.1.0" + html-webpack-plugin "4.0.0-beta.11" + identity-obj-proxy "3.0.0" + jest "24.9.0" + jest-environment-jsdom-fourteen "1.0.1" + jest-resolve "24.9.0" + jest-watch-typeahead "0.4.2" + mini-css-extract-plugin "0.9.0" + optimize-css-assets-webpack-plugin "5.0.3" + pnp-webpack-plugin "1.6.4" + postcss-flexbugs-fixes "4.1.0" + postcss-loader "3.0.0" + postcss-normalize "8.0.1" + postcss-preset-env "6.7.0" + postcss-safe-parser "4.0.1" + react-app-polyfill "^1.0.6" + react-dev-utils "^10.2.1" + resolve "1.15.0" + resolve-url-loader "3.1.2" + sass-loader "8.0.2" + semver "6.3.0" + style-loader "0.23.1" + terser-webpack-plugin "2.3.8" + ts-pnp "1.1.6" + url-loader "2.3.0" + webpack "4.42.0" + webpack-dev-server "3.11.0" + webpack-manifest-plugin "2.2.0" + workbox-webpack-plugin "4.3.1" + optionalDependencies: + fsevents "2.1.2" + +react-scroll-sync@^0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/react-scroll-sync/-/react-scroll-sync-0.7.1.tgz#d4bdd113660f6d68b83878bf289bf3b1ea330571" + integrity sha512-8NH4yvcbEkmdwOk5BxmKxBHIUO89wGpqIS+2xMmxJ+XiFTbnBcrG+qU4lcRyS3wVnD3XwbuMo8zjN4FGp8xW0Q== + +react-scrollbars-custom@^4.0.21: + version "4.1.1" + resolved "https://registry.yarnpkg.com/react-scrollbars-custom/-/react-scrollbars-custom-4.1.1.tgz#1c8a11149119e3bf5e202a00d335ee9f077edde4" + integrity sha512-FOI1EMrdN5qziwvFAuH4saOo0+ggxeTuKLPpy6nezNdLUnDW1vCHGq0VSSfTSRstDgfXgwff5TMP9NeJ8NiFOQ== + dependencies: + cnbuilder "^3.1.0" + react-draggable "^4.4.5" + zoom-level "^2.5.0" + +"react-side-effect@^1.1.0 || ^2.1.0": + version "2.1.2" + resolved "https://registry.yarnpkg.com/react-side-effect/-/react-side-effect-2.1.2.tgz#dc6345b9e8f9906dc2eeb68700b615e0b4fe752a" + integrity sha512-PVjOcvVOyIILrYoyGEpDN3vmYNLdy1CajSFNt4TDsVQC5KpTijDvWVoR+/7Rz2xT978D8/ZtFceXxzsPwZEDvw== + +react-sortablejs@^2.0.11: + version "2.1.0" + resolved "https://registry.yarnpkg.com/react-sortablejs/-/react-sortablejs-2.1.0.tgz#8c7d68df11a056b11d2a5b06433a13daf4930f01" + integrity sha512-VFE7R/Np8yvHxhA31XTIdh86QzwFbUmwCoEBkn4KilISmeZ2Kq2NsNstOuPZEs8ULKqLahE+r2VlMTDVcj7s3Q== + dependencies: + classnames "^2.2.6" + tiny-invariant "^1.1.0" + +react-split-pane@^0.1.91: + version "0.1.92" + resolved "https://registry.yarnpkg.com/react-split-pane/-/react-split-pane-0.1.92.tgz#68242f72138aed95dd5910eeb9d99822c4fc3a41" + integrity sha512-GfXP1xSzLMcLJI5BM36Vh7GgZBpy+U/X0no+VM3fxayv+p1Jly5HpMofZJraeaMl73b3hvlr+N9zJKvLB/uz9w== + dependencies: + prop-types "^15.7.2" + react-lifecycles-compat "^3.0.4" + react-style-proptype "^3.2.2" + +react-style-proptype@^3.2.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/react-style-proptype/-/react-style-proptype-3.2.2.tgz#d8e998e62ce79ec35b087252b90f19f1c33968a0" + integrity sha512-ywYLSjNkxKHiZOqNlso9PZByNEY+FTyh3C+7uuziK0xFXu9xzdyfHwg4S9iyiRRoPCR4k2LqaBBsWVmSBwCWYQ== + dependencies: + prop-types "^15.5.4" + +react-table-sticky@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/react-table-sticky/-/react-table-sticky-1.1.3.tgz#af27c0afb2c4a32c292d486b21d9a896d354ba70" + integrity sha512-9hyjbveY1aDyo9wkyMOsmKIpQdFUaw2yG6/f8c5SPE4pOTuKm7L2zLnDa+AxpG+3315USulViaO4XSOkX1KdVA== + +react-table@^7.6.3: + version "7.8.0" + resolved "https://registry.yarnpkg.com/react-table/-/react-table-7.8.0.tgz#07858c01c1718c09f7f1aed7034fcfd7bda907d2" + integrity sha512-hNaz4ygkZO4bESeFfnfOft73iBUj8K5oKi1EcSHPAibEydfsX2MyU6Z8KCr3mv3C9Kqqh71U+DhZkFvibbnPbA== + +react-transition-group@^2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.9.0.tgz#df9cdb025796211151a436c69a8f3b97b5b07c8d" + integrity sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg== + dependencies: + dom-helpers "^3.4.0" + loose-envify "^1.4.0" + prop-types "^15.6.2" + react-lifecycles-compat "^3.0.4" + +react-transition-group@^4.4.1: + version "4.4.5" + resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.5.tgz#e53d4e3f3344da8521489fbef8f2581d42becdd1" + integrity sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g== + dependencies: + "@babel/runtime" "^7.5.5" + dom-helpers "^5.0.1" + loose-envify "^1.4.0" + prop-types "^15.6.2" + +react-use-context-menu@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/react-use-context-menu/-/react-use-context-menu-0.1.4.tgz#e6d0e88a0c5fe08e58e9c9ab35a185a2459251a5" + integrity sha512-3/IC2CTUErMrtcv1IU1Nt9NL2J4YHBiiSBV66wGdPsZzeFK4qhUwQmLg8hUk58Pi5oa8ts3+M3kVKl10HW4o4w== + +react-use@^13.26.1: + version "13.27.1" + resolved "https://registry.yarnpkg.com/react-use/-/react-use-13.27.1.tgz#e2ae2b708dafc7893c4772628801589aab9de370" + integrity sha512-bAwdqDMXs5lovEanXnL1izledfrPEUUv1afoTVB59eUiYcDyKul+M/dT/2WcgHjoY/R6QlrTcZoW4R7ifwvBfw== + dependencies: + "@types/js-cookie" "2.2.5" + "@xobotyi/scrollbar-width" "1.9.5" + copy-to-clipboard "^3.2.0" + fast-deep-equal "^3.1.1" + fast-shallow-equal "^1.0.0" + js-cookie "^2.2.1" + nano-css "^5.2.1" + resize-observer-polyfill "^1.5.1" + screenfull "^5.0.0" + set-harmonic-interval "^1.0.1" + throttle-debounce "^2.1.0" + ts-easing "^0.2.0" + tslib "^1.10.0" + +react-virtualized@^9.22.3: + version "9.22.3" + resolved "https://registry.yarnpkg.com/react-virtualized/-/react-virtualized-9.22.3.tgz#f430f16beb0a42db420dbd4d340403c0de334421" + integrity sha512-MKovKMxWTcwPSxE1kK1HcheQTWfuCxAuBoSTf2gwyMM21NdX/PXUhnoP8Uc5dRKd+nKm8v41R36OellhdCpkrw== + dependencies: + "@babel/runtime" "^7.7.2" + clsx "^1.0.4" + dom-helpers "^5.1.3" + loose-envify "^1.4.0" + prop-types "^15.7.2" + react-lifecycles-compat "^3.0.4" + +react@^16.14.0: + version "16.14.0" + resolved "https://registry.yarnpkg.com/react/-/react-16.14.0.tgz#94d776ddd0aaa37da3eda8fc5b6b18a4c9a3114d" + integrity sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + prop-types "^15.6.2" + +read-pkg-up@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" + integrity sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A== + dependencies: + find-up "^1.0.0" + read-pkg "^1.0.0" + +read-pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" + integrity sha512-1orxQfbWGUiTn9XsPlChs6rLie/AV9jwZTGmu2NZw/CUDJQchXJFYE0Fq5j7+n558T1JhDWLdhyd1Zj+wLY//w== + dependencies: + find-up "^2.0.0" + read-pkg "^2.0.0" + +read-pkg-up@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978" + integrity sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA== + dependencies: + find-up "^3.0.0" + read-pkg "^3.0.0" + +read-pkg@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" + integrity sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ== + dependencies: + load-json-file "^1.0.0" + normalize-package-data "^2.3.2" + path-type "^1.0.0" + +read-pkg@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" + integrity sha512-eFIBOPW7FGjzBuk3hdXEuNSiTZS/xEMlH49HxMyzb0hyPfu4EhVjT2DH32K1hSSmVq4sebAWnZuuY5auISUTGA== + dependencies: + load-json-file "^2.0.0" + normalize-package-data "^2.3.2" + path-type "^2.0.0" + +read-pkg@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" + integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== + dependencies: + load-json-file "^4.0.0" + normalize-package-data "^2.3.2" + path-type "^3.0.0" + +"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: + version "2.3.7" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" + integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + 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" + +readable-stream@^3.0.6, readable-stream@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" + integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== + dependencies: + graceful-fs "^4.1.11" + micromatch "^3.1.10" + readable-stream "^2.0.2" + +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== + dependencies: + picomatch "^2.2.1" + +realpath-native@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c" + integrity sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA== + dependencies: + util.promisify "^1.0.0" + +recursive-readdir@2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f" + integrity sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg== + dependencies: + minimatch "3.0.4" + +redent@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" + integrity sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g== + dependencies: + indent-string "^2.1.0" + strip-indent "^1.0.1" + +redent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" + integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg== + dependencies: + indent-string "^4.0.0" + strip-indent "^3.0.0" + +redux-devtools-instrument@^1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/redux-devtools-instrument/-/redux-devtools-instrument-1.10.0.tgz#036caf79fa1e5f25ec4bae38a9af4f08c69e323a" + integrity sha512-X8JRBCzX2ADSMp+iiV7YQ8uoTNyEm0VPFPd4T854coz6lvRiBrFSqAr9YAS2n8Kzxx8CJQotR0QF9wsMM+3DvA== + dependencies: + lodash "^4.17.19" + symbol-observable "^1.2.0" + +redux-devtools@^3.5.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/redux-devtools/-/redux-devtools-3.7.0.tgz#5bc2d50227d94ce95c79dbfdf2ffc7a23c553553" + integrity sha512-Lnx3UX7mnJij2Xs+RicPK1GyKkbuodrCKtfYmJsN603wC0mc99W//xCAskGVNmRhIXg4e57m2k1CyX0kVzCsBg== + dependencies: + "@types/prop-types" "^15.7.3" + lodash "^4.17.19" + prop-types "^15.7.2" + redux-devtools-instrument "^1.10.0" + +redux-persist@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/redux-persist/-/redux-persist-6.0.0.tgz#b4d2972f9859597c130d40d4b146fecdab51b3a8" + integrity sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ== + +redux-thunk@^2.3.0, redux-thunk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.4.2.tgz#b9d05d11994b99f7a91ea223e8b04cf0afa5ef3b" + integrity sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q== + +redux@^4.0.0, redux@^4.0.5, redux@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/redux/-/redux-4.2.1.tgz#c08f4306826c49b5e9dc901dee0452ea8fce6197" + integrity sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w== + dependencies: + "@babel/runtime" "^7.9.2" + +regenerate-unicode-properties@^10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c" + integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ== + dependencies: + regenerate "^1.4.2" + +regenerate@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== + +regenerator-runtime@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" + integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== + +regenerator-runtime@^0.13.11, regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4: + version "0.13.11" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" + integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== + +regenerator-transform@^0.15.1: + version "0.15.1" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56" + integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg== + dependencies: + "@babel/runtime" "^7.8.4" + +regex-not@^1.0.0, regex-not@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" + integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== + dependencies: + extend-shallow "^3.0.2" + safe-regex "^1.1.0" + +regex-parser@^2.2.11: + version "2.2.11" + resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.11.tgz#3b37ec9049e19479806e878cabe7c1ca83ccfe58" + integrity sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q== + +regexp.prototype.flags@^1.2.0, regexp.prototype.flags@^1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" + integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + functions-have-names "^1.2.2" + +regexpp@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" + integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== + +regexpp@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== + +regexpu-core@^5.2.1: + version "5.2.2" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.2.2.tgz#3e4e5d12103b64748711c3aad69934d7718e75fc" + integrity sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw== + dependencies: + regenerate "^1.4.2" + regenerate-unicode-properties "^10.1.0" + regjsgen "^0.7.1" + regjsparser "^0.9.1" + unicode-match-property-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.1.0" + +regjsgen@^0.7.1: + version "0.7.1" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.7.1.tgz#ee5ef30e18d3f09b7c369b76e7c2373ed25546f6" + integrity sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA== + +regjsparser@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" + integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== + dependencies: + jsesc "~0.5.0" + +relateurl@^0.2.7: + version "0.2.7" + resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" + integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog== + +remove-accents@0.4.2: + version "0.4.2" + resolved "https://registry.yarnpkg.com/remove-accents/-/remove-accents-0.4.2.tgz#0a43d3aaae1e80db919e07ae254b285d9e1c7bb5" + integrity sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA== + +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + integrity sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw== + +renderkid@^2.0.4: + version "2.0.7" + resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.7.tgz#464f276a6bdcee606f4a15993f9b29fc74ca8609" + integrity sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ== + dependencies: + css-select "^4.1.3" + dom-converter "^0.2.0" + htmlparser2 "^6.1.0" + lodash "^4.17.21" + strip-ansi "^3.0.1" + +repeat-element@^1.1.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9" + integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== + +repeat-string@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== + +repeating@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" + integrity sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A== + dependencies: + is-finite "^1.0.0" + +request-promise-core@1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f" + integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw== + dependencies: + lodash "^4.17.19" + +request-promise-native@^1.0.5: + version "1.0.9" + resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28" + integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g== + dependencies: + request-promise-core "1.1.4" + stealthy-require "^1.1.1" + tough-cookie "^2.3.3" + +request@^2.87.0, request@^2.88.0: + version "2.88.2" + resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" + integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== + 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" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== + +require-main-filename@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== + +requires-port@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== + +reselect@^4.1.7: + version "4.1.7" + resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.1.7.tgz#56480d9ff3d3188970ee2b76527bd94a95567a42" + integrity sha512-Zu1xbUt3/OPwsXL46hvOOoQrap2azE7ZQbokq61BQfiXvhewsKDwhMeZjTX9sX0nvw1t/U5Audyn1I9P/m9z0A== + +resize-observer-polyfill@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464" + integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg== + +resolve-cwd@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" + integrity sha512-ccu8zQTrzVr954472aUVPLEcB3YpKSYR3cg/3lo1okzobPBM+1INXBbBZlDbnI/hbEocnf8j0QVo43hQKrbchg== + dependencies: + resolve-from "^3.0.0" + +resolve-from@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" + integrity sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-pathname@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-3.0.0.tgz#99d02224d3cf263689becbb393bc560313025dcd" + integrity sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng== + +resolve-url-loader@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.2.tgz#235e2c28e22e3e432ba7a5d4e305c59a58edfc08" + integrity sha512-QEb4A76c8Mi7I3xNKXlRKQSlLBwjUV/ULFMP+G7n3/7tJZ8MG5wsZ3ucxP1Jz8Vevn6fnJsxDx9cIls+utGzPQ== + dependencies: + adjust-sourcemap-loader "3.0.0" + camelcase "5.3.1" + compose-function "3.0.3" + convert-source-map "1.7.0" + es6-iterator "2.0.3" + loader-utils "1.2.3" + postcss "7.0.21" + rework "1.0.1" + rework-visit "1.0.0" + source-map "0.6.1" + +resolve-url@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" + integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg== + +resolve@1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" + integrity sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg== + +resolve@1.15.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.0.tgz#1b7ca96073ebb52e741ffd799f6b39ea462c67f5" + integrity sha512-+hTmAldEGE80U2wJJDC1lebb5jWqvTYAfm3YZ1ckk1gBr0MnCqUKlwK1e+anaFljIl+F5tR5IoZcm4ZDA1zMQw== + dependencies: + path-parse "^1.0.6" + +resolve@^1.10.0, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.15.1, resolve@^1.22.0, resolve@^1.22.1, resolve@^1.3.2, resolve@^1.8.1: + version "1.22.1" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +resolve@^2.0.0-next.3, resolve@^2.0.0-next.4: + version "2.0.0-next.4" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" + integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== + dependencies: + is-core-module "^2.9.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + +ret@~0.1.10: + version "0.1.15" + resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" + integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== + +retry@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" + integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rework-visit@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/rework-visit/-/rework-visit-1.0.0.tgz#9945b2803f219e2f7aca00adb8bc9f640f842c9a" + integrity sha512-W6V2fix7nCLUYX1v6eGPrBOZlc03/faqzP4sUxMAJMBMOPYhfV/RyLegTufn5gJKaOITyi+gvf0LXDZ9NzkHnQ== + +rework@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/rework/-/rework-1.0.1.tgz#30806a841342b54510aa4110850cd48534144aa7" + integrity sha512-eEjL8FdkdsxApd0yWVZgBGzfCQiT8yqSc2H1p4jpZpQdtz7ohETiDMoje5PlM8I9WgkqkreVxFUKYOiJdVWDXw== + dependencies: + convert-source-map "^0.3.3" + css "^2.0.0" + +rgb-regex@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1" + integrity sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w== + +rgba-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" + integrity sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg== + +rimraf@2, rimraf@^2.5.4, rimraf@^2.6.3, rimraf@^2.7.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + dependencies: + glob "^7.1.3" + +rimraf@2.6.3: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + +rimraf@3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +ripemd160@^2.0.0, ripemd160@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" + integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + +rsvp@^4.8.4: + version "4.8.5" + resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" + integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== + +rtl-css-js@^1.14.0: + version "1.16.1" + resolved "https://registry.yarnpkg.com/rtl-css-js/-/rtl-css-js-1.16.1.tgz#4b48b4354b0ff917a30488d95100fbf7219a3e80" + integrity sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg== + dependencies: + "@babel/runtime" "^7.1.2" + +rtl-detect@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/rtl-detect/-/rtl-detect-1.0.4.tgz#40ae0ea7302a150b96bc75af7d749607392ecac6" + integrity sha512-EBR4I2VDSSYr7PkBmFy04uhycIpDKp+21p/jARYXlCSjQksTBQcJ0HFUPOO79EPPH5JS6VAhiIQbycf0O3JAxQ== + +rtlcss@^2.6.0: + version "2.6.2" + resolved "https://registry.yarnpkg.com/rtlcss/-/rtlcss-2.6.2.tgz#55b572b52c70015ba6e03d497e5c5cb8137104b4" + integrity sha512-06LFAr+GAPo+BvaynsXRfoYTJvSaWRyOhURCQ7aeI1MKph9meM222F+Zkt3bDamyHHJuGi3VPtiRkpyswmQbGA== + dependencies: + "@choojs/findup" "^0.2.1" + chalk "^2.4.2" + mkdirp "^0.5.1" + postcss "^6.0.23" + strip-json-comments "^2.0.0" + +run-async@^2.2.0, run-async@^2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" + integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +run-queue@^1.0.0, run-queue@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" + integrity sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg== + dependencies: + aproba "^1.1.1" + +rxjs@^6.5.3, rxjs@^6.6.0: + version "6.6.7" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" + integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== + dependencies: + tslib "^1.9.0" + +safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-regex-test@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" + integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.3" + is-regex "^1.1.4" + +safe-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" + integrity sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg== + dependencies: + ret "~0.1.10" + +"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +sane@^4.0.3: + version "4.1.0" + resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" + integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== + dependencies: + "@cnakazawa/watch" "^1.0.3" + anymatch "^2.0.0" + capture-exit "^2.0.0" + exec-sh "^0.3.2" + execa "^1.0.0" + fb-watchman "^2.0.0" + micromatch "^3.1.4" + minimist "^1.1.1" + walker "~1.0.5" + +sanitize.css@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/sanitize.css/-/sanitize.css-10.0.0.tgz#b5cb2547e96d8629a60947544665243b1dc3657a" + integrity sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg== + +sass-graph@2.2.5: + version "2.2.5" + resolved "https://registry.yarnpkg.com/sass-graph/-/sass-graph-2.2.5.tgz#a981c87446b8319d96dce0671e487879bd24c2e8" + integrity sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag== + dependencies: + glob "^7.0.0" + lodash "^4.0.0" + scss-tokenizer "^0.2.3" + yargs "^13.3.2" + +sass-loader@8.0.2: + version "8.0.2" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-8.0.2.tgz#debecd8c3ce243c76454f2e8290482150380090d" + integrity sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ== + dependencies: + clone-deep "^4.0.1" + loader-utils "^1.2.3" + neo-async "^2.6.1" + schema-utils "^2.6.1" + semver "^6.3.0" + +sax@^1.2.4, sax@~1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + +saxes@^3.1.9: + version "3.1.11" + resolved "https://registry.yarnpkg.com/saxes/-/saxes-3.1.11.tgz#d59d1fd332ec92ad98a2e0b2ee644702384b1c5b" + integrity sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g== + dependencies: + xmlchars "^2.1.1" + +scheduler@^0.19.1: + version "0.19.1" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196" + integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +schema-utils@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" + integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g== + dependencies: + ajv "^6.1.0" + ajv-errors "^1.0.0" + ajv-keywords "^3.1.0" + +schema-utils@^2.5.0, schema-utils@^2.6.0, schema-utils@^2.6.1, schema-utils@^2.6.5, schema-utils@^2.6.6: + version "2.7.1" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" + integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== + dependencies: + "@types/json-schema" "^7.0.5" + ajv "^6.12.4" + ajv-keywords "^3.5.2" + +screenfull@^5.0.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/screenfull/-/screenfull-5.2.0.tgz#6533d524d30621fc1283b9692146f3f13a93d1ba" + integrity sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA== + +scss-tokenizer@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1" + integrity sha512-dYE8LhncfBUar6POCxMTm0Ln+erjeczqEvCJib5/7XNkdw1FkUGgwMPY360FY0FgPWQxHWCx29Jl3oejyGLM9Q== + dependencies: + js-base64 "^2.1.8" + source-map "^0.4.2" + +select-hose@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" + integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== + +selfsigned@^1.10.7: + version "1.10.14" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.14.tgz#ee51d84d9dcecc61e07e4aba34f229ab525c1574" + integrity sha512-lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA== + dependencies: + node-forge "^0.10.0" + +"semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@6.3.0, semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + +semver@^7.3.2, semver@^7.3.7: + version "7.3.8" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" + integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== + dependencies: + lru-cache "^6.0.0" + +semver@~5.3.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" + integrity sha512-mfmm3/H9+67MCVix1h+IXTpDwL6710LyHuk7+cWC9T1mE0qz4iHhh6r4hU2wrIT9iTsAAC2XQRvfblL028cpLw== + +send@0.18.0: + version "0.18.0" + resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" + 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" + +serialize-javascript@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" + integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== + dependencies: + randombytes "^2.1.0" + +serve-index@^1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" + 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" + +serve-static@1.15.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" + integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.18.0" + +set-blocking@^2.0.0, set-blocking@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== + +set-harmonic-interval@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/set-harmonic-interval/-/set-harmonic-interval-1.0.1.tgz#e1773705539cdfb80ce1c3d99e7f298bb3995249" + integrity sha512-AhICkFV84tBP1aWqPwLZqFvAwqEoVA9kxNMniGEUvzOlm4vLmOFLiTT3UZ6bziJTy4bOVpzWGTfSCbmaayGx8g== + +set-value@^2.0.0, set-value@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" + integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.3" + split-string "^3.0.1" + +setimmediate@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== + +setprototypeof@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" + integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== + +setprototypeof@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== + +sha.js@^2.4.0, sha.js@^2.4.8: + version "2.4.11" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" + integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +shallow-clone@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-0.1.2.tgz#5909e874ba77106d73ac414cfec1ffca87d97060" + integrity sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw== + dependencies: + is-extendable "^0.1.1" + kind-of "^2.0.1" + lazy-cache "^0.2.3" + mixin-object "^2.0.1" + +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + +shallowequal@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8" + integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ== + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== + dependencies: + shebang-regex "^1.0.0" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +shell-quote@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" + integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== + +shellwords@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" + integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== + +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + +signal-exit@^3.0.0, signal-exit@^3.0.2: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +simple-swizzle@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" + integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg== + dependencies: + is-arrayish "^0.3.1" + +sisteransi@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== + +slash@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" + integrity sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg== + +slash@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" + integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slice-ansi@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" + integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== + dependencies: + ansi-styles "^3.2.0" + astral-regex "^1.0.0" + is-fullwidth-code-point "^2.0.0" + +snapdragon-node@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" + integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== + dependencies: + define-property "^1.0.0" + isobject "^3.0.0" + snapdragon-util "^3.0.1" + +snapdragon-util@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" + integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== + dependencies: + kind-of "^3.2.0" + +snapdragon@^0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" + integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== + dependencies: + base "^0.11.1" + debug "^2.2.0" + define-property "^0.2.5" + extend-shallow "^2.0.1" + map-cache "^0.2.2" + source-map "^0.5.6" + source-map-resolve "^0.5.0" + use "^3.1.0" + +sockjs-client@1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.4.0.tgz#c9f2568e19c8fd8173b4997ea3420e0bb306c7d5" + integrity sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g== + dependencies: + debug "^3.2.5" + eventsource "^1.0.7" + faye-websocket "~0.11.1" + inherits "^2.0.3" + json3 "^3.3.2" + url-parse "^1.4.3" + +sockjs@0.3.20: + version "0.3.20" + resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.20.tgz#b26a283ec562ef8b2687b44033a4eeceac75d855" + integrity sha512-SpmVOVpdq0DJc0qArhF3E5xsxvaiqGNb73XfgBpK1y3UD5gs8DSo8aCTsuT5pX8rssdc2NDIzANwP9eCAiSdTA== + dependencies: + faye-websocket "^0.10.0" + uuid "^3.4.0" + websocket-driver "0.6.5" + +sort-keys@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" + integrity sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg== + dependencies: + is-plain-obj "^1.0.0" + +source-list-map@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" + integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== + +source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: + version "0.5.3" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" + integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== + dependencies: + atob "^2.1.2" + decode-uri-component "^0.2.0" + resolve-url "^0.2.1" + source-map-url "^0.4.0" + urix "^0.1.0" + +source-map-support@^0.5.6, source-map-support@~0.5.12: + version "0.5.21" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map-url@^0.4.0: + version "0.4.1" + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56" + integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== + +source-map@0.5.6: + version "0.5.6" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.6.tgz#75ce38f52bf0733c5a7f0c118d81334a2bb5f412" + integrity sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA== + +source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +source-map@^0.4.2: + version "0.4.4" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" + integrity sha512-Y8nIfcb1s/7DcobUz1yOO1GSp7gyL+D9zLHDehT7iRESqGSxjJ448Sg7rvfgsRJCnKLdSl11uGf0s9X80cH0/A== + dependencies: + amdefine ">=0.0.4" + +source-map@^0.5.0, source-map@^0.5.6: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ== + +sourcemap-codec@^1.4.8: + version "1.4.8" + resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" + integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== + +spdx-correct@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.12" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779" + integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== + +spdy-transport@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" + 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" + +spdy@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b" + 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" + +split-on-first@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f" + integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw== + +split-string@^3.0.1, split-string@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" + integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== + dependencies: + extend-shallow "^3.0.0" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== + +sshpk@^1.7.0: + version "1.17.0" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.17.0.tgz#578082d92d4fe612b13007496e543fa0fbcbe4c5" + integrity sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ== + 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" + +ssri@^6.0.1: + version "6.0.2" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.2.tgz#157939134f20464e7301ddba3e90ffa8f7728ac5" + integrity sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q== + dependencies: + figgy-pudding "^3.5.1" + +ssri@^7.0.0: + version "7.1.1" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-7.1.1.tgz#33e44f896a967158e3c63468e47ec46613b95b5f" + integrity sha512-w+daCzXN89PseTL99MkA+fxJEcU3wfaE/ah0i0lnOlpG1CYLJ2ZjzEry68YBKfLs4JfoTShrTEsJkAZuNZ/stw== + dependencies: + figgy-pudding "^3.5.1" + minipass "^3.1.1" + +stable@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" + integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== + +stack-generator@^2.0.5: + version "2.0.10" + resolved "https://registry.yarnpkg.com/stack-generator/-/stack-generator-2.0.10.tgz#8ae171e985ed62287d4f1ed55a1633b3fb53bb4d" + integrity sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ== + dependencies: + stackframe "^1.3.4" + +stack-utils@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.5.tgz#a19b0b01947e0029c8e451d5d61a498f5bb1471b" + integrity sha512-KZiTzuV3CnSnSvgMRrARVCj+Ht7rMbauGDK0LdVFRGyenwdylpajAp4Q0i6SX8rEmbTpMMf6ryq2gb8pPq2WgQ== + dependencies: + escape-string-regexp "^2.0.0" + +stackframe@^1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/stackframe/-/stackframe-1.3.4.tgz#b881a004c8c149a5e8efef37d51b16e412943310" + integrity sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw== + +stacktrace-gps@^3.0.4: + version "3.1.2" + resolved "https://registry.yarnpkg.com/stacktrace-gps/-/stacktrace-gps-3.1.2.tgz#0c40b24a9b119b20da4525c398795338966a2fb0" + integrity sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ== + dependencies: + source-map "0.5.6" + stackframe "^1.3.4" + +stacktrace-js@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/stacktrace-js/-/stacktrace-js-2.0.2.tgz#4ca93ea9f494752d55709a081d400fdaebee897b" + integrity sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg== + dependencies: + error-stack-parser "^2.0.6" + stack-generator "^2.0.5" + stacktrace-gps "^3.0.4" + +static-extend@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" + integrity sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g== + dependencies: + define-property "^0.2.5" + object-copy "^0.1.0" + +statuses@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== + +"statuses@>= 1.4.0 < 2": + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA== + +stdout-stream@^1.4.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/stdout-stream/-/stdout-stream-1.4.1.tgz#5ac174cdd5cd726104aa0c0b2bd83815d8d535de" + integrity sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA== + dependencies: + readable-stream "^2.0.1" + +stealthy-require@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" + integrity sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g== + +stop-iteration-iterator@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4" + integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ== + dependencies: + internal-slot "^1.0.4" + +stream-browserify@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" + integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== + dependencies: + inherits "~2.0.1" + readable-stream "^2.0.2" + +stream-each@^1.1.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae" + integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw== + dependencies: + end-of-stream "^1.1.0" + stream-shift "^1.0.0" + +stream-http@^2.7.2: + version "2.8.3" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" + integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.1" + readable-stream "^2.3.6" + to-arraybuffer "^1.0.0" + xtend "^4.0.0" + +stream-shift@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" + integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== + +strict-uri-encode@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" + integrity sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ== + +strict-uri-encode@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546" + integrity sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ== + +string-length@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" + integrity sha512-Qka42GGrS8Mm3SZ+7cH8UXiIWI867/b/Z/feQSpQx/rbfB8UGknGEZVaUQMOUVj+soY6NpWAxily63HI1OckVQ== + dependencies: + astral-regex "^1.0.0" + strip-ansi "^4.0.0" + +string-length@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-3.1.0.tgz#107ef8c23456e187a8abd4a61162ff4ac6e25837" + integrity sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA== + dependencies: + astral-regex "^1.0.0" + strip-ansi "^5.2.0" + +string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + integrity sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw== + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + 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" + +string-width@^3.0.0, string-width@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" + integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== + dependencies: + emoji-regex "^7.0.1" + is-fullwidth-code-point "^2.0.0" + strip-ansi "^5.1.0" + +string.prototype.matchall@^4.0.2, string.prototype.matchall@^4.0.6, string.prototype.matchall@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3" + integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + get-intrinsic "^1.1.3" + has-symbols "^1.0.3" + internal-slot "^1.0.3" + regexp.prototype.flags "^1.4.3" + side-channel "^1.0.4" + +string.prototype.trimend@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" + integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +string.prototype.trimstart@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" + integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +string_decoder@^1.0.0, string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +stringify-object@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" + integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== + dependencies: + get-own-enumerable-property-symbols "^3.0.0" + is-obj "^1.0.1" + is-regexp "^1.0.0" + +strip-ansi@6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" + integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== + dependencies: + ansi-regex "^5.0.0" + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + integrity sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg== + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow== + dependencies: + ansi-regex "^3.0.0" + +strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-bom@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" + integrity sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g== + dependencies: + is-utf8 "^0.2.0" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-comments@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/strip-comments/-/strip-comments-1.0.2.tgz#82b9c45e7f05873bee53f37168af930aa368679d" + integrity sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw== + dependencies: + babel-extract-comments "^1.0.0" + babel-plugin-transform-object-rest-spread "^6.26.0" + +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + integrity sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q== + +strip-indent@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" + integrity sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA== + dependencies: + get-stdin "^4.0.1" + +strip-indent@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" + integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== + dependencies: + min-indent "^1.0.0" + +strip-json-comments@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== + +strip-json-comments@^3.0.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +style-loader@0.23.1: + version "0.23.1" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.23.1.tgz#cb9154606f3e771ab6c4ab637026a1049174d925" + integrity sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg== + dependencies: + loader-utils "^1.1.0" + schema-utils "^1.0.0" + +styled-components@^5.3.1, styled-components@^5.3.3: + version "5.3.6" + resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.3.6.tgz#27753c8c27c650bee9358e343fc927966bfd00d1" + integrity sha512-hGTZquGAaTqhGWldX7hhfzjnIYBZ0IXQXkCYdvF1Sq3DsUaLx6+NTHC5Jj1ooM2F68sBiVz3lvhfwQs/S3l6qg== + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "@babel/traverse" "^7.4.5" + "@emotion/is-prop-valid" "^1.1.0" + "@emotion/stylis" "^0.8.4" + "@emotion/unitless" "^0.7.4" + babel-plugin-styled-components ">= 1.12.0" + css-to-react-native "^3.0.0" + hoist-non-react-statics "^3.0.0" + shallowequal "^1.1.0" + supports-color "^5.5.0" + +stylehacks@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" + integrity sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g== + dependencies: + browserslist "^4.0.0" + postcss "^7.0.0" + postcss-selector-parser "^3.0.0" + +stylis-rtlcss@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/stylis-rtlcss/-/stylis-rtlcss-2.1.1.tgz#4b50099c2326b51093d734656c9cd118577e201e" + integrity sha512-xkX24OO/U0hLGW9m2SUpz3yPDQBX+ltV0mkQLfj3SwcCzm3NZe5spONHpZU2uTQ01MuDQzfOx/5GQWZ6APjmHw== + dependencies: + rtlcss "^2.6.0" + +stylis@^4.0.6: + version "4.1.3" + resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.1.3.tgz#fd2fbe79f5fed17c55269e16ed8da14c84d069f7" + integrity sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA== + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + integrity sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g== + +supports-color@^5.3.0, supports-color@^5.4.0, supports-color@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" + integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.0.0, supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +svg-parser@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5" + integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ== + +svgo@^1.0.0, svgo@^1.2.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167" + integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw== + 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" + +symbol-observable@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" + integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== + +symbol-tree@^3.2.2: + version "3.2.4" + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" + integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== + +synchronous-promise@^2.0.10: + version "2.0.17" + resolved "https://registry.yarnpkg.com/synchronous-promise/-/synchronous-promise-2.0.17.tgz#38901319632f946c982152586f2caf8ddc25c032" + integrity sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g== + +table@^5.2.3: + version "5.4.6" + resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" + integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== + dependencies: + ajv "^6.10.2" + lodash "^4.17.14" + slice-ansi "^2.1.0" + string-width "^3.0.0" + +tapable@^1.0.0, tapable@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" + integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== + +tar@^2.0.0: + version "2.2.2" + resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" + integrity sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA== + dependencies: + block-stream "*" + fstream "^1.0.12" + inherits "2" + +terser-webpack-plugin@2.3.8: + version "2.3.8" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.8.tgz#894764a19b0743f2f704e7c2a848c5283a696724" + integrity sha512-/fKw3R+hWyHfYx7Bv6oPqmk4HGQcrWLtV3X6ggvPuwPNHSnzvVV51z6OaaCOus4YLjutYGOz3pEpbhe6Up2s1w== + dependencies: + cacache "^13.0.1" + find-cache-dir "^3.3.1" + jest-worker "^25.4.0" + p-limit "^2.3.0" + schema-utils "^2.6.6" + serialize-javascript "^4.0.0" + source-map "^0.6.1" + terser "^4.6.12" + webpack-sources "^1.4.3" + +terser-webpack-plugin@^1.4.3: + version "1.4.5" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b" + integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw== + dependencies: + cacache "^12.0.2" + find-cache-dir "^2.1.0" + is-wsl "^1.1.0" + schema-utils "^1.0.0" + serialize-javascript "^4.0.0" + source-map "^0.6.1" + terser "^4.1.2" + webpack-sources "^1.4.0" + worker-farm "^1.7.0" + +terser@^4.1.2, terser@^4.6.12, terser@^4.6.3: + version "4.8.1" + resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.1.tgz#a00e5634562de2239fd404c649051bf6fc21144f" + integrity sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw== + dependencies: + commander "^2.20.0" + source-map "~0.6.1" + source-map-support "~0.5.12" + +test-exclude@^5.2.3: + version "5.2.3" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.2.3.tgz#c3d3e1e311eb7ee405e092dac10aefd09091eac0" + integrity sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g== + dependencies: + glob "^7.1.3" + minimatch "^3.0.4" + read-pkg-up "^4.0.0" + require-main-filename "^2.0.0" + +text-table@0.2.0, text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +throat@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" + integrity sha512-wCVxLDcFxw7ujDxaeJC6nfl2XfHJNYs8yUYJnvMgtPEFlttP9tHSfRUv2vBe6C4hkVFPWoP1P6ZccbYjmSEkKA== + +throttle-debounce@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/throttle-debounce/-/throttle-debounce-2.3.0.tgz#fd31865e66502071e411817e241465b3e9c372e2" + integrity sha512-H7oLPV0P7+jgvrk+6mwwwBDmxTaxnu9HMXmloNLXwnNO0ZxZ31Orah2n8lU1eMPvsaowP2CX+USCgyovXfdOFQ== + +through2@^2.0.0: + version "2.0.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== + dependencies: + readable-stream "~2.3.6" + xtend "~4.0.1" + +through@^2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== + +thunky@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" + integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== + +timers-browserify@^2.0.4: + version "2.0.12" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee" + integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ== + dependencies: + setimmediate "^1.0.4" + +timsort@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" + integrity sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A== + +tiny-invariant@^1.0.2, tiny-invariant@^1.1.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.1.tgz#8560808c916ef02ecfd55e66090df23a4b7aa642" + integrity sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw== + +tiny-warning@^1.0.0, tiny-warning@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754" + integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +tmpl@1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" + integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== + +to-arraybuffer@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + integrity sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA== + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + +to-object-path@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" + integrity sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg== + dependencies: + kind-of "^3.0.2" + +to-regex-range@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" + integrity sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg== + dependencies: + is-number "^3.0.0" + repeat-string "^1.6.1" + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +to-regex@^3.0.1, to-regex@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" + integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== + dependencies: + define-property "^2.0.2" + extend-shallow "^3.0.2" + regex-not "^1.0.2" + safe-regex "^1.1.0" + +toggle-selection@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32" + integrity sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ== + +toidentifier@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== + +toposort@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/toposort/-/toposort-2.0.2.tgz#ae21768175d1559d48bef35420b2f4962f09c330" + integrity sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg== + +tough-cookie@^2.3.3, tough-cookie@^2.3.4, tough-cookie@^2.5.0, tough-cookie@~2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== + dependencies: + psl "^1.1.28" + punycode "^2.1.1" + +tr46@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" + integrity sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA== + dependencies: + punycode "^2.1.0" + +trim-newlines@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" + integrity sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw== + +"true-case-path@^1.0.2": + version "1.0.3" + resolved "https://registry.yarnpkg.com/true-case-path/-/true-case-path-1.0.3.tgz#f813b5a8c86b40da59606722b144e3225799f47d" + integrity sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew== + dependencies: + glob "^7.1.2" + +ts-easing@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/ts-easing/-/ts-easing-0.2.0.tgz#c8a8a35025105566588d87dbda05dd7fbfa5a4ec" + integrity sha512-Z86EW+fFFh/IFB1fqQ3/+7Zpf9t2ebOAxNI/V6Wo7r5gqiqtxmgTlQ1qbqQcjLKYeSHPTsEmvlJUDg/EuL0uHQ== + +ts-pnp@1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.1.6.tgz#389a24396d425a0d3162e96d2b4638900fdc289a" + integrity sha512-CrG5GqAAzMT7144Cl+UIFP7mz/iIhiy+xQ6GGcnjTezhALT02uPMRw7tgDSESgB5MsfKt55+GPWw4ir1kVtMIQ== + +ts-pnp@^1.1.6: + version "1.2.0" + resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92" + integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw== + +ts-toolbelt@^6.15.1: + version "6.15.5" + resolved "https://registry.yarnpkg.com/ts-toolbelt/-/ts-toolbelt-6.15.5.tgz#cb3b43ed725cb63644782c64fbcad7d8f28c0a83" + integrity sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A== + +tsconfig-paths@^3.14.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" + integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.1" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + +tslib@^2.0.3: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" + integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== + +tslib@~1.13.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" + integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== + +tslib@~2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" + integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== + +tsutils@^3.17.1, tsutils@^3.21.0: + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== + dependencies: + tslib "^1.8.1" + +tty-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" + integrity sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw== + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== + dependencies: + safe-buffer "^5.0.1" + +turbo-darwin-64@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/turbo-darwin-64/-/turbo-darwin-64-1.7.2.tgz#ee79dad3009122e5754433df348f51f93f461ae1" + integrity sha512-Sml3WR8MSu80W+gS8SnoKNImcDOlIX7zlvezzds65mW11yGniIFfZ18aKWGOm92Nj2SvXCQ2+UmyGghbFaHNmQ== + +turbo-darwin-arm64@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/turbo-darwin-arm64/-/turbo-darwin-arm64-1.7.2.tgz#a5999de8a5d8d91a27a0dd9f71cc83ec2298e4d8" + integrity sha512-JnlgGLScboUJGJxvmSsF+5xkImEDTMPg2FHzX4n8AMB9az9ZlPQAMtc+xu4p6Xp9eaykKiV2RG81YS3H0fxDLA== + +turbo-linux-64@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/turbo-linux-64/-/turbo-linux-64-1.7.2.tgz#fefdb94d248ff88aafa5276dcf2350e792cb2b29" + integrity sha512-vbLJw6ovG+lpiPqxniscBjljKJ2jbsHuKp8uK4j/wqgp68wAVKeAZW77GGDAUgDb88XH6Kvhh2hcizL+iWduww== + +turbo-linux-arm64@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/turbo-linux-arm64/-/turbo-linux-arm64-1.7.2.tgz#70e2770a5915c3db5a7c324c7b6cf4efc9b8f867" + integrity sha512-zLnuS8WdHonKL74KqOopOH/leBOWumlVGF8/8hldbDPq0mwY+6myRR5/5LdveB51rkG4UJh/sQ94xV67tjBoyw== + +turbo-windows-64@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/turbo-windows-64/-/turbo-windows-64-1.7.2.tgz#21e0008a28bff275de1e3ba281ec399ccc863a97" + integrity sha512-oE5PMoXjmR09okvVzteFb6FjA6yo+nMsacsgKH2yLNq4sOrVo9tG98JkRurOv5+L6ZQ3yGXPxWHiqeH7hLkAVQ== + +turbo-windows-arm64@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/turbo-windows-arm64/-/turbo-windows-arm64-1.7.2.tgz#873afbd6e1170d9f8d4c758ab3fbc9f7a0cd9dd7" + integrity sha512-mdTUJk23acRv5qxA/yEstYhM1VFenVE3FDrssxGRFq7S80smtCGK1xUd4BEDDzDlVXOqBohmM5jRh9516rcjPQ== + +turbo@latest: + version "1.7.2" + resolved "https://registry.yarnpkg.com/turbo/-/turbo-1.7.2.tgz#ed7394631fac523fd0654f9c81306d40ef61014a" + integrity sha512-YR/x3GZEx0C1RV6Yvuw/HB1Ixx3upM6ZTTa4WqKz9WtLWN8u2g+u2h5KpG5YtjCS3wl/8zVXgHf2WiMK6KIghg== + optionalDependencies: + turbo-darwin-64 "1.7.2" + turbo-darwin-arm64 "1.7.2" + turbo-linux-64 "1.7.2" + turbo-linux-arm64 "1.7.2" + turbo-windows-64 "1.7.2" + turbo-windows-arm64 "1.7.2" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + integrity sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA== + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + integrity sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== + dependencies: + prelude-ls "~1.1.2" + +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + +type-fest@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" + integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== + +type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + +type@^1.0.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0" + integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== + +type@^2.7.2: + version "2.7.2" + resolved "https://registry.yarnpkg.com/type/-/type-2.7.2.tgz#2376a15a3a28b1efa0f5350dcf72d24df6ef98d0" + integrity sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw== + +typed-array-length@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" + integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== + dependencies: + call-bind "^1.0.2" + for-each "^0.3.3" + is-typed-array "^1.1.9" + +typed-styles@^0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/typed-styles/-/typed-styles-0.0.7.tgz#93392a008794c4595119ff62dde6809dbc40a3d9" + integrity sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q== + +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== + +typescript@^4.8.3: + version "4.9.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" + integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + 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" + +unicode-canonical-property-names-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" + integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== + +unicode-match-property-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" + integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== + dependencies: + unicode-canonical-property-names-ecmascript "^2.0.0" + unicode-property-aliases-ecmascript "^2.0.0" + +unicode-match-property-value-ecmascript@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" + integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== + +unicode-property-aliases-ecmascript@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" + integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== + +union-value@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" + integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== + dependencies: + arr-union "^3.1.0" + get-value "^2.0.6" + is-extendable "^0.1.1" + set-value "^2.0.1" + +uniq@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" + integrity sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA== + +uniqs@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" + integrity sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ== + +unique-filename@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" + integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== + dependencies: + unique-slug "^2.0.0" + +unique-slug@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" + integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== + dependencies: + imurmurhash "^0.1.4" + +universalify@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + +unload@2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/unload/-/unload-2.2.0.tgz#ccc88fdcad345faa06a92039ec0f80b488880ef7" + integrity sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA== + dependencies: + "@babel/runtime" "^7.6.2" + detect-node "^2.0.4" + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== + +unquote@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" + integrity sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg== + +unset-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" + integrity sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ== + dependencies: + has-value "^0.3.1" + isobject "^3.0.0" + +upath@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" + integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== + +update-browserslist-db@^1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" + integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +urix@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" + integrity sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg== + +url-loader@2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-2.3.0.tgz#e0e2ef658f003efb8ca41b0f3ffbf76bab88658b" + integrity sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog== + dependencies: + loader-utils "^1.2.3" + mime "^2.4.4" + schema-utils "^2.5.0" + +url-parse@^1.4.3: + version "1.5.10" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" + integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== + dependencies: + querystringify "^2.1.1" + requires-port "^1.0.0" + +url@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + integrity sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ== + dependencies: + punycode "1.3.2" + querystring "0.2.0" + +use@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" + integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== + +util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +util.promisify@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" + integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== + dependencies: + define-properties "^1.1.2" + object.getownpropertydescriptors "^2.0.3" + +util.promisify@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.1.1.tgz#77832f57ced2c9478174149cae9b96e9918cd54b" + integrity sha512-/s3UsZUrIfa6xDhr7zZhnE9SLQ5RIXyYfiVnMMyMDzOc8WhWN4Nbh36H842OyurKbCDAesZOJaVyvmSl6fhGQw== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + for-each "^0.3.3" + has-symbols "^1.0.1" + object.getownpropertydescriptors "^2.1.1" + +util.promisify@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee" + 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" + +util@0.10.3: + version "0.10.3" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + integrity sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ== + dependencies: + inherits "2.0.1" + +util@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" + integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== + dependencies: + inherits "2.0.3" + +utila@~0.4: + version "0.4.0" + resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" + integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA== + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== + +uuid@^3.3.2, uuid@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" + integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== + +v8-compile-cache@^2.0.3: + version "2.3.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +value-equal@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c" + integrity sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw== + +vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== + +vendors@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.4.tgz#e2b800a53e7a29b93506c3cf41100d16c4c4ad8e" + integrity sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w== + +verror@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + integrity sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw== + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + +vm-browserify@^1.0.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" + integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== + +w3c-hr-time@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" + integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== + dependencies: + browser-process-hrtime "^1.0.0" + +w3c-xmlserializer@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz#30485ca7d70a6fd052420a3d12fd90e6339ce794" + integrity sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg== + dependencies: + domexception "^1.0.1" + webidl-conversions "^4.0.2" + xml-name-validator "^3.0.0" + +wait-for-expect@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/wait-for-expect/-/wait-for-expect-3.0.2.tgz#d2f14b2f7b778c9b82144109c8fa89ceaadaa463" + integrity sha512-cfS1+DZxuav1aBYbaO/kE06EOS8yRw7qOFoD3XtjTkYvCvh3zUvNST8DXK/nPaeqIzIv3P3kL3lRJn8iwOiSag== + +walker@^1.0.7, walker@~1.0.5: + version "1.0.8" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" + integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== + dependencies: + makeerror "1.0.12" + +warning@^4.0.2, warning@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" + integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== + dependencies: + loose-envify "^1.0.0" + +watchpack-chokidar2@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz#38500072ee6ece66f3769936950ea1771be1c957" + integrity sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww== + dependencies: + chokidar "^2.1.8" + +watchpack@^1.6.0: + version "1.7.5" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.7.5.tgz#1267e6c55e0b9b5be44c2023aed5437a2c26c453" + integrity sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ== + dependencies: + graceful-fs "^4.1.2" + neo-async "^2.5.0" + optionalDependencies: + chokidar "^3.4.1" + watchpack-chokidar2 "^2.0.1" + +wbuf@^1.1.0, wbuf@^1.7.3: + version "1.7.3" + resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" + integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== + dependencies: + minimalistic-assert "^1.0.0" + +web-vitals@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/web-vitals/-/web-vitals-2.1.4.tgz#76563175a475a5e835264d373704f9dde718290c" + integrity sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg== + +webidl-conversions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" + integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== + +webpack-dev-middleware@^3.7.2: + version "3.7.3" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz#0639372b143262e2b84ab95d3b91a7597061c2c5" + integrity sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ== + dependencies: + memory-fs "^0.4.1" + mime "^2.4.4" + mkdirp "^0.5.1" + range-parser "^1.2.1" + webpack-log "^2.0.0" + +webpack-dev-server@3.11.0: + version "3.11.0" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.11.0.tgz#8f154a3bce1bcfd1cc618ef4e703278855e7ff8c" + integrity sha512-PUxZ+oSTxogFQgkTtFndEtJIPNmml7ExwufBZ9L2/Xyyd5PnOL5UreWe5ZT7IU25DSdykL9p1MLQzmLh2ljSeg== + dependencies: + ansi-html "0.0.7" + bonjour "^3.5.0" + chokidar "^2.1.8" + compression "^1.7.4" + connect-history-api-fallback "^1.6.0" + debug "^4.1.1" + del "^4.1.1" + express "^4.17.1" + html-entities "^1.3.1" + http-proxy-middleware "0.19.1" + import-local "^2.0.0" + internal-ip "^4.3.0" + ip "^1.1.5" + is-absolute-url "^3.0.3" + killable "^1.0.1" + loglevel "^1.6.8" + opn "^5.5.0" + p-retry "^3.0.1" + portfinder "^1.0.26" + schema-utils "^1.0.0" + selfsigned "^1.10.7" + semver "^6.3.0" + serve-index "^1.9.1" + sockjs "0.3.20" + sockjs-client "1.4.0" + spdy "^4.0.2" + strip-ansi "^3.0.1" + supports-color "^6.1.0" + url "^0.11.0" + webpack-dev-middleware "^3.7.2" + webpack-log "^2.0.0" + ws "^6.2.1" + yargs "^13.3.2" + +webpack-log@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f" + integrity sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg== + dependencies: + ansi-colors "^3.0.0" + uuid "^3.3.2" + +webpack-manifest-plugin@2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz#19ca69b435b0baec7e29fbe90fb4015de2de4f16" + integrity sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ== + dependencies: + fs-extra "^7.0.0" + lodash ">=3.5 <5" + object.entries "^1.1.0" + tapable "^1.0.0" + +webpack-merge@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.2.2.tgz#a27c52ea783d1398afd2087f547d7b9d2f43634d" + integrity sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g== + dependencies: + lodash "^4.17.15" + +webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" + integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== + dependencies: + source-list-map "^2.0.0" + source-map "~0.6.1" + +webpack@4.42.0: + version "4.42.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.42.0.tgz#b901635dd6179391d90740a63c93f76f39883eb8" + integrity sha512-EzJRHvwQyBiYrYqhyjW9AqM90dE4+s1/XtCfn7uWg6cS72zH+2VPFAlsnW0+W0cDi0XRjNKUMoJtpSi50+Ph6w== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-module-context" "1.8.5" + "@webassemblyjs/wasm-edit" "1.8.5" + "@webassemblyjs/wasm-parser" "1.8.5" + acorn "^6.2.1" + ajv "^6.10.2" + ajv-keywords "^3.4.1" + chrome-trace-event "^1.0.2" + enhanced-resolve "^4.1.0" + eslint-scope "^4.0.3" + json-parse-better-errors "^1.0.2" + loader-runner "^2.4.0" + loader-utils "^1.2.3" + memory-fs "^0.4.1" + micromatch "^3.1.10" + mkdirp "^0.5.1" + neo-async "^2.6.1" + node-libs-browser "^2.2.1" + schema-utils "^1.0.0" + tapable "^1.1.3" + terser-webpack-plugin "^1.4.3" + watchpack "^1.6.0" + webpack-sources "^1.4.1" + +websocket-driver@0.6.5: + version "0.6.5" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.6.5.tgz#5cb2556ceb85f4373c6d8238aa691c8454e13a36" + integrity sha512-oBx6ZM1Gs5q2jwZuSN/Qxyy/fbgomV8+vqsmipaPKB/74hjHlKuM07jNmRhn4qa2AdUwsgxrltq+gaPsHgcl0Q== + dependencies: + websocket-extensions ">=0.1.1" + +websocket-driver@>=0.5.1: + version "0.7.4" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" + integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== + dependencies: + http-parser-js ">=0.5.1" + safe-buffer ">=5.1.0" + websocket-extensions ">=0.1.1" + +websocket-extensions@>=0.1.1: + version "0.1.4" + resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" + integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== + +whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3, whatwg-encoding@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" + integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== + dependencies: + iconv-lite "0.4.24" + +whatwg-fetch@^3.0.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz#dced24f37f2624ed0281725d51d0e2e3fe677f8c" + integrity sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA== + +whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" + integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== + +whatwg-url@^6.4.1: + version "6.5.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" + integrity sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + +whatwg-url@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" + integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + 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" + +which-collection@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" + 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" + +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q== + +which-typed-array@^1.1.9: + version "1.1.9" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" + integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.0" + is-typed-array "^1.1.10" + +which@1, which@^1.2.9, which@^1.3.0, which@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.0: + version "1.1.5" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" + integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== + dependencies: + string-width "^1.0.2 || 2 || 3 || 4" + +word-wrap@~1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + +workbox-background-sync@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-background-sync/-/workbox-background-sync-4.3.1.tgz#26821b9bf16e9e37fd1d640289edddc08afd1950" + integrity sha512-1uFkvU8JXi7L7fCHVBEEnc3asPpiAL33kO495UMcD5+arew9IbKW2rV5lpzhoWcm/qhGB89YfO4PmB/0hQwPRg== + dependencies: + workbox-core "^4.3.1" + +workbox-broadcast-update@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-broadcast-update/-/workbox-broadcast-update-4.3.1.tgz#e2c0280b149e3a504983b757606ad041f332c35b" + integrity sha512-MTSfgzIljpKLTBPROo4IpKjESD86pPFlZwlvVG32Kb70hW+aob4Jxpblud8EhNb1/L5m43DUM4q7C+W6eQMMbA== + dependencies: + workbox-core "^4.3.1" + +workbox-build@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-build/-/workbox-build-4.3.1.tgz#414f70fb4d6de47f6538608b80ec52412d233e64" + integrity sha512-UHdwrN3FrDvicM3AqJS/J07X0KXj67R8Cg0waq1MKEOqzo89ap6zh6LmaLnRAjpB+bDIz+7OlPye9iii9KBnxw== + dependencies: + "@babel/runtime" "^7.3.4" + "@hapi/joi" "^15.0.0" + common-tags "^1.8.0" + fs-extra "^4.0.2" + glob "^7.1.3" + lodash.template "^4.4.0" + pretty-bytes "^5.1.0" + stringify-object "^3.3.0" + strip-comments "^1.0.2" + workbox-background-sync "^4.3.1" + workbox-broadcast-update "^4.3.1" + workbox-cacheable-response "^4.3.1" + workbox-core "^4.3.1" + workbox-expiration "^4.3.1" + workbox-google-analytics "^4.3.1" + workbox-navigation-preload "^4.3.1" + workbox-precaching "^4.3.1" + workbox-range-requests "^4.3.1" + workbox-routing "^4.3.1" + workbox-strategies "^4.3.1" + workbox-streams "^4.3.1" + workbox-sw "^4.3.1" + workbox-window "^4.3.1" + +workbox-cacheable-response@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-cacheable-response/-/workbox-cacheable-response-4.3.1.tgz#f53e079179c095a3f19e5313b284975c91428c91" + integrity sha512-Rp5qlzm6z8IOvnQNkCdO9qrDgDpoPNguovs0H8C+wswLuPgSzSp9p2afb5maUt9R1uTIwOXrVQMmPfPypv+npw== + dependencies: + workbox-core "^4.3.1" + +workbox-core@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-core/-/workbox-core-4.3.1.tgz#005d2c6a06a171437afd6ca2904a5727ecd73be6" + integrity sha512-I3C9jlLmMKPxAC1t0ExCq+QoAMd0vAAHULEgRZ7kieCdUd919n53WC0AfvokHNwqRhGn+tIIj7vcb5duCjs2Kg== + +workbox-expiration@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-expiration/-/workbox-expiration-4.3.1.tgz#d790433562029e56837f341d7f553c4a78ebe921" + integrity sha512-vsJLhgQsQouv9m0rpbXubT5jw0jMQdjpkum0uT+d9tTwhXcEZks7qLfQ9dGSaufTD2eimxbUOJfWLbNQpIDMPw== + dependencies: + workbox-core "^4.3.1" + +workbox-google-analytics@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-google-analytics/-/workbox-google-analytics-4.3.1.tgz#9eda0183b103890b5c256e6f4ea15a1f1548519a" + integrity sha512-xzCjAoKuOb55CBSwQrbyWBKqp35yg1vw9ohIlU2wTy06ZrYfJ8rKochb1MSGlnoBfXGWss3UPzxR5QL5guIFdg== + dependencies: + workbox-background-sync "^4.3.1" + workbox-core "^4.3.1" + workbox-routing "^4.3.1" + workbox-strategies "^4.3.1" + +workbox-navigation-preload@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-navigation-preload/-/workbox-navigation-preload-4.3.1.tgz#29c8e4db5843803b34cd96dc155f9ebd9afa453d" + integrity sha512-K076n3oFHYp16/C+F8CwrRqD25GitA6Rkd6+qAmLmMv1QHPI2jfDwYqrytOfKfYq42bYtW8Pr21ejZX7GvALOw== + dependencies: + workbox-core "^4.3.1" + +workbox-precaching@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-precaching/-/workbox-precaching-4.3.1.tgz#9fc45ed122d94bbe1f0ea9584ff5940960771cba" + integrity sha512-piSg/2csPoIi/vPpp48t1q5JLYjMkmg5gsXBQkh/QYapCdVwwmKlU9mHdmy52KsDGIjVaqEUMFvEzn2LRaigqQ== + dependencies: + workbox-core "^4.3.1" + +workbox-range-requests@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-range-requests/-/workbox-range-requests-4.3.1.tgz#f8a470188922145cbf0c09a9a2d5e35645244e74" + integrity sha512-S+HhL9+iTFypJZ/yQSl/x2Bf5pWnbXdd3j57xnb0V60FW1LVn9LRZkPtneODklzYuFZv7qK6riZ5BNyc0R0jZA== + dependencies: + workbox-core "^4.3.1" + +workbox-routing@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-routing/-/workbox-routing-4.3.1.tgz#a675841af623e0bb0c67ce4ed8e724ac0bed0cda" + integrity sha512-FkbtrODA4Imsi0p7TW9u9MXuQ5P4pVs1sWHK4dJMMChVROsbEltuE79fBoIk/BCztvOJ7yUpErMKa4z3uQLX+g== + dependencies: + workbox-core "^4.3.1" + +workbox-strategies@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-strategies/-/workbox-strategies-4.3.1.tgz#d2be03c4ef214c115e1ab29c9c759c9fe3e9e646" + integrity sha512-F/+E57BmVG8dX6dCCopBlkDvvhg/zj6VDs0PigYwSN23L8hseSRwljrceU2WzTvk/+BSYICsWmRq5qHS2UYzhw== + dependencies: + workbox-core "^4.3.1" + +workbox-streams@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-streams/-/workbox-streams-4.3.1.tgz#0b57da70e982572de09c8742dd0cb40a6b7c2cc3" + integrity sha512-4Kisis1f/y0ihf4l3u/+ndMkJkIT4/6UOacU3A4BwZSAC9pQ9vSvJpIi/WFGQRH/uPXvuVjF5c2RfIPQFSS2uA== + dependencies: + workbox-core "^4.3.1" + +workbox-sw@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-sw/-/workbox-sw-4.3.1.tgz#df69e395c479ef4d14499372bcd84c0f5e246164" + integrity sha512-0jXdusCL2uC5gM3yYFT6QMBzKfBr2XTk0g5TPAV4y8IZDyVNDyj1a8uSXy3/XrvkVTmQvLN4O5k3JawGReXr9w== + +workbox-webpack-plugin@4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-webpack-plugin/-/workbox-webpack-plugin-4.3.1.tgz#47ff5ea1cc074b6c40fb5a86108863a24120d4bd" + integrity sha512-gJ9jd8Mb8wHLbRz9ZvGN57IAmknOipD3W4XNE/Lk/4lqs5Htw4WOQgakQy/o/4CoXQlMCYldaqUg+EJ35l9MEQ== + dependencies: + "@babel/runtime" "^7.0.0" + json-stable-stringify "^1.0.1" + workbox-build "^4.3.1" + +workbox-window@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-window/-/workbox-window-4.3.1.tgz#ee6051bf10f06afa5483c9b8dfa0531994ede0f3" + integrity sha512-C5gWKh6I58w3GeSc0wp2Ne+rqVw8qwcmZnQGpjiek8A2wpbxSJb1FdCoQVO+jDJs35bFgo/WETgl1fqgsxN0Hg== + dependencies: + workbox-core "^4.3.1" + +worker-farm@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8" + integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw== + dependencies: + errno "~0.1.7" + +worker-rpc@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/worker-rpc/-/worker-rpc-0.1.1.tgz#cb565bd6d7071a8f16660686051e969ad32f54d5" + integrity sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg== + dependencies: + microevent.ts "~0.1.1" + +wrap-ansi@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" + integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== + dependencies: + ansi-styles "^3.2.0" + string-width "^3.0.0" + strip-ansi "^5.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +write-file-atomic@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.1.tgz#d0b05463c188ae804396fd5ab2a370062af87529" + integrity sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg== + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + signal-exit "^3.0.2" + +write@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" + integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== + dependencies: + mkdirp "^0.5.1" + +ws@^5.2.0: + version "5.2.3" + resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.3.tgz#05541053414921bc29c63bee14b8b0dd50b07b3d" + integrity sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA== + dependencies: + async-limiter "~1.0.0" + +ws@^6.1.2, ws@^6.2.1: + version "6.2.2" + resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.2.tgz#dd5cdbd57a9979916097652d78f1cc5faea0c32e" + integrity sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw== + dependencies: + async-limiter "~1.0.0" + +xml-name-validator@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" + integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== + +xmlchars@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" + integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== + +xregexp@^4.3.0: + version "4.4.1" + resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-4.4.1.tgz#c84a88fa79e9ab18ca543959712094492185fe65" + integrity sha512-2u9HwfadaJaY9zHtRRnH6BY6CQVNQKkYm3oLtC9gJXXzfsbACg5X5e4EZZGVAH+YIfa+QA9lsFQTTe3HURF3ag== + dependencies: + "@babel/runtime-corejs3" "^7.12.1" + +xtend@^4.0.0, xtend@~4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + +y18n@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" + integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== + +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + integrity sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A== + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml@^1.7.2: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + +yargs-parser@^13.1.2: + version "13.1.2" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" + integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs@^13.3.0, yargs@^13.3.2: + version "13.3.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" + integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== + dependencies: + cliui "^5.0.0" + find-up "^3.0.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^3.0.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^13.1.2" + +yup@^0.28.1: + version "0.28.5" + resolved "https://registry.yarnpkg.com/yup/-/yup-0.28.5.tgz#85cabb4000d3623ef69be81551190692e631a8a5" + integrity sha512-7JZcvpUGUxMKoaEtcoMEM8lCWRaueGNH/A3EhL/UWqfbFm3uloiI+x59Yq4nzhbbYWUTwAsCteaZOJ+VbqI1uw== + dependencies: + "@babel/runtime" "^7.9.6" + fn-name "~3.0.0" + lodash "^4.17.15" + lodash-es "^4.17.11" + property-expr "^2.0.2" + synchronous-promise "^2.0.10" + toposort "^2.0.2" + +zoom-level@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/zoom-level/-/zoom-level-2.5.0.tgz#286ec16f247b8bb7a900df6612567688eeef498a" + integrity sha512-7UlRWU4Q3uCMCeDVMOm7eBrIu145OqsIJ3p6zq58l8UsSYwKWxc6zEapC5YA9tIeh0oheb4cT9Kk2Wq353loFg==